Skip to content

Commit

Permalink
[FIX] stock_batch_picking_ux: fix super arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto-weiss committed Oct 25, 2022
1 parent 11f3dcd commit f91a031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stock_batch_picking_ux/models/stock_picking.py
Expand Up @@ -56,4 +56,4 @@ def _action_generate_backorder_wizard(self, show_transfers=False):
self._context.get('picking_batches').write({'state': 'done'})
return True
else:
return super(StockPicking)._action_generate_backorder_wizard(show_transfers=show_transfers)
return super(StockPicking, self)._action_generate_backorder_wizard(show_transfers=show_transfers)

0 comments on commit f91a031

Please sign in to comment.