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

I have created a little module to tweak the display of sales order lines shown in the quote/order form view.  The original view has both "Product" and "Description" at the beginning of each line.  The "Description" column is actually displaying the "name" field.  Since these two fields end up displaying the same data, I want to hide or remove the name field.  In my view code, I have tried:

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

and

<field name="name" position="replace">
    <field name="name" invisible="1"/>
</field>

Neither works, even though I have set the view priority all the way down to 1.  I have also tried simply changing the label on the name field, like this:

<field name="name" position="attributes">
    <attribute name="string" >Part Num.</attribute>
</field>

This also has no effect on the display.  If my view has the lowest priority (sequence) number, then why do my changes have no effect?

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

Which view are you inheriting? The Sale Order form view is where you would need to make that change as the tree view is defined inline there instead of it's own view.

Tác giả

Hi Ray, Took me a while to find that, but I did! I should have mentioned that I was inheriting from "sale.view_order_form". Why is this one different, with the tree view being defined inline?

Tác giả Câu trả lời hay nhất

*sigh*

Tripped up by xpath again.  There was another instance of field "name" further up in the code.  It was hard to spot, since it doesn't display in the form at all, oddly enough.  In fact, it doesn't look like any of the stuff in "sale_view.xml" between the header and the tree tags gets displayed at all.  Not sure why, but I'd like to know!  Anyhow, this xpath expression got Odoo to override the correct field:

<xpath expr="//tree[@string='Sales Order Lines']/field[@name='name']" position="replace"/>

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 9 16
4591
2
thg 5 15
6603
1
thg 11 24
1789
5
thg 7 24
93317
1
thg 12 23
3162