Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
2 Odgovori
5212 Prikazi

i want to create a user using my custom module, for i am inheriting res.users and res.partners in my custom module but nothing happens it gives me error

Here is the code


class tact_customer(osv.osv):

_name = 'tact.customer'

_inherit =['res.partner','res.users']

_columns = {

'longitude': fields.char('Longitude',size=40,required=True, help='longitude'),

'latitude': fields.char('Latitude',size=40,required=True, help='latitude'),

}

customer()

Avatar
Opusti

Sorry but your class name is tact_customer so what is the customer() in the end?

Best Answer

hello

you have to use many2one field like,

'user' : fields.many2one('res.partner','User'),

 and also make xml file for that field

Avatar
Opusti
Related Posts Odgovori Prikazi Aktivnost
2
mar. 15
6280
2
jul. 25
828
2
feb. 23
6313
0
mar. 21
2610
2
jun. 20
10111