commit | 65dfd099471ce660a76b3674677ff04461107853 | [log] [tgz] |
---|---|---|
author | tundebabzy <tundebabzy@gmail.com> | Wed Oct 04 13:21:44 2017 +0100 |
committer | Nabin Hait <nabinhait@gmail.com> | Wed Oct 04 17:51:44 2017 +0530 |
tree | d5b733141fa50249eb32d174b552a84c7c6ea21d | |
parent | 0cc93538ed6ef820c0cf2eaceb45df3f515e5e48 [diff] |
fix wrong variable name (#11050)
diff --git a/erpnext/hr/doctype/process_payroll/process_payroll.py b/erpnext/hr/doctype/process_payroll/process_payroll.py index 55c0cce..0e329a7 100644 --- a/erpnext/hr/doctype/process_payroll/process_payroll.py +++ b/erpnext/hr/doctype/process_payroll/process_payroll.py
@@ -284,7 +284,7 @@ }) # Deductions - for acc, amt in deductions.items(): + for acc, amount in deductions.items(): payable_amount -= flt(amount, precision) accounts.append({ "account": acc,