remove Math.truncate for monthly salary for compute customize checkout

This commit is contained in:
2025-03-27 19:09:09 +03:30
parent a9655d6df5
commit d139a36fba

View File

@@ -2379,7 +2379,7 @@ CreateWorkingHoursTemp command, bool holidayWorking)
EmployeeId = employeeId,
SumOfWorkingDays = totalDays.ToString(),
ContractNo = contract?.ContractNo ?? "-",
MonthlySalary = Math.Truncate(dailyWage * mandatoryDays),
MonthlySalary = dailyWage * mandatoryDays,
PersonnelCode = personnelCode,
FineViewModels = fineViewModels,
InstallmentViewModels = loanInstallments,