Skip to Content
Menu
This question has been flagged
1 Reply
1739 Views

here is action which the button is calling.

I want to pass data from my O2M lines to another form's O2M lines on a button click which is of type action. Is there any way to do that? also this button and action is odoo's default

<record id="sale_action_quotations_new" model="ir.actions.act_window">
<field name="name">Quotation</field>
<field name="res_model">sale.order</field>
<field name="view_mode">form,tree,graph</field>
<field name="domain">[('opportunity_id', '=', active_id)]</field>
<field name="context">{'search_default_opportunity_id': active_id, 'default_opportunity_id': active_id}</field>
</record> this is the button
<button string="New Quotation" name="%(sale_action_quotations_new)d" type="action" class="oe_highlight"
context="{'search_default_partner_id': partner_id,
'default_partner_id': partner_id,
'default_team_id': team_id,
'default_campaign_id': campaign_id,
'default_medium_id': medium_id,
'default_source_id': source_id}"/>
Avatar
Discard
Best Answer

Hi,

I am understand why you need context in button.

You can do one thing, create one method which call on button click and from there you can open or call any view with your choice context or any data.

Thanks

Avatar
Discard
Related Posts Replies Views Activity
1
Mar 21
3350
0
Aug 19
2849
3
Mar 15
8262
1
Dec 22
7588
1
Mar 18
9375