Skip to Content
Menu
This question has been flagged
5 Replies
19968 Views

Dear Odoo developers,

I used code as hereby: self._context.get('active_ids'), self.env.context.get('active_ids'), self._context.get('active_ids',[]), self.env.context.get('active_ids',[]) in order to get the active_ids from tree view, but I cannot get the result as I expected.

Kindly let me know to get these "active_ids".

Thank you in advance!

Best regards,

Sroeurn Suon


Avatar
Discard
Best Answer

Hi Sroeurn,

Your question misses some context about in what case you exactly want to do it. Here is an example with an action. XML:

    <record id="ir_actions_server_custom" model="ir.actions.server">
        <field name="name">Your action</field>
        <field name="type">ir.actions.server</field>
        <field name="model_id" ref="model_stock_picking"/>
        <field name="state">code</field>
        <field name="code">
            if records:
                action = records.your_action()
        </field>
        <field name="binding_model_id" ref="your_module.model_stock_picking"/>
    </record>

Python:

    @api.multi
    def your_action(self):
        active_ids = self.ids 

In general you usually get the active ids out with self.env.context.get like this:

active_ids = self.env.context.get('active_ids', [])

You can see a lot of examples in Odoo at https://github.com/odoo/odoo/search?q=active_ids&unscoped_q=active_ids have a look there too.

Regards,
Yenthe

Avatar
Discard
Author

Dear Mr. Yenthe,

Thank you, I used the same as your code, but I cannot get the result.

ids = self.env.context.get('active_ids', [])

I think that maybe I missed some configuration?

Thank you in advance.

Best regards,

Sroeurn

Best Answer

Hello Sroeurn Suon,

For the active_ids, You can create wizard models and form view and also creates the act_window for that wizard, From that you can used the active_ids which is selected records from tree.

For Example :

wizard.py :-
from odoo import models, fields, api

class WizardModel(models.TransientModel):
    _name = 'wizard.model'

    name = fields.Char ('Name')

    @api.multi
    def wizard_method(self):
        self.ensure_one()
        sale_order_ids = self.env['sale.order'].browse(self._context.get('active_ids'))
        print "sale_order_ids ::::: ", sale_order_ids

wizard_view.xml :-
<record id="wizard_model_view" model="ir.ui.view">
    <field name="name">wizard.model.form.view</field>
    <field name="model">wizard.model</field>
    <field name="arch" type="xml">
        <form string="Wiard">
            <group>
                <group>
                    <field name="name" required="1"/>
                </group>
                <group/>
            </group>
            <footer>
                <button name="wizard_method" string="Ok" type="object" class="oe_highlight"/>
                or
                <button string="Cancel" class="oe_link" special="cancel"/>
            </footer>
        </form>
    </field>
</record>

<record id="action_wizard_model" model="ir.actions.act_window">
    <field name="name">Wizard Model</field>
    <field name="res_model">wizard.model</field>
    <field name="view_type">form</field>
    <field name="view_mode">form</field>
    <field name="target">new</field>
</record>

<act_window id="multi_wizard_model" multi="True" name="Multi Wizard" res_model="wizard.model" src_model="sale.order" view_mode="form" target="new" view_type="form"/>


Here res_model : wizard.model name

        src_model : For you create act_window


When you selected multiple sale.order from tree view, In action view You can see Menu which is Multi Wizard, so from that open wizard and when click on OK, You can use active_ids for selected sale.order


Hope it will works for you.

Thanks,

Avatar
Discard

Thank you, Jignesh! I was able to use this in Odoo 13 with slight changes.

src_model is changed to binding_model.

multi="True" is unnecessary and will not work in Odoo 13.

Here's my code:

<act_window id="multi_production_batch_wizard"

name="Production Batch"

binding_model="mrp.production"

res_model="production.batch.wizard"

view_mode="form"

target="new"

/>

Best Answer

def _default_active_ids(self):
return self.env['your_model'].browse(self._context.get('active_ids'))

#A relation btn the Transient model and the Actual model

name = fields.Many2one('model_name', string='name', required=True, default=_default_active_ids)

This should be able to help you


Avatar
Discard
Author Best Answer
Avatar
Discard