diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-06-07 10:29:19 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-06-07 10:29:19 +0700 |
| commit | 48474fcef12509f736be0cb6af47618601dbfe61 (patch) | |
| tree | 2f82cf0f26caa507102b1d08e2fa647974788a0d /indoteknik_custom/views/landedcost.xml | |
| parent | 25ad8547cc4aab608478d52352d834579f26c88d (diff) | |
remove useless validation in manufacturing order and custom landed cost
Diffstat (limited to 'indoteknik_custom/views/landedcost.xml')
| -rw-r--r-- | indoteknik_custom/views/landedcost.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/indoteknik_custom/views/landedcost.xml b/indoteknik_custom/views/landedcost.xml new file mode 100644 index 00000000..4736941a --- /dev/null +++ b/indoteknik_custom/views/landedcost.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="landed_cost_form_inherit" model="ir.ui.view"> + <field name="name">Landed Cost</field> + <field name="model">stock.landed.cost</field> + <field name="inherit_id" ref="stock_landed_costs.view_stock_landed_cost_form"/> + <field name="arch" type="xml"> + <field name="vendor_bill_id" position="replace"> + <field name="vendor_bill_id" required="1"/> + </field> + </field> + </record> + </data> +</odoo>
\ No newline at end of file |
