455 lines
26 KiB
C#
455 lines
26 KiB
C#
using BMA.EHR.Application.Repositories.Reports;
|
|
using BMA.EHR.Domain.Common;
|
|
using DocumentFormat.OpenXml.Drawing;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Swashbuckle.AspNetCore.Annotations;
|
|
using Telerik.Reporting;
|
|
using Telerik.Reporting.Processing;
|
|
|
|
namespace BMA.EHR.Report.Service.Controllers
|
|
{
|
|
[Route("api/v{version:apiVersion}/report/insignia")]
|
|
[ApiVersion("2.0")]
|
|
[ApiController]
|
|
[Produces("application/json")]
|
|
[Authorize]
|
|
[SwaggerTag("API รายงานระบบเครื่องราชอิสริยาภรณ์")]
|
|
public class InsigniaReportController : BaseController
|
|
{
|
|
#region " Fields "
|
|
|
|
private readonly IWebHostEnvironment _hostingEnvironment;
|
|
private readonly IConfiguration _configuration;
|
|
private readonly InsigniaReportRepository _repository;
|
|
private readonly GenericReportGenerator _reportGenerator;
|
|
|
|
|
|
#endregion
|
|
|
|
#region " Constuctor and Destructor "
|
|
|
|
public InsigniaReportController(IWebHostEnvironment hostingEnvironment, IConfiguration configuration, InsigniaReportRepository repository, GenericReportGenerator reportGenerator)
|
|
{
|
|
|
|
_hostingEnvironment = hostingEnvironment;
|
|
_configuration = configuration;
|
|
_repository = repository;
|
|
_reportGenerator = reportGenerator;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region " Methods "
|
|
|
|
#region 39-แบบ ขร1 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นสายสะพาย
|
|
/// <summary>
|
|
/// 39-แบบ ขร1 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นสายสะพาย
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("39/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia39ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
var data = await _repository.GetKhr1Report(id);
|
|
var total = await _repository.GetKhr1TotalReport(id);
|
|
var YearInsignalPeriod = await _repository.GetYearInsigniaPeriod(id);
|
|
var TwoYearInsignalPeriod = await _repository.Get2YearInsigniaPeriod(id);
|
|
var Date = await _repository.GetDateInsigniaPeriod(id);
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"39-แบบ ขร1 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นสายสะพาย.trdp");
|
|
|
|
ReportPackager reportPacker = new ReportPackager();
|
|
Telerik.Reporting.Report? report = null;
|
|
using (var sourceStream = System.IO.File.OpenRead(rptFile))
|
|
{
|
|
report = (Telerik.Reporting.Report)reportPacker.UnpackageDocument(sourceStream);
|
|
}
|
|
|
|
report.ReportParameters["YearInsigniaPeriod"].Value = YearInsignalPeriod;
|
|
report.ReportParameters["TwoYearInsignalPeriod"].Value = TwoYearInsignalPeriod;
|
|
report.ReportParameters["EndDate"].Value = Date.GetType().GetProperty("EndDate").GetValue(Date);
|
|
|
|
var _Khr1List = new List<dynamic>();
|
|
foreach (var _data in data)
|
|
{
|
|
_Khr1List.Add(new
|
|
{
|
|
RowNo = _data.GetType().GetProperty("RowNo").GetValue(_data),
|
|
DepartmentName = _data.GetType().GetProperty("DepartmentName").GetValue(_data),
|
|
G1Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G1Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
G2Male = _data.GetType().GetProperty("G2Male").GetValue(_data),
|
|
G2Female = _data.GetType().GetProperty("G2Female").GetValue(_data),
|
|
G3Male = _data.GetType().GetProperty("G3Male").GetValue(_data),
|
|
G3Female = _data.GetType().GetProperty("G3Female").GetValue(_data),
|
|
G4Male = _data.GetType().GetProperty("G4Male").GetValue(_data),
|
|
G4Female = _data.GetType().GetProperty("G4Female").GetValue(_data),
|
|
G5Male = _data.GetType().GetProperty("G5Male").GetValue(_data),
|
|
G5Female = _data.GetType().GetProperty("G5Female").GetValue(_data),
|
|
reason = string.Empty,
|
|
});
|
|
}
|
|
var tbl = (Telerik.Reporting.Table)report.Items["detailSection1"].Items["table1"];
|
|
tbl.DataSource = _Khr1List;
|
|
var tbl2 = (Telerik.Reporting.Table)report.Items["detailSection1"].Items["table2"];
|
|
tbl2.DataSource = total;
|
|
|
|
System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
|
|
InstanceReportSource instanceReportSource = new InstanceReportSource()
|
|
{
|
|
ReportDocument = report,
|
|
};
|
|
ReportProcessor reportProcessor = new ReportProcessor(_configuration);
|
|
RenderingResult result = reportProcessor.RenderReport($"{exportType}", instanceReportSource, deviceInfo);
|
|
return File(result.DocumentBytes, mimeType, $"แบบ ขร1.{exportType.Trim().ToLower()}");
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 40-แบบ ขร2 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นต่ำกว่าสายสะพาย
|
|
/// <summary>
|
|
/// 40-แบบ ขร2 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นต่ำกว่าสายสะพาย
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("40/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia40ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
var data = await _repository.GetKhr2Report(id);
|
|
var total = await _repository.GetKhr2TotalReport(id);
|
|
var YearInsignalPeriod = await _repository.GetYearInsigniaPeriod(id);
|
|
var TwoYearInsignalPeriod = await _repository.Get2YearInsigniaPeriod(id);
|
|
var Date = await _repository.GetDateInsigniaPeriod(id);
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"40-แบบ ขร2 บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ ข้าราชการ ชั้นต่ำกว่าสายสะพาย.trdp");
|
|
ReportPackager reportPacker = new ReportPackager();
|
|
Telerik.Reporting.Report? report = null;
|
|
using (var sourceStream = System.IO.File.OpenRead(rptFile))
|
|
{
|
|
report = (Telerik.Reporting.Report)reportPacker.UnpackageDocument(sourceStream);
|
|
}
|
|
|
|
report.ReportParameters["YearInsigniaPeriod"].Value = YearInsignalPeriod;
|
|
report.ReportParameters["TwoYearInsignalPeriod"].Value = TwoYearInsignalPeriod;
|
|
report.ReportParameters["EndDate"].Value = Date.GetType().GetProperty("EndDate").GetValue(Date);
|
|
|
|
var _Khr2List = new List<dynamic>();
|
|
foreach (var _data in data)
|
|
{
|
|
_Khr2List.Add(new
|
|
{
|
|
//RowNo = _data.GetType().GetProperty("RowNo").GetValue(_data),
|
|
RowNo = _Khr2List.Count+1,
|
|
DepartmentName = _data.GetType().GetProperty("DepartmentName").GetValue(_data),
|
|
G1Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G1Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
G2Male = _data.GetType().GetProperty("G2Male").GetValue(_data),
|
|
G2Female = _data.GetType().GetProperty("G2Female").GetValue(_data),
|
|
G3Male = _data.GetType().GetProperty("G3Male").GetValue(_data),
|
|
G3Female = _data.GetType().GetProperty("G3Female").GetValue(_data),
|
|
G4Male = _data.GetType().GetProperty("G4Male").GetValue(_data),
|
|
G4Female = _data.GetType().GetProperty("G4Female").GetValue(_data),
|
|
G5Male = _data.GetType().GetProperty("G5Male").GetValue(_data),
|
|
G5Female = _data.GetType().GetProperty("G5Female").GetValue(_data),
|
|
G6Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G6Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
G7Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G7Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
G8Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G8Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
G9Male = _data.GetType().GetProperty("G1Male").GetValue(_data),
|
|
G9Female = _data.GetType().GetProperty("G1Female").GetValue(_data),
|
|
});
|
|
}
|
|
var tbl1 = (Telerik.Reporting.Table)report.Items["detailSection1"].Items["table1"];
|
|
tbl1.DataSource = _Khr2List;
|
|
var tbl2 = (Telerik.Reporting.Table)report.Items["detailSection1"].Items["table2"];
|
|
tbl2.DataSource = total;
|
|
|
|
System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
|
|
InstanceReportSource instanceReportSource = new InstanceReportSource()
|
|
{
|
|
ReportDocument = report,
|
|
};
|
|
ReportProcessor reportProcessor = new ReportProcessor(_configuration);
|
|
RenderingResult result = reportProcessor.RenderReport($"{exportType}", instanceReportSource, deviceInfo);
|
|
return File(result.DocumentBytes, mimeType, $"แบบ ขร2.{exportType.Trim().ToLower()}");
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 41-แบบ ขร3 บัญชีรายชื่อข้าราชการผู้ขอพระราชทานเครื่องราชฯ
|
|
/// <summary>
|
|
/// 41-แบบ ขร3 บัญชีรายชื่อข้าราชการผู้ขอพระราชทานเครื่องราชฯ
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("41/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia41ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
var data = await _repository.GetKhr3Report(id);
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"41-แบบ ขร3 บัญชีรายชื่อข้าราชการผู้ขอพระราชทานเครื่องราชฯ.trdp");
|
|
var contentData = _reportGenerator.GenerateReport(rptFile, exportType);
|
|
|
|
return File(contentData, mimeType, $"แบบ ขร3.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 42-แบบ ขร4 บัญชีแสดงคุณสมบัติของข้าราชการซึ่งเสนอขอเครื่องราชฯ
|
|
/// <summary>
|
|
/// 42-แบบ ขร4 บัญชีแสดงคุณสมบัติของข้าราชการซึ่งเสนอขอเครื่องราชฯ
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("42/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia42ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
var data = await _repository.GetKhr4Report(id);
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"42-แบบ ขร4 บัญชีแสดงคุณสมบัติของข้าราชการซึ่งเสนอขอเครื่องราชฯ.trdp");
|
|
ReportPackager reportPacker = new ReportPackager();
|
|
Telerik.Reporting.Report? report = null;
|
|
using (var sourceStream = System.IO.File.OpenRead(rptFile))
|
|
{
|
|
report = (Telerik.Reporting.Report)reportPacker.UnpackageDocument(sourceStream);
|
|
}
|
|
|
|
var tbl1 = (Telerik.Reporting.Table)report.Items["detailSection1"].Items["table1"];
|
|
tbl1.DataSource = data;
|
|
|
|
System.Collections.Hashtable deviceInfo = new System.Collections.Hashtable();
|
|
InstanceReportSource instanceReportSource = new InstanceReportSource()
|
|
{
|
|
ReportDocument = report,
|
|
};
|
|
ReportProcessor reportProcessor = new ReportProcessor(_configuration);
|
|
RenderingResult result = reportProcessor.RenderReport($"{exportType}", instanceReportSource, deviceInfo);
|
|
return File(result.DocumentBytes, mimeType, $"แบบ ขร4.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 43-บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี
|
|
/// <summary>
|
|
/// 43-บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("43/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia43ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"43-บัญชีระดับผลการประเมินผลการปฏิบัติราชการในรอบ 5 ปี.trdp");
|
|
var contentData = _reportGenerator.GenerateReport(rptFile, exportType);
|
|
|
|
return File(contentData, mimeType, $"insignia.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 44-บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ
|
|
/// <summary>
|
|
/// 44-บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("44/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia44ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"44-บัญชีแสดงจำนวนชั้นตราเครื่องราชฯ.trdp");
|
|
var contentData = _reportGenerator.GenerateReport(rptFile, exportType);
|
|
|
|
return File(contentData, mimeType, $"insignia.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 45-บัญชีแสดงรายชื่อผู้ขอพระราชทานเหรียญจักรพรรดิมาลา
|
|
/// <summary>
|
|
/// 45-บัญชีแสดงรายชื่อผู้ขอพระราชทานเหรียญจักรพรรดิมาลา
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("45/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia45ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"45-บัญชีแสดงรายชื่อผู้ขอพระราชทานเหรียญจักรพรรดิมาลา.trdp");
|
|
var contentData = _reportGenerator.GenerateReport(rptFile, exportType);
|
|
|
|
return File(contentData, mimeType, $"insignia.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 46-ประวัติสำหรับการเสนอขอพระราชทานเหรียญจักรพรรดิมาลา
|
|
/// <summary>
|
|
/// 46-ประวัติสำหรับการเสนอขอพระราชทานเหรียญจักรพรรดิมาลา
|
|
/// </summary>
|
|
/// <param name="id">id </param>
|
|
/// <param name="exportType">pdf, docx หรือ xlsx</param>
|
|
/// <returns></returns>
|
|
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
|
|
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
|
|
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
|
|
[HttpGet("46/{exportType}/{id}")]
|
|
public async Task<ActionResult<ResponseObject>> GetInsignia46ConvertReportAsync(Guid id, string exportType = "pdf")
|
|
{
|
|
try
|
|
{
|
|
|
|
var mimeType = "";
|
|
switch (exportType.Trim().ToLower())
|
|
{
|
|
case "pdf": mimeType = "application/pdf"; break;
|
|
case "docx": mimeType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; break;
|
|
case "xlsx": mimeType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; break;
|
|
}
|
|
|
|
var rptFile = System.IO.Path.Combine(_hostingEnvironment.ContentRootPath, "Reports", $"46-ประวัติสำหรับการเสนอขอพระราชทานเหรียญจักรพรรดิมาลา.trdp");
|
|
var contentData = _reportGenerator.GenerateReport(rptFile, exportType);
|
|
|
|
return File(contentData, mimeType, $"insignia.{exportType.Trim().ToLower()}");
|
|
|
|
}
|
|
catch
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#endregion
|
|
}
|
|
}
|