Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
2218 Vistas

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
Descartar
Mejor respuesta

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
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
mar 21
4181
0
ago 19
3507
3
mar 15
9220
1
dic 22
8468
1
mar 18
10073