Add total qty in transfer form view
This commit is contained in:
@@ -109,5 +109,20 @@
|
|||||||
<menuitem id="stock_location_path_menu" action="stock_location_path_action"
|
<menuitem id="stock_location_path_menu" action="stock_location_path_action"
|
||||||
sequence="10" parent="stock.menu_stock_configuration"/>
|
sequence="10" parent="stock.menu_stock_configuration"/>
|
||||||
|
|
||||||
|
<!-- Display total qty in Transfer wizard
|
||||||
|
Usefull because some delivery order from suppliers contains the "total number of items"
|
||||||
|
So the Odoo user can easily check that he doesn't make mistakes
|
||||||
|
in the quantities for his reception -->
|
||||||
|
<record id="view_stock_enter_transfer_details" model="ir.ui.view">
|
||||||
|
<field name="name">stock.usability.transfer_details.form</field>
|
||||||
|
<field name="model">stock.transfer_details</field>
|
||||||
|
<field name="inherit_id" ref="stock.view_stock_enter_transfer_details"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="quantity" position="attributes">
|
||||||
|
<attribute name="sum">Total</attribute>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
|
||||||
</data>
|
</data>
|
||||||
</openerp>
|
</openerp>
|
||||||
|
|||||||
Reference in New Issue
Block a user