Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
[FIX] warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
legalsylvain committed Nov 7, 2018
1 parent 909ef5e commit 31bb85b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion grap_pos_change_sale_move/models/pos_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def _confirm_orders(self):
if len(orders):
raise Warning(_(
"The following orders are not in a paid or invoiced"
" status.") % ', '.join([order.name for order in orders]))
" status: %s") % ', '.join(
[order.name for order in orders]))

# parse the orders to group the ids according to the key fields
order_groups = {}
Expand Down

0 comments on commit 31bb85b

Please sign in to comment.