We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05297c8 commit 6ebbbb7Copy full SHA for 6ebbbb7
sale_restricted_qty/models/sale.py
@@ -178,8 +178,9 @@ def check_restricted_qty(self):
178
179
if failed_constraints:
180
failed_lines.append(
181
- _('Product "%(product_name)s": %(failed_constraints)s')
+ _('%(order_name)s - Product "%(product_name)s": %(failed_constraints)s')
182
% {
183
+ "order_name": line.order_id.name,
184
"product_name": line.product_id.name,
185
"failed_constraints": ", ".join(failed_constraints),
186
}
0 commit comments