Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3 Trả lời
3447 Lượt xem

Hello, I want to add a field to a tree view in Odoo 9. In Odoo 8 I can do this searching where want I put the field with <xpath expr="//field[@name='price_subtotal']" position="replace"> but in Odoo 9 this not works. I can install my custom module OK but then fields is not displayed.

Thanks!    


Ảnh đại diện
Huỷ bỏ

"not work" - can you provide more information. The XPATH syntax you posted should work just fine with version 9, as long as the anchor field (price_subtotal) exists in the view you are inheriting.

Câu trả lời hay nhất

just to ensure, have you add in _openerp__.py your xml file and the module sale in the depends clausule?

the sintax you use is correct, but what view are you inheriting?

if you are inheriting a view of model sale.order.line it's correct, but price_subtotal also appears in tree view of model sale_order, in the one2many field order_line, so you have to do something like,

<xpath expr="//field[@name='order_line']/tree/field[@name='price_subtotal']" position="replace">


Kind regards.

Ảnh đại diện
Huỷ bỏ
Tác giả

There is my mistake. I need to inherite the purchase.order.form view, and not the purchase.order.line.form view. Thanks!

Câu trả lời hay nhất

Hello, I have faced this serveral times. Personally, I solved this in 2 ways:

1. Don't type the code, yes, you have to be lazy, but don't type it your self, just copy code from some where you trust and paste in to your inherit view. Then edit things like 'price_subtotal'. This sounds crazy but I once spent the whole morning looked at my code, nothing's wrong, it just did not work and the log showed nothing. When i copy and paste, it worked like a charm.

2. Use new syntax:

<field name="price_subtotal" position="replace">

    <field name="your_field/>

</field>

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
19
thg 5 24
96725
1
thg 8 16
3508
0
thg 8 16
4706
2
thg 5 16
11577
2
thg 5 16
11576