เพิ่มฟอร์มชำระเงิน

This commit is contained in:
kittapath 2025-01-27 13:11:20 +07:00
parent 47d0f72f30
commit 1cfa4336fd
11 changed files with 3906 additions and 107 deletions

View file

@ -260,6 +260,14 @@ namespace BMA.EHR.Recurit.Exam.Service.Controllers
{
await _periodExamService.UpdateImgAsync(examId, files);
}
else if (type == "barcode")
{
await _periodExamService.UpdateBarcodeAsync(examId, files);
}
else if (type == "qrcode")
{
await _periodExamService.UpdateQrcodeAsync(examId, files);
}
else
{
await _periodExamService.UpdateDocAsync(examId, files);
@ -735,7 +743,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Controllers
//string excelName = $"Candidate_{DateTime.Now.ToString("yyyyMMddHHmmssfff")}.xlsx";
//return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", excelName);
var data = await _periodExamService.NewDownloadCandidateAsync(examId);
return Success(data);
}
@ -765,7 +773,7 @@ namespace BMA.EHR.Recurit.Exam.Service.Controllers
//string excelName = $"Candidate_{DateTime.Now.ToString("yyyyMMddHHmmssfff")}.xlsx";
//return File(stream, "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", excelName);
var data = await _periodExamService.NewDownloadCandidateAllAsync(examId);
return Success(data);
}