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
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
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"
/>
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
AanmeldenGerelateerde posts | Antwoorden | Weergaven | Activiteit | |
---|---|---|---|---|
|
2
jul. 25
|
4827 | ||
|
2
dec. 24
|
7911 | ||
How to ORDER BY? [Odoo 10]
Opgelost
|
|
2
nov. 24
|
28721 | |
|
2
mei 24
|
7600 | ||
|
3
mrt. 24
|
7056 |
Thank you.
You're welcome, hope it helps :)