no message
This commit is contained in:
parent
38d149c213
commit
935e6e5a4b
4 changed files with 17 additions and 11 deletions
|
|
@ -342,7 +342,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
data.PositionTypeOld,
|
||||
data.PositionLevelOld,
|
||||
data.PositionNumberOld,
|
||||
organizationPositionOld = data.OrganizationPositionOld == "/" || data.OrganizationPositionOld == null ? null: data.OrganizationPositionOld,
|
||||
organizationPositionOld = data.OrganizationPositionOld == "/" || data.OrganizationPositionOld == null ? null : data.OrganizationPositionOld,
|
||||
data.IsActive,
|
||||
|
||||
data.rootOld,
|
||||
|
|
@ -489,7 +489,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
placementReceive.posLevelNameOld = org.result.posLevelName;
|
||||
|
||||
// placementReceive.EducationOld = profile.Educations.Count() == 0 ? null : $"{profile.Educations.OrderByDescending(x => x.FinishDate).FirstOrDefault().Degree}-{profile.Educations.OrderByDescending(x => x.FinishDate).FirstOrDefault().Field}";
|
||||
// placementReceive.AmountOld = profile.Salaries.Count() == 0 ? null : profile.Salaries.OrderByDescending(x => x.Order).FirstOrDefault().Amount;
|
||||
placementReceive.AmountOld = org.result.Amount;
|
||||
|
||||
placementReceive.PositionOld = org.result.position;
|
||||
placementReceive.PositionLevelOld = org.result.posLevelName;
|
||||
|
|
@ -974,7 +974,8 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
{
|
||||
result.Add(r);
|
||||
string? _null = null;
|
||||
if (r.RemarkHorizontal != null && r.RemarkHorizontal != "") {
|
||||
if (r.RemarkHorizontal != null && r.RemarkHorizontal != "")
|
||||
{
|
||||
result.Add(new
|
||||
{
|
||||
No = _null,
|
||||
|
|
@ -994,7 +995,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
CommandExcecuteDate = _null,
|
||||
RemarkHorizontal = _null,
|
||||
RemarkVertical = _null,
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
return Success(result);
|
||||
|
|
@ -1037,7 +1038,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
email = (String?)null,
|
||||
phone = (String?)null,
|
||||
keycloak = string.Empty,
|
||||
isProbation = true,
|
||||
isProbation = false,
|
||||
isLeave = false,
|
||||
dateRetire = (DateTime?)null,
|
||||
dateAppoint = r.commandAffectDate,
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ namespace BMA.EHR.Placement.Service.Requests
|
|||
public string? posLevelName { get; set; }
|
||||
public double? salary { get; set; }
|
||||
public string? education { get; set; }
|
||||
public double? Amount { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue