Skip to content

Commit

Permalink
[FIX]stock_voucher:missclick error
Browse files Browse the repository at this point in the history
  • Loading branch information
jcadhoc committed Sep 26, 2023
1 parent 8f86f83 commit 7c3c5b1
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 7c3c5b1

Please sign in to comment.