コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
17519 ビュー

I want to make an OpenERP-module which install my configuration. I'am able to add records to the database tables using XML-files in the datasection of __openererp___. However I want to change the "Your Company" record in the res_company table instead of add an new one to it. How can this be accomplisched using a XML-file ?

Hendrik

アバター
破棄
最善の回答

To update the record of company using the demo data you need to write a record in xml file like,

<record id="base.main_company" model="res.company">
    <field name="name">Your New Company</field>
    <field name="partner_id" ref="main_partner"/>
    <field name="rml_header1">Your New Company Tagline</field>
    <field name="currency_id" ref="base.EUR"/>
</record>

it will change the default company information while installing your customer module.

アバター
破棄

It seems that this technique does not work anymore in version 8.0. It seems that when you have a noupdate=1 in the module creating the data originally, it means "no update AND NO OVERRIDE".

@Trobz, Jean-Charles Drubay Did you find a way in v8 ? My question here: https://www.odoo.com/fr_FR/forum/help-1/question/how-to-override-your-company-data-through-a-custom-module-in-v8-87510

著作者 最善の回答

Thanks for your answer. Now the record in the table res_company get updated nicely.

Only the line <field name="partner_id" ref="main_partner"/> seems redundant. In my case it generates an error since the id "main_partner" was not defined in the XML-file. However the corresponding record in the res_partner table got updated without that line as well. So is there a real need for it ?

Hendrik

アバター
破棄

Well, he forgot: base.main_partner About if it's neccesary or not it depends on you, because your res.partner it's going to stay with Your Company if I'm not wrong. But you can try it

著作者

I have done some testing. It went oke because I started with a fresh database with only one company record and one partner record. So the field partner_id in the company record already had the correct value since there was only one record to choose from anyway :-) So it will be definitely better to explicitly set it in the xml-file.

関連投稿 返信 ビュー 活動
0
3月 15
3728
1
6月 23
3526
2
11月 18
10404
2
10月 17
11658
1
3月 15
13610