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

I am following the instructions at Inheritance in Views but am having trouble.

In my custom module I have created a xml file which its content can be seen here.

I am trying to make invisible the tax_id column in the line item at the sale order form.

The custom xml file is producing no changes on the targed form view whatsoever. I have taken the following precautions:

  • Restarted the server
  • Updated my custom module at Settings -> Installed Modules
  • Tested the xpath path parameter. It does point to the targeted field
  • Hacked into the core xml file at ../openerp/server/addons/sale/sale_view.xml beforehand to make sure I was trying to alter the right form view.

I keep getting the error "ValidateError: Error occurred while validating the field(s) arch: Invalid XML for View Architecture!"

アバター
破棄
著作者 最善の回答

The solution could not be more trivial. Apparently you must declare dependency of those modules, or the module, which originally created the xml view you are trying to alter.

In my particular case, I just added dependency of sale, stock and procurement into my module manifest ( __openerp__.py ) and BANG! It worked beautilly. A lesson learned in the hard way though.

アバター
破棄
最善の回答

Francisco,

The line <field name="tax_id" position="replace"/> will not work because the order does not have tax_id field.

If it has, try to reach to the field by xpath.

In order to know the xact error, please check your server long and see what it contains.

Thanks.

アバター
破棄
著作者

The error message issue has being resolved but I am stuck still. The sale order object indeed does not have the tax_id but the form view does. Check out the file at ../openerp/server/addons/sale/sale_view.xml To further test what you said about why it should not work, I changed my targeted field to client_order_ref, which is a field that belongs to the sale order object. See my xml file content at https://gist.github.com/drupalista-br/4bf8facff175c1800908 The custom xml file is producing no changes on the targed form view whatsoever. I have taken the following precautions: * Restarted the server * Updated my custom module at Settings -> Installed Modules * Tested the xpath path parameter. It does point to the targeted field.

The view has the field tax_id, but it belongs to sale order line. You may take a route to that field using complete xpath(form/notebook/page/field/form/group) and I am sure it will work.

著作者

My issue did not lie on the xml syntax but for not declaring a dependency to the sale and stock modules in the manifest file.

Alright, mentioning the dependency is first. Close the question if its resolved. Thanks.

著作者

Why would I close the question? It might help someone else.

Meant, Close as solved by choosing an answer!

関連投稿 返信 ビュー 活動
1
11月 24
1673
5
7月 24
92976
1
12月 23
3071
1
5月 22
3695
0
1月 20
2914