mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-07 15:12:51 +00:00
fix: placeholder number
This commit is contained in:
@@ -273,10 +273,10 @@ def compare_expense_with_budget(args, budget_amount, action_for, action, budget_
|
|||||||
if total_expense > budget_amount:
|
if total_expense > budget_amount:
|
||||||
if args.actual_expense > budget_amount:
|
if args.actual_expense > budget_amount:
|
||||||
diff = args.actual_expense - budget_amount
|
diff = args.actual_expense - budget_amount
|
||||||
_msg = _("{0} Budget for Account {1} against {2} {3} is {4}. It is already exceeded by {6}.")
|
_msg = _("{0} Budget for Account {1} against {2} {3} is {4}. It is already exceeded by {5}.")
|
||||||
else:
|
else:
|
||||||
diff = total_expense - budget_amount
|
diff = total_expense - budget_amount
|
||||||
_msg = _("{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {6}.")
|
_msg = _("{0} Budget for Account {1} against {2} {3} is {4}. It will be exceeded by {5}.")
|
||||||
|
|
||||||
currency = frappe.get_cached_value("Company", args.company, "default_currency")
|
currency = frappe.get_cached_value("Company", args.company, "default_currency")
|
||||||
msg = _msg.format(
|
msg = _msg.format(
|
||||||
|
|||||||
Reference in New Issue
Block a user