This commit is contained in:
parent
e160e1e552
commit
e947f08f8e
14 changed files with 60 additions and 39 deletions
|
|
@ -1564,7 +1564,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.PlacementStatus = "REPORT";
|
||||
profile.PlacementStatus = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "APPOINT";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -1895,7 +1895,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.PlacementStatus = "REPORT";
|
||||
profile.PlacementStatus = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "APPOINT";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -2219,10 +2219,10 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
// .Where(x => x.Placement!.PlacementType!.Name == "แต่งตั้งข้าราชการ")
|
||||
// .Where(x => x.typeCommand.Trim().ToUpper() == "APPOIN")
|
||||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile => profile.PlacementStatus = "REPORT");
|
||||
placementProfiles.ForEach(profile => profile.PlacementStatus = req.status.Trim().ToUpper());
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.PlacementStatus = "REPORT";
|
||||
profile.PlacementStatus = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "APPOIN";
|
||||
});
|
||||
|
||||
|
|
@ -2455,7 +2455,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.PlacementStatus = "REPORT";
|
||||
profile.PlacementStatus = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "MOVE";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -2681,7 +2681,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
var placementProfiles = await _context.PlacementProfiles
|
||||
.Where(x => req.refIds.Contains(x.Id.ToString()))
|
||||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile => profile.PlacementStatus = "REPORT");
|
||||
placementProfiles.ForEach(profile => profile.PlacementStatus = req.status.Trim().ToUpper());
|
||||
await _context.SaveChangesAsync();
|
||||
return Success();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue