mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-22 14:39:19 +00:00
fix wrong variable name (#11050)
This commit is contained in:
@@ -284,7 +284,7 @@ class ProcessPayroll(Document):
|
|||||||
})
|
})
|
||||||
|
|
||||||
# Deductions
|
# Deductions
|
||||||
for acc, amt in deductions.items():
|
for acc, amount in deductions.items():
|
||||||
payable_amount -= flt(amount, precision)
|
payable_amount -= flt(amount, precision)
|
||||||
accounts.append({
|
accounts.append({
|
||||||
"account": acc,
|
"account": acc,
|
||||||
|
|||||||
Reference in New Issue
Block a user