You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which aside from missing some abstraction layers, send offset/limit/etc arguments as positional instead of sending them as keywords; whereas Odoo defines them as keyword arguments.
The last one, False in this case, has been removed in Odoo 17
These code patterns need rework, and at the very least False has to be removed for compat with Odoo 17
The text was updated successfully, but these errors were encountered:
Since odoo/odoo@7e6cff5#diff-7144f88ea32f36feb17ce1b8dda7dee1631f5ada34075414587df3948c6b3d1bR1477 the
search
method takes 1 less argumentThis code uses lots of patterns such as :
which aside from missing some abstraction layers, send offset/limit/etc arguments as positional instead of sending them as keywords; whereas Odoo defines them as keyword arguments.
The last one,
False
in this case, has been removed in Odoo 17These code patterns need rework, and at the very least
False
has to be removed for compat with Odoo 17The text was updated successfully, but these errors were encountered: