how can i add an option into action dropdown in odoo 10 in "sale order"
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ờ
4
Trả lời
6310
Lượt xem
Hi Sugeesh,
You can do this with an XML record defined as a ir.actions.server and then binding it to an ir.values record. Example in XML:
<record model="ir.actions.server" id="your_custom_action_id"> <field name="name">Your description here</field> <field name="model_id" ref="your_module.model_your_model_name"/> <field name="code"> for item in records: item.your_function() </field> </record>
<record model="ir.values" id="ir_value_your_custom"> <field name="model_id" ref="your_module.model_your_model_name"/>
<field name="name">Your title here (shown to user)</field> <field name="key2">client_action_multi</field> <field name="value" eval="'ir.actions.server,' +str(ref('your_custom_action_id'))"/>
<field name="key">action</field> <field name="model">your.model.name</field> </record>
You can then create a Python function to execute code when the user clicks on this action:
@api.multi def your_function(self): print('Your custom Python logic comes here')
Regards,
Yenthe
@Yenthe Van Ginneken,
Could you please explain how to set a server action for "MENU ITEMS"
hello , try like below code
<act_window
id="action_account_payment_from_invoices"
name="Register Payment"
res_model="account.register.payments" # which object's view you want to open
src_model="account.invoice" # on which object's view you want to add
view_mode="form"
multi="True"
target="new"
key2="client_action_multi"
/>
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 | |
---|---|---|---|---|
|
2
thg 7 25
|
4790 | ||
|
2
thg 12 24
|
7894 | ||
How to ORDER BY? [Odoo 10]
Đã xử lý
|
|
2
thg 11 24
|
28695 | |
|
2
thg 5 24
|
7593 | ||
|
3
thg 3 24
|
7040 |
Thank you.
You're welcome, hope it helps :)