Add purchase qty option

This commit is contained in:
resteve 2014-01-13 11:16:19 +01:00
parent cfae559100
commit 785efc7258
2 changed files with 3 additions and 0 deletions

View file

@ -12,4 +12,5 @@ class Company:
__name__ = 'company.company'
invoice_qty = fields.Boolean('Invoice Qty', help='Show qty without decimals')
sale_qty = fields.Boolean('Sale Qty', help='Show qty without decimals')
purchase_qty = fields.Boolean('Purchase Qty', help='Show qty without decimals')
shipment_qty = fields.Boolean('Shipment Qty', help='Show qty without decimals')

View file

@ -10,6 +10,8 @@ The COPYRIGHT file at the top level of this repository contains the full copyrig
<field name="invoice_qty"/>
<label name="sale_qty"/>
<field name="sale_qty"/>
<label name="purchase_qty"/>
<field name="purchase_qty"/>
<label name="shipment_qty"/>
<field name="shipment_qty"/>
</group>