|
@@ -163,9 +163,15 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
public decimal TotalDeductions { get; set; }
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
- public decimal TotalRealHair { get; set; }
|
|
|
+ public decimal BeforeTax
|
|
|
+ {
|
|
|
+ get
|
|
|
+ {
|
|
|
+ return Should - TotalDeductions;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
|
@@ -173,9 +179,9 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
public decimal WithholdingTax { get; set; }
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
- public decimal AfterTax { get; set; }
|
|
|
+ public decimal TotalRealHair { get; set; }
|
|
|
|
|
|
|
|
|
|
|
@@ -280,11 +286,6 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
|
|
|
public string? Ex_ItemsRemark { get; set; }
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public decimal TotalRealHair { get; set; }
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -297,14 +298,14 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return WithholdingTax + AfterTax;
|
|
|
+ return Should - TotalDeductions;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
- public decimal AfterTax { get; set; }
|
|
|
+ public decimal TotalRealHair { get; set; }
|
|
|
|
|
|
|
|
|
|
|
@@ -380,7 +381,6 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -388,10 +388,15 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return WithholdingTax + AfterTax;
|
|
|
+ return Should - TotalDeductions;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public decimal TotalRealHair { get; set; }
|
|
|
+
|
|
|
|
|
|
|
|
|
|