diff options
Diffstat (limited to 'fixco_custom/views/purchase_order.xml')
| -rw-r--r-- | fixco_custom/views/purchase_order.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fixco_custom/views/purchase_order.xml b/fixco_custom/views/purchase_order.xml new file mode 100644 index 0000000..1aa438c --- /dev/null +++ b/fixco_custom/views/purchase_order.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="purchase_order_form_view_inherit" model="ir.ui.view"> + <field name="name">Purchase Order</field> + <field name="model">purchase.order</field> + <field name="inherit_id" ref="purchase.purchase_order_form"/> + <field name="arch" type="xml"> + <field name="currency_id" position="after"> + <field name="biaya_lain_lain"/> + </field> + <field name="amount_untaxed" position="after"> + <field name="amount_discount" class="oe_currency_line"/> + </field> + <field name="price_unit" position="after"> + <field name="discount"/> + <field name="discount_amount" optional="hide"/> + </field> + </field> + </record> + </data> +</odoo>
\ No newline at end of file |
