api สอบสวน

This commit is contained in:
Kittapath 2023-11-24 15:28:04 +07:00
parent ab171a7394
commit 4882995f47
34 changed files with 36995 additions and 69 deletions

View file

@ -70,6 +70,7 @@ namespace BMA.EHR.DisciplineComplaint.Service.Controllers
CreatedAt = x.CreatedAt,//วันที่สร้างเรื่องร้องเรียน
LevelConsideration = x.LevelConsideration,//ระดับการพิจารณา
DateConsideration = x.DateConsideration,//วันที่กำหนดพิจารณา
DateReceived = x.DateReceived,//วันที่รับเรื่อง
Status = x.Status,//สถานะเรื่องร้องเรียน มีดังนี้ ใหม่ (NEW), ยุติเรื่อง (STOP), มีมูลส่งไปสืบสวนแล้ว (SEND_INVESTIGATE)
Result = x.Result,
})
@ -393,8 +394,8 @@ namespace BMA.EHR.DisciplineComplaint.Service.Controllers
var persons = data.DisciplineComplaint_Profiles.Where(x => req.persons.Contains(x.Id)).ToList();
foreach (var item in persons)
{
disciplineInvestigate.DisciplineInvestigate_Profiles.Add(
new DisciplineInvestigate_Profile
disciplineInvestigate.DisciplineInvestigate_ProfileComplaints.Add(
new DisciplineInvestigate_ProfileComplaint
{
PersonId = item.PersonId,
CitizenId = item.CitizenId,
@ -507,7 +508,7 @@ namespace BMA.EHR.DisciplineComplaint.Service.Controllers
}
/// <summary>
/// ลบอัพไฟล์เอกสารร้องเรียนวินัย
/// ลบไฟล์เอกสารร้องเรียนวินัย
/// </summary>
/// <returns></returns>
/// <response code="200"></response>
@ -533,8 +534,12 @@ namespace BMA.EHR.DisciplineComplaint.Service.Controllers
await _context.SaveChangesAsync();
await _documentService.DeleteFileAsync(docId);
await _context.SaveChangesAsync();
return Success();
}
else
{
return Error(new Exception("ไม่พอไฟล์นี้ในระบบ"), (int)StatusCodes.Status404NotFound);
}
return Success();
}
}
}