เพิ่มฟอร์มชำระเงิน
This commit is contained in:
parent
47d0f72f30
commit
1cfa4336fd
11 changed files with 3906 additions and 107 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue