Skip to Content
Menu
This question has been flagged
7 Replies
12647 Views

I am trying to add 2 new fields to module Product with this xml code:


<record id="product_product_template_only_form_view" model="ir.ui.view">

<field name="model">product.product</field>

<field name="inherit_id" ref="product.product_template_only_form_view" />

<field name="arch" type="xml">

<field name="list_price" position="after">

<field name="boatlength" />

<field name="fuelcapacity" />

</field>

</field>

</record>


I have no error message but the fields are not showing where they should be. I checked that the view was correct and it seems to be:


Manage Views (product.template)

Sequence

View Name

View Type

Object

External ID

Inherited View

5 product.template.form.inherit Form product.template account.product_template_form_view product.template.common.form

8 product.template.product.form Form product.template product.product_template_only_form_view product.template.common.form

16 product.form.mrp.inherited Form product.template mrp.view_mrp_product_template_form_inherited


list_price is there :


Product Type

Consumable

Sale Price (name= list_price)

65000.00


What am I doing wrong??

Avatar
Discard

be aware of priorities of views, maybe there were another view with higher priority (or explicitly stated one) loaded into the UI? you can check that using developer mode.

Hi,Try to inherit using this id product.product_normal_form_view.

Author

Saravanan, tried that but got this error: '' cannot be located in parent view.

Best Answer

Hi Siobhan,

         Can you try this: 

              <field name="model">product.template</field> and take respective View. 



Avatar
Discard
Author

Yes, tried this and this doesn't work either.. maybe I need to see if it is an inherited form like res.partner. Will keep trying but thank you for your help

Author

Jusab, thank you.. add a class that inherited from product.template and then changed the view form and this works... thank you for your help

Author Best Answer

Thanks Temur. 

I am new to Odoo and I made the following steps as I have done before to find the view form.

In developer mode, I open a product record, choose "manage views" from the debug dropdown and product.product_template_only_form_view  is the external ID of the one that is selected (I assume that if the radio button is selected then it is the correct view I should be taken). The rest listed seem to be inherited from other modules, tree or kanban views. Not sure what I need to be looking at here to check higher priority.

When I check fields list_price(settings>>data structures) it is under this view: product.product_template_form_view. When I change my xml file to match this, again it is the same. No error, no fields. My two new fields are listed under module product.product. 

The other form I can see is product.product_normal_form_view that has list_price on it. Tried this and got following error:

'<field name="list_price">' cannot be located in parent view

Changed the field to lst_price as this was an alternative name (public price not sale price) and my fields now show up on Product Variant view but not product view. 

Really not sure what I need to here to make this work.

Avatar
Discard
Author

Ok.. this is definitely where I want to put the new fields: This is in form: product.product_template_form_view but when I write the code again with this form it is still not showing

Best Answer

If you add field in developers mode, appears ?


If yes, then check in what view it shows this field and add correct view name in xml


Avatar
Discard
Author

Hello Rob Yeah did that and it said the view was "product.product_template_only_form_view"... but didn't work.

Related Posts Replies Views Activity
2
Dec 19
4222
1
Nov 19
3570
2
Feb 18
4686
1
Jul 15
2327
3
Sep 24
9997