Payroll Entry - fix deduct taxes (#14730)

This commit is contained in:
Ranjith Kurungadam 2018-06-28 23:04:51 +05:30 committed by Nabin Hait
parent cae945e743
commit f6e654eccc

View File

@ -111,7 +111,9 @@ class PayrollEntry(Document):
"employee": emp['employee'],
"employee_name": frappe.get_value("Employee", {"name":emp['employee']}, "employee_name"),
"company": self.company,
"posting_date": self.posting_date
"posting_date": self.posting_date,
"deduct_tax_for_unclaimed_employee_benefits": self.deduct_tax_for_unclaimed_employee_benefits,
"deduct_tax_for_unsubmitted_tax_exemption_proof": self.deduct_tax_for_unsubmitted_tax_exemption_proof
})
ss.insert()
ss_dict = {}