From b478b9ededb519ac03afef9a7defe9605e412bb8 Mon Sep 17 00:00:00 2001 From: harid Date: Tue, 11 Nov 2025 18:07:59 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=81=E0=B8=81=E0=B9=89=E0=B8=AA=E0=B8=A5?= =?UTF-8?q?=E0=B8=B0=E0=B8=AA=E0=B8=B4=E0=B8=97=E0=B8=98=E0=B8=B4=E0=B9=8C?= =?UTF-8?q?=E0=B9=84=E0=B8=A1=E0=B9=88=E0=B8=95=E0=B9=89=E0=B8=AD=E0=B8=87?= =?UTF-8?q?=E0=B9=80=E0=B8=84=E0=B8=A5=E0=B8=A2=E0=B8=B5=E0=B8=A3=E0=B9=8C?= =?UTF-8?q?=E0=B8=82=E0=B9=89=E0=B8=AD=E0=B8=A1=E0=B8=B9=E0=B8=A5=E0=B8=A3?= =?UTF-8?q?=E0=B8=B2=E0=B8=8A=E0=B8=81=E0=B8=B2=E0=B8=A3=20Issue=20#1956?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/PlacementController.cs | 80 +++++++++---------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs index 79c1f0e3..4d78da61 100644 --- a/BMA.EHR.Placement.Service/Controllers/PlacementController.cs +++ b/BMA.EHR.Placement.Service/Controllers/PlacementController.cs @@ -797,52 +797,52 @@ namespace BMA.EHR.Placement.Service.Controllers if (person == null) return Error(GlobalMessages.DataNotFound, 404); bool? _nullBool = null; - person.PositionLevel = null; - person.PositionType = null; - person.Amount = null; - person.MouthSalaryAmount = null; - person.PositionSalaryAmount = null; - person.RecruitDate = null; - person.ReportingDate = null; + //person.PositionLevel = null; + //person.PositionType = null; + //person.Amount = null; + //person.MouthSalaryAmount = null; + //person.PositionSalaryAmount = null; + //person.RecruitDate = null; + //person.ReportingDate = null; person.RejectReason = req.Note; person.PlacementStatus = "DISCLAIM"; person.LastUpdateFullName = FullName ?? "System Administrator"; person.LastUpdateUserId = UserId ?? ""; person.LastUpdatedAt = DateTime.Now; - person.root = null; - person.rootId = null; - person.rootDnaId = null; - person.rootShortName = null; - person.child1 = null; - person.child1Id = null; - person.child1DnaId = null; - person.child1ShortName = null; - person.child2 = null; - person.child2Id = null; - person.child2Id = null; - person.child2ShortName = null; - person.child3 = null; - person.child3Id = null; - person.child3DnaId = null; - person.child3ShortName = null; - person.child4 = null; - person.child4Id = null; - person.child4DnaId = null; - person.child4ShortName = null; - person.orgRevisionId = null; - person.posMasterNo = null; + //person.root = null; + //person.rootId = null; + //person.rootDnaId = null; + //person.rootShortName = null; + //person.child1 = null; + //person.child1Id = null; + //person.child1DnaId = null; + //person.child1ShortName = null; + //person.child2 = null; + //person.child2Id = null; + //person.child2Id = null; + //person.child2ShortName = null; + //person.child3 = null; + //person.child3Id = null; + //person.child3DnaId = null; + //person.child3ShortName = null; + //person.child4 = null; + //person.child4Id = null; + //person.child4DnaId = null; + //person.child4ShortName = null; + //person.orgRevisionId = null; + //person.posMasterNo = null; //person.positionName = null; - person.positionField = null; - person.posTypeId = null; - person.posTypeName = null; - person.posLevelId = null; - person.posLevelName = null; - person.node = null; - person.nodeId = null; - person.posmasterId = null; - person.positionId = null; - person.Draft = _nullBool; - person.typeCommand = null; + //person.positionField = null; + //person.posTypeId = null; + //person.posTypeName = null; + //person.posLevelId = null; + //person.posLevelName = null; + //person.node = null; + //person.nodeId = null; + //person.posmasterId = null; + //person.positionId = null; + //person.Draft = _nullBool; + //person.typeCommand = null; await _context.SaveChangesAsync(); return Success();