diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-07-02 11:48:35 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-07-02 11:48:35 +0700 |
| commit | dd93d36b4c7cec4e1681d69e296a7cff559386a0 (patch) | |
| tree | 247cf5e739b60592d630b8d86ed6a2be0863dc85 /fixco_custom/views/purchase_order.xml | |
| parent | 9c17104f86f116782f0ed36f82d7c3de7130d363 (diff) | |
search invoice marketplace and add discount on order line purchase and add biaya lain lain on purchase
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 |
