diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-01-29 14:38:42 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-01-29 14:38:42 +0700 |
| commit | b5a327c9ded0655613af30ad032b22c338b16fb3 (patch) | |
| tree | 70a1521e01042cb6566be7ea86929e178a31e7ba | |
| parent | b7aff589190d505ba14ee5364253aab0f1012ded (diff) | |
<Miqdad> add bill status in purchase orders tree view
| -rw-r--r-- | fixco_custom/views/purchase_order.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/fixco_custom/views/purchase_order.xml b/fixco_custom/views/purchase_order.xml index 82b5c79..6cf28ce 100644 --- a/fixco_custom/views/purchase_order.xml +++ b/fixco_custom/views/purchase_order.xml @@ -67,6 +67,16 @@ </field> </field> </record> + <record id="purchase_order_tree_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_view_tree"/> + <field name="arch" type="xml"> + <field name="state" position="after"> + <field name="bill_status"/> + </field> + </field> + </record> <record id="purchase_order_multi_create_bills_ir_actions_server" model="ir.actions.server"> <field name="name">Multi Bills</field> <field name="model_id" ref="purchase.model_purchase_order"/> |
