Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
8023 มุมมอง

How to add a group by to search view of product master? I am unable to add my group_id ( customized one ) to search view of product form ? please refer a following code,

<record id="product_search_by_group_form_view" model="ir.ui.view">

        <field name="name">group.search.form</field>
        <field name="model">product.product</field>
        <field name="inherit_id" ref="product.product_search_form_view"/>
        <field name="arch" type="xml">

               <filter name="consumable" position="before">
               <filter icon="terp-accessories-archiver-minus" string="Group" domain="[('group_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Sub Group" domain="[('sub_group_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Product Type" domain="[('type_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Product Sub Type" domain="[('sub_type_id', '!=', False)]" />

               <filter string="Type" position="after">
       <filter string='product-group' icon="terp-stock_symbol-selection" domain="[]" context="{'group_by' :'group_id'}"/>
               </filter>

               </filter>
        </field>

 </record>
อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Should be:

<record id="product_search_by_group_form_view" model="ir.ui.view">

        <field name="name">group.search.form</field>
        <field name="model">product.product</field>
        <field name="inherit_id" ref="product.product_search_form_view"/>
        <field name="arch" type="xml">

               <filter name="consumable" position="before">
               <filter icon="terp-accessories-archiver-minus" string="Group" domain="[('group_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Sub Group" domain="[('sub_group_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Product Type" domain="[('type_id', '!=', False)]" />
               <filter icon="terp-accessories-archiver-minus" string="Product Sub Type" domain="[('sub_type_id', '!=', False)]" />
               </filter>            
     <filter string="Type" position="after">
<filter string='product-group' icon="terp-stock_symbol-selection" domain="[]" context="{'group_by' :'group_id'}"/>
</filter>
</filter> </field> </record>

So, you forgot the fist filter position before.


Hope this helps,

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
List view group by date format change แก้ไขแล้ว
2
พ.ย. 15
10562
1
ก.ค. 25
495
Search a message แก้ไขแล้ว
1
ก.พ. 25
1246
0
พ.ค. 24
1739
0
ก.ย. 23
2192