For the skype field first we have to go in .py file (python file)
After that we have to decide where you want to give skype field and then give attribute of skype to that field.
Like below python code in .py file :
from openerp.osv import osv,fields
import openerp
class res_partner(osv.Model):
_inherit = 'res.partner'
_inherit = 'res.partner'
'skype':fields.char('Skype', size=128, select=True)
}
0 Comment(s)