In Odoo, when the mouse is hovered over the search bar, a dropdown appears by default. I want to hide some of the values from that dropdown so that the user cannot see them. How can I remove those values?
In odoo 18, i create custom module so if i hide odoo by default features like in serach baar if i hover the mouse so visible are Filter, Group etc... so i want to hide some select value
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ờ
Hii,
Let's say you have this original search view:
<search> <filter name = "my_records" string = "My Records" domain = "[('user_id', '=', uid)]"/> <filter name = "closed" string = "Closed" domain = "[('state', '=', 'closed')]"/> <group name = "group_by"> < filter name = "user_id" string = "Salesperson" context = "{'group_by': 'user_id'}" /> < filter name = "partner_id" string = "Customer" context = "{'group_by': 'partner_id'}" /> </ group > </ search >
You only want to hide:
- The filter called "Closed"
- The group-by called "Salesperson"
Your Custom Module XML:
< record id = "your_custom_search_view" model = "ir.ui.view" > < field name = "name" >sale.order.search.inherit.custom </ field > < field name = "model" >sale.order </ field > <!-- Change this to your model --> < field name = "inherit_id" ref = "sale.view_sale_order_filter" /> <!-- Original search view --> < field name = "arch" type = "xml" > <!-- Remove "Closed" filter --> < xpath expr = "//filter[@name='closed']" position = "replace" /> <!-- Remove "Salesperson" group-by --> < xpath expr = "//group[@name='group_by']" position = "inside" > < xpath expr = "//filter[@name='user_id']" position = "replace" /> </ xpath > </ field > </ record >
i Hope it is use full
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 8 25
|
578 | ||
|
0
thg 8 25
|
319 | ||
|
0
thg 7 25
|
1369 | ||
|
0
thg 7 25
|
3 | ||
|
0
thg 7 25
|
6 |