diff --git a/addons/point_of_sale/views/pos_order_view.xml b/addons/point_of_sale/views/pos_order_view.xml index 1271be079a4aebf45221da2e8ae7dc2bb17cef63..3b3a43901d0a6a2eb46e21c826a5bc08ce903b93 100644 --- a/addons/point_of_sale/views/pos_order_view.xml +++ b/addons/point_of_sale/views/pos_order_view.xml @@ -38,7 +38,7 @@ <field name="product_id"/> <field name="qty"/> <field name="price_unit" widget="monetary"/> - <field name="discount" widget="monetary"/> + <field name="discount"/> <field name="tax_ids_after_fiscal_position" widget="many2many_tags" string="Taxes"/> <field name="tax_ids" widget="many2many_tags" invisible="1"/> <field name="price_subtotal" widget="monetary" force_save="1"/> @@ -48,7 +48,7 @@ <group col="4"> <field name="product_id"/> <field name="qty"/> - <field name="discount" widget="monetary"/> + <field name="discount"/> <field name="price_unit" widget="monetary"/> <field name="price_subtotal" invisible="1" widget="monetary" force_save="1"/> <field name="price_subtotal_incl" invisible="1" widget="monetary" force_save="1"/> @@ -216,7 +216,7 @@ <tree string="POS Order lines"> <field name="product_id" readonly="1"/> <field name="qty" readonly="1" sum="Total qty"/> - <field name="discount" readonly="1" widget="monetary"/> + <field name="discount" readonly="1"/> <field name="price_unit" readonly="1" widget="monetary"/> <field name="price_subtotal" readonly="1" sum="Sum of subtotals" widget="monetary"/> <field name="price_subtotal_incl" readonly="1" sum="Sum of subtotals" widget="monetary"/> @@ -233,7 +233,7 @@ <group col="4"> <field name="product_id" /> <field name="qty" /> - <field name="discount" widget="monetary"/> + <field name="discount"/> <field name="price_unit" widget="monetary"/> <field name="create_date" /> </group>