fix: Salary slip amount calculation (#18146)

This commit is contained in:
Mangesh-Khairnar
2019-07-03 17:27:40 +05:30
committed by Anurag Mishra
parent 29433f2b1b
commit cc80be449d

View File

@@ -618,7 +618,7 @@ class SalarySlip(TransactionBase):
elif not self.payment_days and not self.salary_slip_based_on_timesheet and cint(row.depends_on_payment_days):
amount, additional_amount = 0, 0
elif not row.amount:
amount = row.default_amount + row.additional_amount
amount = cint(row.default_amount) + cint(row.additional_amount)
# apply rounding
if frappe.get_cached_value("Salary Component", row.salary_component, "round_to_the_nearest_integer"):