Add sum=1 on several qty fields

This commit is contained in:
Alexis de Lattre
2017-11-30 12:06:02 +01:00
parent 6ff67694ab
commit 238344b964
2 changed files with 24 additions and 0 deletions

View File

@@ -60,6 +60,9 @@ module -->
<field name="state" invisible="not context.get('show_invoice_fields')"/>
<field name="invoice_type" invisible="1"/>
</field>
<field name="quantity" position="attributes">
<attribute name="sum">1</attribute>
</field>
<xpath expr="/tree" position="attributes">
<attribute name="decoration-info">state == 'draft'</attribute>
<attribute name="decoration-muted">state == 'cancel'</attribute>

View File

@@ -90,6 +90,27 @@ https://github.com/odoo/odoo/commit/c1e5ab9b1331c3cb7dc2232bf78952bdb40ad939 -->
</field>
</record>
<record id="view_order_line_tree" model="ir.ui.view">
<field name="name">usability.sale.order.line.tree</field>
<field name="model">sale.order.line</field>
<field name="inherit_id" ref="sale.view_order_line_tree"/>
<field name="arch" type="xml">
<field name="product_uom_qty" position="attributes">
<attribute name="sum">1</attribute>
</field>
<field name="qty_delivered" position="attributes">
<attribute name="sum">1</attribute>
</field>
<field name="qty_invoiced" position="attributes">
<attribute name="sum">1</attribute>
</field>
<field name="qty_to_invoice" position="attributes">
<attribute name="sum">1</attribute>
</field>
</field>
</record>
<record id="procurement_form_view" model="ir.ui.view">
<field name="name">procurement_usability.procurement.order.form</field>
<field name="model">procurement.order</field>