fix wrong variable name (#11050)

This commit is contained in:
tundebabzy 2017-10-04 13:21:44 +01:00 committed by Nabin Hait
parent 0cc93538ed
commit 65dfd09947

View File

@ -284,7 +284,7 @@ class ProcessPayroll(Document):
})
# Deductions
for acc, amt in deductions.items():
for acc, amount in deductions.items():
payable_amount -= flt(amount, precision)
accounts.append({
"account": acc,