Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
2439 Переглядів

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}"/>
Аватар
Відмінити
Найкраща відповідь

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

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
1
бер. 21
4469
0
серп. 19
3735
3
бер. 15
9505
1
груд. 22
8727
1
бер. 18
10269