diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-08-26 11:13:23 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-08-26 11:13:23 +0700 |
| commit | b557dfe5249e471a1b7277d5c189313ce303347b (patch) | |
| tree | 70e29854ae31c16910f49afc7b15b25a1bd7d9b7 /indoteknik_custom/views | |
| parent | a28e01d3df18301057c33930b11655cc9d623b64 (diff) | |
temporary solution for internal use tax
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/stock_picking_type.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/indoteknik_custom/views/stock_picking_type.xml b/indoteknik_custom/views/stock_picking_type.xml new file mode 100644 index 00000000..7a8f45dd --- /dev/null +++ b/indoteknik_custom/views/stock_picking_type.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <data> + <record id="stock_picking_type_form_view_inherit" model="ir.ui.view"> + <field name="name">Stock Picking Type</field> + <field name="model">stock.picking.type</field> + <field name="inherit_id" ref="stock.view_picking_type_form"/> + <field name="arch" type="xml"> + <field name="warehouse_id" position="after"> + <field name="is_internal_use" + string="Internal Use" + type="object" + /> + </field> + </field> + </record> + </data> +</odoo>
\ No newline at end of file |
