diff --git a/erpnext/accounts/doctype/budget/budget.py b/erpnext/accounts/doctype/budget/budget.py index 337face2df2..145480138d6 100644 --- a/erpnext/accounts/doctype/budget/budget.py +++ b/erpnext/accounts/doctype/budget/budget.py @@ -256,8 +256,7 @@ def validate_budget_records(args, budget_records, expense_amount): def compare_expense_with_budget(args, budget_amount, action_for, action, budget_against, amount=0): - args.actual_expense = get_actual_expense(args) - args.requested_amount, args.ordered_amount = 0, 0 + args.actual_expense, args.requested_amount, args.ordered_amount = get_actual_expense(args), 0, 0 if not amount: args.requested_amount, args.ordered_amount = get_requested_amount(args), get_ordered_amount(args) @@ -373,11 +372,9 @@ def get_expense_breakup(args, currency, budget_against): ) + " - " + frappe.bold(fmt_money(args.ordered_amount, currency=currency)) - + "" + + "" ) - msg += "" - return msg