fix #2430
All checks were successful
Build & Deploy Placement Service / build (push) Successful in 1m59s

This commit is contained in:
harid 2026-04-17 15:18:30 +07:00
parent 34ec9bb77c
commit db99630e0d

View file

@ -2045,7 +2045,7 @@ namespace BMA.EHR.Placement.Service.Controllers
.Where(x => req.refIds.Contains(x.Id.ToString()))
// .Where(x => x.PlacementStatus.ToUpper() == "REPORT")
.ToListAsync();
placementProfiles.ForEach(profile => profile.PlacementStatus = "PREPARE-CONTAI");
placementProfiles.ForEach(profile => profile.PlacementStatus = "PREPARE-CONTAIN");
await _context.SaveChangesAsync();
return Success();
}