Skip to content

Commit

Permalink
[FIX]stock_voucher:missclick error
Browse files Browse the repository at this point in the history
closes #403

Signed-off-by: Bruno Zanotti <bz@adhoc.com.ar>
  • Loading branch information
jcadhoc committed Sep 27, 2023
1 parent 8f86f83 commit fb37a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stock_voucher/wizards/stock_backorder_confirmation.py
Expand Up @@ -23,7 +23,7 @@ def process(self):
return {
'actions': [
{'type': 'ir.actions.act_window_close'},
picking.do_print_voucher(),
pickings.do_print_voucher(),
],
'type': 'ir.actions.act_multi',
}
Expand All @@ -40,7 +40,7 @@ def process_cancel_backorder(self):
return {
'actions': [
{'type': 'ir.actions.act_window_close'},
picking.do_print_voucher(),
pickings.do_print_voucher(),
],
'type': 'ir.actions.act_multi',
}

0 comments on commit fb37a55

Please sign in to comment.