fix: bad strings format for command get-untraslated (#34361)

(cherry picked from commit ca10e2bb9f)
This commit is contained in:
Danny
2023-03-17 06:43:32 -04:00
committed by justin.li
parent e3c1d736ce
commit 5a54296686

View File

@@ -172,8 +172,8 @@ class PickList(Document):
if (row.picked_qty / row.stock_qty) * 100 > over_delivery_receipt_allowance:
frappe.throw(
_(
f"You are picking more than required quantity for the item {row.item_code}. Check if there is any other pick list created for the sales order {row.sales_order}."
)
"You are picking more than required quantity for the item {0}. Check if there is any other pick list created for the sales order {1}."
).format(row.item_code, row.sales_order)
)
@frappe.whitelist()