แก้สถ่นะออกคำสั่ง
Some checks failed
release-dev / release-dev (push) Failing after 12s

This commit is contained in:
moss 2025-04-03 11:13:25 +07:00
parent e160e1e552
commit e947f08f8e
14 changed files with 60 additions and 39 deletions

View file

@ -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();