Hi,
I have an action that is called from a form button:
def action_extract(self, cr, uid, ids, context=None):
self.this = self.browse(cr, uid, ids[0])
(...)
Under OpenERP 8.0 it works fine but under Odoo 11, is gives error saying that "missing 2 required positional arguments: 'uid' and 'ids'".
What's wrong and how to solve this ?
Paulo