Update obligation calculation to use one-time payment without tax

This commit is contained in:
MahanCh
2025-09-03 16:32:27 +03:30
parent 0c56240158
commit fe8335af55

View File

@@ -670,7 +670,7 @@ public class TemporaryClientRegistrationApplication : ITemporaryClientRegistrati
}
result.DailyCompensation = ((roundAmount2 * 10) / 100).ToMoney();
result.Obligation = result.OneTimeTotalPaymentStr;
result.Obligation = result.OneTimeWithoutTaxPaymentStr;
return result;
}