filter excel insignia

This commit is contained in:
Kittapath 2023-09-27 20:36:13 +07:00
parent 04b8885e18
commit a3a111834f
8 changed files with 16654 additions and 4 deletions

View file

@ -315,5 +315,31 @@ namespace BMA.EHR.Placement.Service.Controllers
return Success();
}
/// <summary>
/// วันที่ส่งตัวกลับ
/// </summary>
/// <param name="id">Id ส่งตัวกลับ</param>
/// <returns></returns>
/// <response code="200"></response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpPut("date/{id:length(36)}")]
public async Task<ActionResult<ResponseObject>> UpdateDateRepatriation([FromBody] PlacementRepatriationDateRequest req, Guid id)
{
var uppdated = await _context.PlacementRepatriations
.FirstOrDefaultAsync(x => x.Id == id);
if (uppdated == null)
return Error(GlobalMessages.PlacementRepatriationNotFound, 404);
uppdated.DateRepatriation = req.Date;
uppdated.LastUpdateFullName = FullName ?? "System Administrator";
uppdated.LastUpdateUserId = UserId ?? "";
uppdated.LastUpdatedAt = DateTime.Now;
await _context.SaveChangesAsync();
return Success();
}
}
}