diff --git a/addons/point_of_sale/views/pos_order_view.xml b/addons/point_of_sale/views/pos_order_view.xml index 01b4cfc6e29ac49b6dfb4237c32c01426be02cd9..8439b8c28905c4b5032924a40f8d83708e810393 100644 --- a/addons/point_of_sale/views/pos_order_view.xml +++ b/addons/point_of_sale/views/pos_order_view.xml @@ -41,7 +41,7 @@ <field name="qty"/> <field name="product_uom_id" string="UoM" groups="uom.group_uom"/> <field name="price_unit" widget="monetary"/> - <field name="discount" string="Disc.%" widget="monetary"/> + <field name="discount" string="Disc.%"/> <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"/> @@ -51,7 +51,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"/> @@ -248,7 +248,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"/> @@ -265,7 +265,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>