跳至内容
菜单
此问题已终结
2 回复
5816 查看

Hello ! I want to create a python script to create a lot of new users. I want to insert in the database : name, login, password and email. I'm ok with the name, password and login : it's in res.user table, but I don't find in my database where email are save...Can anybody help me?

Thanks, John

形象
丢弃
最佳答案

Every user in res.user has a related partner (partner_id). OpenERP uses the email field of table res_partner for the user's email.

If you use Python with XMLRPC you can directly set the email of the users with the field user_email in res.user. This is a related field to the email of the partner.

形象
丢弃
编写者 最佳答案

Sorry but in res.user there is not field usr_email.. (I'm talking about V7.0)

In PGAdmin you can see those fields for Res.user :

id serial NOT NULL, active boolean DEFAULT true, login character varying(64) NOT NULL, password character varying(64) DEFAULT NULL::character varying, company_id integer NOT NULL, partner_id integer NOT NULL, create_uid integer, create_date timestamp without time zone, write_date timestamp without time zone, write_uid integer, menu_id integer, -- Menu Action login_date date, -- Latest connection signature text, -- Signature action_id integer, -- Home Action alias_id integer NOT NULL, -- Alias share boolean, -- Share User

形象
丢弃

Field "user_email" is a related field, which only exists in Python! The real email is stored in table res_partner!

Ok with email, not user_email. Don't forget to put a name too. Thanks for your help :)

相关帖文 回复 查看 活动
4
7月 24
33918
7
4月 24
45074
6
7月 23
25737
3
8月 24
20405
3
9月 15
11343