I want to open wizard on onchange method how it can be possible ?
return is not working in onchange method
Regards
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I want to open wizard on onchange method how it can be possible ?
return is not working in onchange method
Regards
A workaround: add a button near the field, using button action to trigger the wizard
in xxx_model.py
def apply_template(self):
self.ensure_one()
return {'name': 'Are you sure?',
'type': 'ir.actions.act_window',
'res_model': 'quotation.template_apply_confirm_wizard',
'view_mode': 'form',
'view_type': 'form',
'target': 'new',
}
in xxx_views.xml
<xpath expr="//group[@name='order_details']" position="after">
<group name="quotation_template">
<label for="quotation_template_id"/>
<div class="o_row">
<field name="quotation_template_id" string="Template"/>
<button name="apply_template" string="Apply" type="object" icon="fa-bars"
attrs="{'invisible':[('quotation_template_id', '=', False)]}"
/>
</div>
</group>
</xpath>
Usman Farzand
only the following 3 things possible in onchange method:
Set Values in fields
Set Domain
Return warning message
You can not open a wizard using onchange.
I Hope this will help you.
Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari
i already know this but i need to know way out how i can achive this.....
i need to open wizard on change any possiblity or alternative solution
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up