diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-10 09:18:51 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-10 09:18:51 +0700 |
| commit | b48c7baad0d5d0ae88a7277745938afc89b35991 (patch) | |
| tree | 0a8edc3099ce23bb3643f33957b11255291ee276 /fixco_custom/views | |
| parent | 6f47933b5ac837af81008a300a0f109c1973d9d4 (diff) | |
<MIqdad> approval adjust out
Diffstat (limited to 'fixco_custom/views')
| -rw-r--r-- | fixco_custom/views/stock_inventory.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/fixco_custom/views/stock_inventory.xml b/fixco_custom/views/stock_inventory.xml new file mode 100644 index 0000000..df74783 --- /dev/null +++ b/fixco_custom/views/stock_inventory.xml @@ -0,0 +1,33 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<odoo> + <!-- Form View: Tambahkan field 'number' setelah lokasi --> + <record id="view_stock_inventory_form_inherit" model="ir.ui.view"> + <field name="name">stock.inventory.form.inherit</field> + <field name="model">stock.inventory</field> + <field name="inherit_id" ref="stock.view_inventory_form"/> + <field name="arch" type="xml"> + <header> + <button name="action_approve" string="Approve" type="object" + class="btn-primary" attrs="{'invisible': [('adjusment_type', 'not in', ['out'])]}"/> + </header> + <xpath expr="//field[@name='location_ids']" position="after"> + <field name="number" readonly="1"/> + <field name="adjusment_type" /> + <field name="approval_state" readonly="1" attrs="{'invisible': [('adjusment_type', 'not in', ['out'])]}"/> + </xpath> + </field> + </record> + + <!-- Tree View: Tambahkan field 'number' setelah tanggal --> + <record id="view_stock_inventory_tree_inherit" model="ir.ui.view"> + <field name="name">stock.inventory.tree.inherit</field> + <field name="model">stock.inventory</field> + <field name="inherit_id" ref="stock.view_inventory_tree"/> + <field name="arch" type="xml"> + <xpath expr="//field[@name='date']" position="after"> + <field name="number"/> + </xpath> + </field> + </record> + +</odoo> |
