Se rendre au contenu
Menu
Cette question a été signalée
2 Réponses
4929 Vues

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!"

Avatar
Ignorer
Auteur Meilleure réponse

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.

Avatar
Ignorer
Meilleure réponse

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.

Avatar
Ignorer
Auteur

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.

Auteur

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.

Auteur

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

Meant, Close as solved by choosing an answer!

Publications associées Réponses Vues Activité
1
nov. 24
1675
5
juil. 24
92981
1
déc. 23
3072
1
mai 22
3697
0
janv. 20
2915