Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
9090 มุมมอง

I'm importing Customers via XML-RPC from an external database, which has realationship with the companies inside openerp. I'm wishing to put those companies parent_id, so i set the parent_id to: [ 'id_of_the_parent_company', 'name_of_the_parent_company'] and the XML-RCP accepts this. Yet i dont see any result inside OpenERP.

What am I doing wrong, or miss to do?

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

try to use the following syntax to set the company for a customer:

{'parent_id': <id-of-customer/company>}

The ID must be a database ID of an entry of the model res.partner. If there exists an entry of res.partner with DB-ID 5 you can write:

{'parent_id': 5}

(I assume that you are using the write-method of XMLRPC)

There is also another field in the customer object: company_id, if you want to set the related company for the customer. Be aware of the difference between a customer/company and the OpenERP company (your company).

Here is an example of how to use XMLRPC with python: https://accounts.openerp.com/forum/Help-1/question/711/

อวตาร
ละทิ้ง
ผู้เขียน

thanks for the answer, but ether {'parent_id': <id-of-customer/company>} this doesn't work or I'm doing it wrongly. Also it throwsa strange error when i try to use the company_id : xmlrpclib.Fault: <Fault warning -- Integrity Error . and all i did was give the company_id the id of the company.

I have updated my answer. If this does not work you should check your XMLRPC call.

ผู้เขียน

{'parent_id': 5} is the correct one thank you. And a college of mine noticed an error in my code, which resulted that the parent id was never updated. ( used the wrong variable.) THank you nonteless

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ก.พ. 24
1654
2
เม.ย. 22
179
How can I delete or archive a company? แก้ไขแล้ว
4
พ.ย. 20
31517
2
ก.พ. 20
4337
Error entering companies แก้ไขแล้ว
1
ส.ค. 19
2833