commit | ec7a18737bcaa04ce3b1ed294d70abeed3afb0eb | [log] [tgz] |
---|---|---|
author | Nabin Hait <nabinhait@gmail.com> | Thu Apr 25 22:29:49 2019 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Thu Apr 25 22:30:23 2019 +0530 |
tree | 2c7d107fbbb15825ec9fc721f8a63de235f83207 | |
parent | 6adfc5618d87be00ff5d0752730d7527d4d60871 [diff] |
fix: test cases
diff --git a/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py b/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py index ca46ee9..97ceb63 100644 --- a/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py +++ b/erpnext/hr/doctype/employee_tax_exemption_proof_submission/employee_tax_exemption_proof_submission.py
@@ -17,7 +17,7 @@ self.calculate_hra_exemption() def set_total_actual_amount(self): - self.total_actual_amount = flt(self.house_rent_payment_amount) + self.total_actual_amount = flt(self.get("house_rent_payment_amount")) for d in self.tax_exemption_proofs: self.total_actual_amount += flt(d.amount)