跳至內容
選單
此問題已被標幟
2 回覆
5853 瀏覽次數

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
45161
6
7月 23
25797
3
8月 24
20463
3
9月 15
11387