add fields amountSpecial
This commit is contained in:
parent
7cd06be198
commit
15160c2018
7 changed files with 24 additions and 2 deletions
|
|
@ -1719,7 +1719,9 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
currentProvinceId = (String?)null,
|
||||
currentDistrictId = (String?)null,
|
||||
currentSubDistrictId = (String?)null,
|
||||
currentZipCode = p.CurrentZipCode == null ? string.Empty : p.CurrentZipCode
|
||||
currentZipCode = p.CurrentZipCode == null ? string.Empty : p.CurrentZipCode,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
},
|
||||
bodyEducations = p.PlacementEducations.Select(e => new
|
||||
{
|
||||
|
|
@ -1759,6 +1761,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
date = r.commandAffectDate,
|
||||
commandId = r.commandId,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
positionSalaryAmount = r.positionSalaryAmount,
|
||||
mouthSalaryAmount = r.mouthSalaryAmount,
|
||||
posNo = p.posMasterNo == null ? "" :
|
||||
|
|
@ -2019,7 +2022,9 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
currentProvinceId = (String?)null,
|
||||
currentDistrictId = (String?)null,
|
||||
currentSubDistrictId = (String?)null,
|
||||
currentZipCode = p.CurrentZipCode == null ? string.Empty : p.CurrentZipCode
|
||||
currentZipCode = p.CurrentZipCode == null ? string.Empty : p.CurrentZipCode,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
},
|
||||
bodyEducations = p.PlacementEducations.Select(e => new
|
||||
{
|
||||
|
|
@ -2058,6 +2063,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
profileId = string.Empty,
|
||||
date = r.commandAffectDate,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
commandId = r.commandId,
|
||||
positionSalaryAmount = r.positionSalaryAmount,
|
||||
mouthSalaryAmount = r.mouthSalaryAmount,
|
||||
|
|
@ -2297,6 +2303,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
profileId = p.profileId,
|
||||
date = r.commandAffectDate,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
commandId = r.commandId,
|
||||
positionSalaryAmount = r.positionSalaryAmount,
|
||||
mouthSalaryAmount = r.mouthSalaryAmount,
|
||||
|
|
@ -2522,6 +2529,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
profileId = p.profileId,
|
||||
date = r.commandAffectDate,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
commandId = r.commandId,
|
||||
positionSalaryAmount = r.positionSalaryAmount,
|
||||
mouthSalaryAmount = r.mouthSalaryAmount,
|
||||
|
|
@ -2736,6 +2744,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
profileId = p.profileId,
|
||||
date = r.commandAffectDate,
|
||||
amount = r.amount,
|
||||
amountSpecial = r.amountSpecial,
|
||||
commandId = r.commandId,
|
||||
positionSalaryAmount = r.positionSalaryAmount,
|
||||
mouthSalaryAmount = r.mouthSalaryAmount,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue