这是我的XML文件。由于某种原因,字段“product_uom”未显示在视图的树视图中。任何见解为什么会发生以及如何让它显示出来?
<tree string="Components" editable="bottom">
<field name="sequence" widget="handle"/>
<field name="product_id" on_change="onchange_product_id(product_id,
product_qty)"/>
<field name="type"/>
<field name="product_qty"/>
<field name="product_uom" on_change="onchange_uom(product_id,
product_uom)" groups="product.group_uom"/>
<field name="product_rounding"/>
<field name="product_efficiency"/>
<field name="date_start"/>
<field name="date_stop"/>
<field name="attribute_value_ids" widget="many2many_tags" domain="
[('product_ids.product_tmpl_id', '=', parent.product_tmpl_id)]"/>
</tree>
答案 0 :(得分:3)
product_uom
字段具有groups="product.group_uom"
属性。
这使其仅对该组中的用户可见。 从树定义中删除它,或确保您的用户在该组中。
您所需要的只是激活"Allow using different units of measures"
,Settings / Configuration / Sales
部分的Product Features
功能。在幕后,这会为所有用户激活group_uom
。