mirror of
https://github.com/frappe/erpnext.git
synced 2026-05-15 11:09:17 +00:00
fix(Salary Slip): TypeError while clearing any amount field in components (backport #29931) (#29932)
Co-authored-by: Rucha Mahabal <ruchamahabal2@gmail.com>
This commit is contained in:
@@ -1265,7 +1265,7 @@ class SalarySlip(TransactionBase):
|
|||||||
for i, earning in enumerate(self.earnings):
|
for i, earning in enumerate(self.earnings):
|
||||||
if earning.salary_component == salary_component:
|
if earning.salary_component == salary_component:
|
||||||
self.earnings[i].amount = wages_amount
|
self.earnings[i].amount = wages_amount
|
||||||
self.gross_pay += self.earnings[i].amount
|
self.gross_pay += flt(self.earnings[i].amount, earning.precision("amount"))
|
||||||
self.net_pay = flt(self.gross_pay) - flt(self.total_deduction)
|
self.net_pay = flt(self.gross_pay) - flt(self.total_deduction)
|
||||||
|
|
||||||
def compute_year_to_date(self):
|
def compute_year_to_date(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user