3
votes

In Odoo 8, I was able to define a server action using XML such as:

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
  <data>
    <record id="action" model="ir.actions.server">
      <field name="name">My Action</field>
      <field name="model_id" ref="model_module_model"/>
      <field name="code">self.action(cr, uid, context=context)</field>
    </record>
  </data>
</odoo>

This would execute my module.model.action() method.

In Odoo 10, this code throws an exception:

ERROR:odoo.http:Exception during JSON request handling.
Traceback (most recent call last):
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 638, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 675, in dispatch
    result = self._call_function(**self.params)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 331, in _call_function
    return checked_call(self.db, *args, **kwargs)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/service/model.py", line 119, in wrapper
    return f(dbname, *args, **kwargs)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 324, in checked_call
    result = self.endpoint(*a, **kw)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 933, in __call__
    return self.method(*args, **kw)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/http.py", line 504, in response_wrap
    response = f(*args, **kw)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/addons/web/controllers/main.py", line 1129, in run
    result = request.env['ir.actions.server'].browse([action_id]).run()
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/addons/base/ir/ir_actions.py", line 964, in run
    res = func(action, eval_context=eval_context)
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/addons/base/ir/ir_actions.py", line 793, in run_action_code_multi
    safe_eval(action.code.strip(), eval_context, mode="exec", nocopy=True)  # nocopy allows to return 'action'
File "/usr/share/odoo/lib/python2.7/site-packages/odoo/tools/safe_eval.py", line 301, in safe_eval
    return unsafe_eval(c, globals_dict, locals_dict)
File "", line 1, in <module>
ValueError: <type 'exceptions.NameError'>: "name 'self' is not defined" while evaluating
u'self.action(cr, uid, context=context)'

I'm not seeing anything interesting in the Odoo documentation about server actions at https://www.odoo.com/documentation/10.0/reference/actions.html#code

And the docs explicitly state that self is part of the evaluation context for server actions, see https://www.odoo.com/documentation/10.0/reference/actions.html#reference-actions-server-context

How does one create server actions in Odoo 10?

3

3 Answers

8
votes

There is no need to self object while declare server actions in Odoo 10. We can directly access model/object with env['model.name']

Try with following code:

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
  <data>
    <record id="action" model="ir.actions.server">
      <field name="name">My Action</field>
      <field name="model_id" ref="model_module_model"/>
      <field name="code">
        if context.get('active_model') == 'your.module.model' and context.get('active_ids'):
                action = env['module.model'].browse(context['active_ids']).action()
    </record>
  </data>
</odoo>

EDIT:

We can use these env['module.model'].action() to execute method when there is no active_ids

1
votes

The old API was completly removed since Odoo 10. So i guess your old style call with cr, uid and context is the problem. Try just to call the model or if there is a record you want to call the method on, use it.

# model call
model.action()
# record call
object.action()

A little hint: try to create an server action under settings in the client. Type 'code' is the default and you will get some documentation about this feature :-)

1
votes
# model call
 <field name="code">
     model.action_name()
 </field>

# record call
 <field name="code">
    record.action_name()
 </field>