OpenERP - 字段未显示在树视图中
OpenERP - field not showing in a tree view
这是我的 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>
product_uom
字段具有 groups="product.group_uom"
属性。
这使其仅对该组中的用户可见。
从树定义中删除它,或者确保您的用户在该组中。
可能您需要的只是激活 Settings / Configuration / Sales
、Product Features
部分的 "Allow using different units of measures"
功能。这会在幕后为所有用户激活 group_uom
。
这是我的 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>
product_uom
字段具有 groups="product.group_uom"
属性。
这使其仅对该组中的用户可见。 从树定义中删除它,或者确保您的用户在该组中。
可能您需要的只是激活 Settings / Configuration / Sales
、Product Features
部分的 "Allow using different units of measures"
功能。这会在幕后为所有用户激活 group_uom
。