diff options
| author | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-25 09:31:04 +0700 |
|---|---|---|
| committer | Mqdd <ahmadmiqdad27@gmail.com> | 2026-02-25 09:31:04 +0700 |
| commit | e2946f4f67155186a6597f31c327f421901aaa2b (patch) | |
| tree | bee7c7557d2c64b722c1a4f7fd1325d099fa5021 /fixco_custom/views | |
| parent | 099dc9e41b2f9098eebb00ea895232e4c943d83c (diff) | |
<Miqdad> add soo search filter in PO
Diffstat (limited to 'fixco_custom/views')
| -rw-r--r-- | fixco_custom/views/purchase_order.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/fixco_custom/views/purchase_order.xml b/fixco_custom/views/purchase_order.xml index 240d83b..76df6e4 100644 --- a/fixco_custom/views/purchase_order.xml +++ b/fixco_custom/views/purchase_order.xml @@ -78,6 +78,7 @@ </field> </field> </record> + <record id="view_purchase_order_filter_inherit" model="ir.ui.view"> <field name="name">purchase.order.filter.inherit.custom</field> <field name="model">purchase.order</field> @@ -93,6 +94,20 @@ </field> </record> + <record id="view_purchase_order_search_inherit" model="ir.ui.view"> + <field name="name">purchase.order.search.inherit.custom</field> + <field name="model">purchase.order</field> + <field name="inherit_id" ref="purchase.purchase_order_view_search"/> + <field name="arch" type="xml"> + <xpath expr="//search" position="inside"> + <field name="soo_number" + string="SOO Number" + filter_domain="[ + ('soo_number', 'ilike', self) + ]"/> + </xpath> + </field> + </record> <record id="purchase_order_multi_create_bills_ir_actions_server" model="ir.actions.server"> <field name="name">Multi Bills</field> |
