This commit is contained in:
parent
e160e1e552
commit
e947f08f8e
14 changed files with 60 additions and 39 deletions
|
|
@ -759,7 +759,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.Status = "REPORT";
|
||||
profile.Status = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "APPOINT";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -969,7 +969,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.Status = "REPORT";
|
||||
profile.Status = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "MOVE";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -1180,7 +1180,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.Status = "REPORT";
|
||||
profile.Status = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "SLIP";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -1380,7 +1380,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.Status = "REPORT";
|
||||
profile.Status = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "MOVE";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
@ -1588,7 +1588,7 @@ namespace BMA.EHR.Placement.Service.Controllers
|
|||
.ToListAsync();
|
||||
placementProfiles.ForEach(profile =>
|
||||
{
|
||||
profile.Status = "REPORT";
|
||||
profile.Status = req.status.Trim().ToUpper();
|
||||
profile.typeCommand = "SLIP";
|
||||
});
|
||||
await _context.SaveChangesAsync();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue