I have and act_window which will open by default my custom filter (group_by):
<record id="master_equipment_act_window" model="ir.actions.act_window">
<field name="name">Equipment</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">model.name</field>
<field name="view_mode">tree,form,kanban</field>
<field name="context">{'search_default_group_location':1}</field>
<field name="search_view_id" ref="my_search_view"/>
<field name="help" type="html">
<p class="oe_view_nocontent_create"> Empty list. </p>
<p>Please create one.</p>
</field>
</record>
The search:
<filter name="group_location" string="Location" context="{'group_by':'location'}"/>
By default, odoo will group the result in tree view by location, but needs to click > the arrow button to open
and view the results. Is it possible to open by default the result without clicking the arrow button? Thanks.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
5
Trả lời
18339
Lượt xem
There is a module Web GroupBy Expand which provides a functionality to expand / collapse the group by tree view and is available in all the versions.
Follow this example:
On your search view you have this filter
<filter string="Active Bookings" name="active_bookings" domain="[('state','in',['confirmed', 'pending_payment'])]"/>
Then on your action:
<record id="absale_booking_action" model="ir.actions.act_window">
<field name="name">Booking</field>
<field name="res_model">absale.booking</field>
<field name="view_mode">tree,form</field>
<field name="domain">[('location_id','=',active_park_id)]</field>
<field name="context">{"search_default_active_bookings":1}</field>
</record>
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 6 16
|
3031 | ||
|
0
thg 3 23
|
1877 | ||
|
2
thg 6 22
|
3990 | ||
|
1
thg 3 15
|
8012 | ||
|
1
thg 3 15
|
13628 |
what is the arrow button >?
@Antonio what little change you made to get work ?