Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
7 Replies
13879 Tampilan

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
Buang

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.

Penulis

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

Jawaban Terbai

Hi Siobhan,

         Can you try this: 

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



Avatar
Buang
Penulis

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

Penulis

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

Penulis Jawaban Terbai

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
Buang
Penulis

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

Jawaban Terbai

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
Buang
Penulis

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

Post Terkait Replies Tampilan Aktivitas
2
Des 19
5032
1
Nov 19
4565
2
Feb 18
4806
1
Jul 15
2852
2
Jun 25
1161