ปรับให้ระบบอ่านค่าจาก env ทั้งหมด

This commit is contained in:
Nakorn Rientrakrunchai
2020-06-12 12:15:37 +07:00
parent eea05beb69
commit c293ef770d
96 changed files with 191 additions and 1548 deletions

View File

@@ -158,40 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_detail_normal_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_detail_normal_report(eva_adjust_postponement_detail_normalReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_detail_normal_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item

View File

@@ -158,40 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_detail_normal_02_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_detail_normal_02_report(eva_adjust_postponement_detail_normal_02ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_detail_normal_02_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item

View File

@@ -158,40 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_detail_quota_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_detail_quota_report(eva_adjust_postponement_detail_quotaReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_detail_quota_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item

View File

@@ -158,40 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_detail_quota_02_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_detail_quota_02_report(eva_adjust_postponement_detail_quota_02ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_detail_quota_02_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_normal_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_normal_report(eva_adjust_postponement_normalReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_normal_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_adjust_postponement_quota_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_adjust_postponement_quota_report(eva_adjust_postponement_quotaReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_adjust_postponement_quota_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -157,42 +157,7 @@ namespace TodoAPI2.Controllers
return StatusCode(500, $"Exception in IActionResult GetListBySearch. {ex.Message}");
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_report(eva_create_evaluationReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -157,42 +157,7 @@ namespace TodoAPI2.Controllers
return StatusCode(500, $"Exception in IActionResult GetListBySearch. {ex.Message}");
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_report(eva_create_evaluation_detailReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -184,40 +184,5 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_agreement_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_agreement_report(eva_create_evaluation_detail_agreementReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_agreement_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
}
}

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_review01_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_review01_report(eva_create_evaluation_detail_review01ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_review01_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_review02_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_review02_report(eva_create_evaluation_detail_review02ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_review02_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -157,42 +157,7 @@ namespace TodoAPI2.Controllers
return StatusCode(500, $"Exception in IActionResult GetListBySearch. {ex.Message}");
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_review03_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_review03_report(eva_create_evaluation_detail_review03ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_review03_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_review04_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_review04_report(eva_create_evaluation_detail_review04ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_review04_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -157,42 +157,7 @@ namespace TodoAPI2.Controllers
return StatusCode(500, $"Exception in IActionResult GetListBySearch. {ex.Message}");
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_status_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_status_report(eva_create_evaluation_detail_statusReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_status_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_summary1_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_summary1_report(eva_create_evaluation_detail_summary1ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_summary1_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_create_evaluation_detail_summary2_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_create_evaluation_detail_summary2_report(eva_create_evaluation_detail_summary2ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_create_evaluation_detail_summary2_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_achievement_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_achievement_report(eva_evaluation_achievementReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_achievement_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,40 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_achievement_process2_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_achievement_process2_report(eva_evaluation_achievement_process2ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_achievement_process2_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_achievement_process_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_achievement_process_report(eva_evaluation_achievement_processReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_achievement_process_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_behavior_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_behavior_report(eva_evaluation_behaviorReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_behavior_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_behavior_process2_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_behavior_process2_report(eva_evaluation_behavior_process2ReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_behavior_process2_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_behavior_process_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_behavior_process_report(eva_evaluation_behavior_processReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_behavior_process_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_group_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_group_report(eva_evaluation_groupReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_group_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_evaluation_group_detail_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_evaluation_group_detail_report(eva_evaluation_group_detailReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_evaluation_group_detail_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_level_score_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_level_score_report(eva_level_scoreReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_level_score_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_level_score_basic_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_level_score_basic_report(eva_level_score_basicReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_level_score_basic_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_performance_plan_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_performance_plan_report(eva_performance_planReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_performance_plan_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_performance_plan_detail_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_performance_plan_detail_report(eva_performance_plan_detailReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_performance_plan_detail_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_promoted_percentage_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_promoted_percentage_report(eva_promoted_percentageReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_promoted_percentage_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -158,41 +158,6 @@ namespace TodoAPI2.Controllers
}
}
/// <summary>
/// Download Report
/// </summary>
/// <remarks>
/// </remarks>
/// <returns>Return list of items by specifced keyword</returns>
/// <response code="200">Returns the item</response>
/// <response code="500">Error Occurred</response>
[HttpGet("eva_salary_cylinder_report")]
[ProducesResponseType(typeof(FileStreamResult), 200)]
[ProducesResponseType(400)]
[ProducesResponseType(500)]
//[ValidateAntiForgeryToken]
public IActionResult eva_salary_cylinder_report(eva_salary_cylinderReportRequestModel model)
{
try
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = MyHelper.getHttpClient(Configuration);
string mainurl = Configuration["JasperReportServer:MainURL"];
string url = $"{mainurl}/ro519eva/eva_salary_cylinder_report.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}";
var data = httpclient.DownloadData(url);
var stream = new MemoryStream(data);
return File(stream, model.contentType);
}
catch (Exception ex)
{
_logger.LogCritical($"Exception while GetReport.", ex);
return StatusCode(500, $"Exception while GetReport. {ex.Message}");
}
}
/// <summary>
/// Create new item
/// </summary>

View File

@@ -97,10 +97,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_eva01.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -97,11 +97,10 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_eva02.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";
var data = httpclient.DownloadData(url);

View File

@@ -96,10 +96,10 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_eva03.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -98,11 +98,10 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_family.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";
var data = httpclient.DownloadData(url);

View File

@@ -97,10 +97,10 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_leave_summary.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -98,10 +98,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_leave_total.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -96,15 +96,11 @@ namespace TodoAPI2.Controllers
{
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
var httpclient = new WebClient();
var env_mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
var env_reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
var env_username = Environment.GetEnvironmentVariable("JasperReportServer_username");
var env_password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = !string.IsNullOrEmpty(env_mainurl) ? env_mainurl : Configuration["JasperReportServer:MainURL"];
string reportsite = !string.IsNullOrEmpty(env_reportsite) ? env_reportsite : Configuration["JasperReportServer:reportsite"];
string username = !string.IsNullOrEmpty(env_username) ? env_username : Configuration["JasperReportServer:username"];
string password = !string.IsNullOrEmpty(env_password) ? env_password : Configuration["JasperReportServer:password"];
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_leave_total_02.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -98,10 +98,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_position_salary.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -97,10 +97,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_samana.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -98,10 +98,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_study_history.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -98,10 +98,11 @@ namespace TodoAPI2.Controllers
if (!MyHelper.checkAuth(Configuration, HttpContext)) return Unauthorized();
//var httpclient = MyHelper.getHttpClient(Configuration);
var httpclient = new WebClient();
string mainurl = Environment.GetEnvironmentVariable("JasperReportServer_MainURL");
string reportsite = Environment.GetEnvironmentVariable("JasperReportServer_reportsite");
string username = Environment.GetEnvironmentVariable("JasperReportServer_username");
string password = Environment.GetEnvironmentVariable("JasperReportServer_password");
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string reportsite = MyHelper.GetConfig(Configuration, "JasperReportServer:reportsite");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
string url = $"{mainurl}{reportsite}/rep_working_type.{model.filetype}?{MyHelper.GetParameterForJasperReport(model)}&j_username={username}&j_password={password}";

View File

@@ -40,8 +40,6 @@ namespace TodoAPI2.Models
{
get
{
string y = "";
return evaluation_group_id_eva_evaluation_group_name + " " + performance_plan_id_eva_performance_plan_fiscal_year;
}
}

View File

@@ -23,20 +23,7 @@ namespace Test01
{
logger.Debug("Init main");
Console.Title = "BKK Application";
var DB_HOST = Environment.GetEnvironmentVariable("DB_HOST");
var DB_PORT = Environment.GetEnvironmentVariable("DB_PORT");
var DB_NAME = Environment.GetEnvironmentVariable("DB_NAME");
var DB_USERNAME = Environment.GetEnvironmentVariable("DB_USERNAME");
var DB_PASSWORD = Environment.GetEnvironmentVariable("DB_PASSWORD");
string SiteInformation_appsite = Environment.GetEnvironmentVariable("SiteInformation_appsite");
string SiteInformation_apisite = Environment.GetEnvironmentVariable("SiteInformation_apisite");
string SiteInformation_mainsite = Environment.GetEnvironmentVariable("SiteInformation_mainsite");
string SiteInformation_modulesite = Environment.GetEnvironmentVariable("SiteInformation_modulesite");
string SiteInformation_sitename = Environment.GetEnvironmentVariable("SiteInformation_sitename");
string SiteInformation_modulename = Environment.GetEnvironmentVariable("SiteInformation_modulename");
string SiteInformation_chatsite = Environment.GetEnvironmentVariable("SiteInformation_chatsite");
Console.Title = "TB320 EVA Application";
var host = BuildWebHost(args);

View File

@@ -62,15 +62,14 @@ namespace Test01
string connectionString = !string.IsNullOrEmpty(DB_HOST) ? envConnectionString : Configuration.GetConnectionString("mainDBConnectionString");
string SiteInformation_appsite = Environment.GetEnvironmentVariable("SiteInformation_appsite");
string SiteInformation_apisite = Environment.GetEnvironmentVariable("SiteInformation_apisite");
string SiteInformation_mainsite = Environment.GetEnvironmentVariable("SiteInformation_mainsite");
string SiteInformation_appsite = MyHelper.GetConfig(Configuration, "SiteInformation:appsite");
string SiteInformation_apisite = MyHelper.GetConfig(Configuration, "SiteInformation:apisite");
string SiteInformation_mainsite = MyHelper.GetConfig(Configuration, "SiteInformation:mainsite");
string SiteInformation_modulesite = Environment.GetEnvironmentVariable("SiteInformation_modulesite");
string SiteInformation_sitename = Environment.GetEnvironmentVariable("SiteInformation_sitename");
string SiteInformation_sitename = MyHelper.GetConfig(Configuration, "SiteInformation:sitename");
string SiteInformation_modulename = Environment.GetEnvironmentVariable("SiteInformation_modulename");
string SiteInformation_chatsite = Environment.GetEnvironmentVariable("SiteInformation_chatsite");
string idUrl = Configuration["IdentityServer:url"];
string apiName = SiteInformation_apisite;
string appsite = SiteInformation_appsite;
@@ -311,7 +310,7 @@ namespace Test01
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
string appsite = Environment.GetEnvironmentVariable("SiteInformation_appsite");
string appsite = MyHelper.GetConfig(Configuration, "SiteInformation:appsite");
#region Error Page
if (env.IsDevelopment())

View File

@@ -45,12 +45,12 @@ namespace TTSW.Utils
}
public static StaticConfigModel GetStaticConfig()
{
StaticConfigModel s = new StaticConfigModel();
StaticConfigModel s = new StaticConfigModel();
string logfile = Configuration["Files:LogFile"];
string rootpath = Configuration["Directories:RootPath"];
string logs = Configuration["Directories:Logs"];
string files = Configuration["Directories:Files"];
string logfile = MyHelper.GetConfig(Configuration, "Files:LogFile");
string rootpath = MyHelper.GetConfig(Configuration, "Directories:RootPath");
string logs = MyHelper.GetConfig(Configuration, "Directories:Logs");
string files = MyHelper.GetConfig(Configuration, "Directories:Files");
if (!Directory.Exists(rootpath)) Directory.CreateDirectory(rootpath);
if (!Directory.Exists(logs)) Directory.CreateDirectory(logs);

View File

@@ -250,10 +250,10 @@ public class MyHelper
public static WebClient getHttpClient(IConfiguration Configuration)
{
string mainurl = Configuration["JasperReportServer:MainURL"];
string loginurl = Configuration["JasperReportServer:LoginURL"];
string username = Configuration["JasperReportServer:username"];
string password = Configuration["JasperReportServer:password"];
string mainurl = MyHelper.GetConfig(Configuration, "JasperReportServer:MainURL");
string loginurl = MyHelper.GetConfig(Configuration, "JasperReportServer:LoginURL");
string username = MyHelper.GetConfig(Configuration, "JasperReportServer:username");
string password = MyHelper.GetConfig(Configuration, "JasperReportServer:password");
WebClient httpclient = new WebClient();
string login_url = $"{loginurl}?j_username={username}&j_password={password}";
@@ -297,4 +297,15 @@ public class MyHelper
return true;
}
public static string GetConfig(IConfiguration Configuration, string variable)
{
var env_var = Environment.GetEnvironmentVariable(variable);
if (string.IsNullOrEmpty(env_var))
{
env_var = Environment.GetEnvironmentVariable(variable.Replace(":", "_"));
}
string var = !string.IsNullOrEmpty(env_var) ? env_var : Configuration[variable];
return var;
}
}

View File

@@ -35,7 +35,7 @@ namespace TodoAPI2.Controllers
Response.Cookies.Delete("user_id");
Response.Cookies.Delete("emp_id");
string mainsite = Configuration["SiteInformation:mainsite"];
string mainsite = MyHelper.GetConfig(Configuration, "SiteInformation:mainsite");
return Redirect(mainsite + "/logout");
}

View File

@@ -8,12 +8,8 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="
@Environment.GetEnvironmentVariable("JasperReportServer_MainURL")
@Environment.GetEnvironmentVariable("JasperReportServer_reportsite")
@Environment.GetEnvironmentVariable("JasperReportServer_username")
">
<title>@Environment.GetEnvironmentVariable("SiteInformation_sitename")</title>
<meta name="description" content="">
<title>@MyHelper.GetConfig(Configuration, "SiteInformation:sitename")</title>
<!-- Bootstrap core CSS -->
<link href="~/BackendScript/css/bootstrap.min.css" rel="stylesheet">
@@ -86,26 +82,26 @@
<ul class="dropdown-menu dropdown-menu-right">
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/Organization/workFlowTask');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/Organization/workFlowTask');">
<i class="fa fa-tasks" style="font-size: 14px"></i>
งานของคุณ
</a>
</li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/profile/activity_logs');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/profile/activity_logs');">
<i class="fa fa-history" style="font-size: 14px"></i>
ประวัติการใช้งาน
</a>
</li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/profile');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/profile');">
<i class="fa fa-user" style="font-size: 14px"></i>
ตั้งค่าบัญชี
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_appsite")/home/logout');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")/home/logout');">
<i class="fa fa-power-off" style="font-size: 14px"></i>
ออกจากระบบ
</a>
@@ -122,7 +118,7 @@
<!-- sidebar menu start-->
<ul class="sidebar-menu" id="nav-accordion">
<div class="home-menu">
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');" class="desktop-hide">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');" class="desktop-hide">
<div class="sidebar-head">หน้าแรก</div>
</a>
<div class="sidebar-toggle-box">
@@ -131,7 +127,7 @@
</div>
<li class="sub-menu">
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">
<i class="fa fa-sign-out"></i>
<span>กลับ</span>
</a>
@@ -184,8 +180,8 @@
<script src="~/BackendScript/js/loadingoverlay.js"></script>
<script>
var appsite = "@Environment.GetEnvironmentVariable("SiteInformation_appsite")";
var apisite = "@Environment.GetEnvironmentVariable("SiteInformation_apisite")";
var appsite = "@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")";
var apisite = "@MyHelper.GetConfig(Configuration, "SiteInformation:apisite")";
</script>
<script src="~/js/coregen.js"></script>

View File

@@ -6,7 +6,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@Environment.GetEnvironmentVariable("SiteInformation_sitename")</title>
<title>@MyHelper.GetConfig(Configuration, "SiteInformation:sitename")</title>
<!-- Bootstrap core CSS -->
<link href="~/BackendScript/css/bootstrap.min.css" rel="stylesheet">
@@ -80,26 +80,26 @@
<ul class="dropdown-menu dropdown-menu-right">
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/Organization/workFlowTask');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/Organization/workFlowTask');">
<i class="fa fa-tasks" style="font-size: 14px"></i>
งานของคุณ
</a>
</li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/profile/activity_logs');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/profile/activity_logs');">
<i class="fa fa-history" style="font-size: 14px"></i>
ประวัติการใช้งาน
</a>
</li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")/profile');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")/profile');">
<i class="fa fa-user" style="font-size: 14px"></i>
ตั้งค่าบัญชี
</a>
</li>
<li class="dropdown-divider"></li>
<li>
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_appsite")/home/logout');">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")/home/logout');">
<i class="fa fa-power-off" style="font-size: 14px"></i>
ออกจากระบบ
</a>
@@ -116,7 +116,7 @@
<div id="sidebar" class="nav-collapse ">
<ul class="sidebar-menu" id="nav-accordion">
<div class="home-menu">
<a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');" class="desktop-hide">
<a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');" class="desktop-hide">
<div class="sidebar-head">หน้าแรก</div>
</a>
<div class="sidebar-toggle-box">
@@ -175,8 +175,8 @@
<script src="~/BackendScript/js/loadingoverlay.js"></script>
<script>
var appsite = "@Environment.GetEnvironmentVariable("SiteInformation_appsite")";
var apisite = "@Environment.GetEnvironmentVariable("SiteInformation_apisite")";
var appsite = "@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")";
var apisite = "@MyHelper.GetConfig(Configuration, "SiteInformation:apisite")";
</script>
<script src="~/js/coregen.js"></script>

View File

@@ -72,8 +72,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ปรับเลื่อนค่าตอบแทน</li>
</ol>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ปรับเลื่อนค่าตอบแทน</li>
</ol>
</div>

View File

@@ -70,8 +70,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ปรับเลื่อนเงินโควต้าพิเศษ</li>
</ol>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ปรับเลื่อนเงินโควต้าพิเศษ</li>
</ol>
</div>

View File

@@ -79,8 +79,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">สร้างแบบประเมิน</li>
</ol>
</div>

View File

@@ -52,8 +52,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดผู้รับการประเมินและผู้ประเมินเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">สรุปผลการประเมิน</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">
จัดทำข้อตกลงเพื่อประเมินผลเพื่อปรับเลื่อนเงินเดือน
</li>

View File

@@ -202,8 +202,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">การประเมินผลการปฏิบัติงานของพนักงานเนติบัณฑิตยสภา</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ประเมินผลเพื่อปรับเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ประเมินผลเพื่อปรับเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -63,8 +63,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ประเมินผลเพื่อปรับเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">eva_create_evaluation_detail_status</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">eva_create_evaluation_detail_summary1</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">eva_create_evaluation_detail_summary2</li>
</ol>
</div>

View File

@@ -50,8 +50,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนด กลุ่มการประเมิน</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดกลุ่มการประเมิน</li>
</ol>
</div>

View File

@@ -56,8 +56,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">eva_evaluation_group_detail</li>
</ol>
</div>

View File

@@ -59,8 +59,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดร้อยละที่ได้เลื่อน</li>
</ol>
</div>

View File

@@ -69,8 +69,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดร้อยละที่ได้เลื่อน</li>
</ol>
</div>

View File

@@ -61,8 +61,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดระดับการประเมิน</li>
</ol>
</div>

View File

@@ -50,8 +50,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดแผนการประเมินเพื่อปรับเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -69,8 +69,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">กำหนดแผนการประเมินเพื่อปรับเลื่อนเงินเดือน</li>
</ol>
</div>

View File

@@ -78,8 +78,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">eva_performance_plan_detail</li>
</ol>
</div>

View File

@@ -78,8 +78,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Environment.GetEnvironmentVariable("SiteInformation_mainsite")@Environment.GetEnvironmentVariable("SiteInformation_appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">บัญชีเงินเดือนขั้นต่ำขั้นสูงของพนักงานเนติบัณฑิตยสภา</li>
</ol>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ค้นหา รายชื่อบุคคลากร</li>
</ol>
</div>

View File

@@ -13,8 +13,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ค้นหา รายชื่อบุคคลากร</li>
</ol>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
</ol>
</div>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">รายงานใหม่ของ HR ในระบบ TB320</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">รายงานใหม่ของ HR ในระบบ TB320</a></li>
</ol>
</div>
</div>

View File

@@ -14,8 +14,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">ทดสอบเข้าสู่ระบบ</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">รายงานบัญชีรายละเอียดขั้นเงินเดือนและเงินเพิ่มการครองชีพชั่วคราวของพนักงาน</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">รายงานประวัติการเลื่อนขั้นเงินเดือนของพนักงาน</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@Environment.GetEnvironmentVariable("SiteInformation_modulename")</a></li>
<li class="breadcrumb-item active">รายงานโครงสร้างของขั้นเงินเดือน</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานบุคคลในครอบครัว</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบบริหารและควบคุมเวลาการทำงานของพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบบริหารและควบคุมเวลาการทำงานของพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานสรุปวันลาพักผ่อนประจำปี</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบใบลา</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบใบลา</a></li>
<li class="breadcrumb-item active">รายงานสรุปวันลา</li>
</ol>
</div>

View File

@@ -7,13 +7,13 @@
<div class="row page-title">
<div class="col-md-5">
<div class="page-title">
@Configuration["SiteInformation:modulename"]
@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")
</div>
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:mainsite"]');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">@Configuration["SiteInformation:modulename"]</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")</a></li>
<li class="breadcrumb-item active">รายงานสรุปการลา ขาดงาน มาสาย ของพนักงานเนติบัณฑิตยสภา</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานตำแหน่งและเงินเดือน</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานประวัติการอบรม/สัมนา/ดูงาน/ประชุม</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบทะเบียนประวัติพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานประวัติการศึกษา</li>
</ol>
</div>

View File

@@ -12,8 +12,8 @@
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Environment.GetEnvironmentVariable("SiteInformation_mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@Configuration["SiteInformation:modulesite"]');">ระบบบริหารและควบคุมเวลาการทำงานของพนักงาน</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")');">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="javascript:window_open_from_root('MyHelper.GetConfig(Configuration, "SiteInformation:modulesite")');">ระบบบริหารและควบคุมเวลาการทำงานของพนักงาน</a></li>
<li class="breadcrumb-item active">รายงานประเภทการทำงานของพนักงาน</li>
</ol>
</div>

View File

@@ -9,13 +9,13 @@
<div class="row page-title">
<div class="col-md-5">
<div class="page-title">
@Configuration["SiteInformation:modulename"]
@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")
</div>
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]@Configuration["SiteInformation:appsite"]">@Configuration["SiteInformation:modulename"]</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")</a></li>
<li class="breadcrumb-item active">ค้นหารายชื่อ บุคคลากร</li>
</ol>
</div>

View File

@@ -7,13 +7,13 @@
<div class="row page-title">
<div class="col-md-5">
<div class="page-title">
@Configuration["SiteInformation:modulename"]
@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")
</div>
</div>
<div class="col-md-7">
<ol class="breadcrumb" style="">
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@Configuration["SiteInformation:mainsite"]@Configuration["SiteInformation:appsite"]">@Configuration["SiteInformation:modulename"]</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")">หน้าแรก</a></li>
<li class="breadcrumb-item "><a href="@MyHelper.GetConfig(Configuration, "SiteInformation:mainsite")@MyHelper.GetConfig(Configuration, "SiteInformation:appsite")">@MyHelper.GetConfig(Configuration, "SiteInformation:modulename")</a></li>
<li class="breadcrumb-item active">ค้นหา รายชื่อบุคคลากร</li>
</ol>
</div>

View File

@@ -39,8 +39,7 @@
"mainsite": "http://tb320dev.zd.co.th",
"modulesite": "http://tb320dev.zd.co.th/menu/evaluation",
"sitename": "เนติบัณฑิตยสภา ในพระบรมราชูปถัมภ์",
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน",
"chatsite": "http://chat.rmutto.ac.th"
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน"
}
}

View File

@@ -39,8 +39,7 @@
"mainsite": "http://tb320.zd.co.th",
"modulesite": "http://tb320.zd.co.th/menu/evaluation",
"sitename": "เนติบัณฑิตยสภา ในพระบรมราชูปถัมภ์",
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน",
"chatsite": ""
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน"
}
}

View File

@@ -39,8 +39,7 @@
"mainsite": "http://tb320dev.zd.co.th",
"modulesite": "http://tb320dev.zd.co.th/menu/evaluation",
"sitename": "เนติบัณฑิตยสภา ในพระบรมราชูปถัมภ์",
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน",
"chatsite": "http://chat.rmutto.ac.th"
"modulename": "ระบบประวัติเงินเดือนและการเลื่อนเงินเดือน"
}
}

View File

@@ -71,16 +71,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_normalController.eva_adjust_postponement_detail_normal_report(TodoAPI2.Models.eva_adjust_postponement_detail_normalReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_normalController.Insert(TodoAPI2.Models.eva_adjust_postponement_detail_normalInputModel)">
<summary>
Create new item
@@ -178,16 +168,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_normal_02Controller.eva_adjust_postponement_detail_normal_02_report(TodoAPI2.Models.eva_adjust_postponement_detail_normal_02ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_normal_02Controller.Insert(TodoAPI2.Models.eva_adjust_postponement_detail_normal_02InputModel)">
<summary>
Create new item
@@ -285,16 +265,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_quotaController.eva_adjust_postponement_detail_quota_report(TodoAPI2.Models.eva_adjust_postponement_detail_quotaReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_quotaController.Insert(TodoAPI2.Models.eva_adjust_postponement_detail_quotaInputModel)">
<summary>
Create new item
@@ -407,16 +377,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_quota_02Controller.eva_adjust_postponement_detail_quota_02_report(TodoAPI2.Models.eva_adjust_postponement_detail_quota_02ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_detail_quota_02Controller.Insert(TodoAPI2.Models.eva_adjust_postponement_detail_quota_02InputModel)">
<summary>
Create new item
@@ -514,16 +474,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_normalController.eva_adjust_postponement_normal_report(TodoAPI2.Models.eva_adjust_postponement_normalReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_normalController.Insert(TodoAPI2.Models.eva_adjust_postponement_normalInputModel)">
<summary>
Create new item
@@ -621,16 +571,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_quotaController.eva_adjust_postponement_quota_report(TodoAPI2.Models.eva_adjust_postponement_quotaReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_adjust_postponement_quotaController.Insert(TodoAPI2.Models.eva_adjust_postponement_quotaInputModel)">
<summary>
Create new item
@@ -728,16 +668,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluationController.eva_create_evaluation_report(TodoAPI2.Models.eva_create_evaluationReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluationController.Insert(TodoAPI2.Models.eva_create_evaluationInputModel)">
<summary>
Create new item
@@ -835,16 +765,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detailController.eva_create_evaluation_detail_report(TodoAPI2.Models.eva_create_evaluation_detailReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detailController.Insert(TodoAPI2.Models.eva_create_evaluation_detailInputModel)">
<summary>
Create new item
@@ -956,16 +876,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_agreementController.eva_create_evaluation_detail_agreement_report(TodoAPI2.Models.eva_create_evaluation_detail_agreementReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_processController.#ctor(Microsoft.Extensions.Logging.ILogger{TodoAPI2.Controllers.eva_create_evaluation_detail_processController},TodoAPI2.Models.Iexternal_employeeService,TodoAPI2.Models.Ieva_create_evaluation_detail_processService,Microsoft.Extensions.Configuration.IConfiguration)">
<summary>
Default constructure for dependency injection
@@ -1063,16 +973,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review01Controller.eva_create_evaluation_detail_review01_report(TodoAPI2.Models.eva_create_evaluation_detail_review01ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review01Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_review01InputModel)">
<summary>
Create new item
@@ -1170,16 +1070,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review02Controller.eva_create_evaluation_detail_review02_report(TodoAPI2.Models.eva_create_evaluation_detail_review02ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review02Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_review02InputModel)">
<summary>
Create new item
@@ -1277,16 +1167,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review03Controller.eva_create_evaluation_detail_review03_report(TodoAPI2.Models.eva_create_evaluation_detail_review03ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review03Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_review03InputModel)">
<summary>
Create new item
@@ -1384,16 +1264,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review04Controller.eva_create_evaluation_detail_review04_report(TodoAPI2.Models.eva_create_evaluation_detail_review04ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_review04Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_review04InputModel)">
<summary>
Create new item
@@ -1491,16 +1361,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_statusController.eva_create_evaluation_detail_status_report(TodoAPI2.Models.eva_create_evaluation_detail_statusReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_statusController.Insert(TodoAPI2.Models.eva_create_evaluation_detail_statusInputModel)">
<summary>
Create new item
@@ -1598,16 +1458,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_summary1Controller.eva_create_evaluation_detail_summary1_report(TodoAPI2.Models.eva_create_evaluation_detail_summary1ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_summary1Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_summary1InputModel)">
<summary>
Create new item
@@ -1705,16 +1555,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_summary2Controller.eva_create_evaluation_detail_summary2_report(TodoAPI2.Models.eva_create_evaluation_detail_summary2ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_create_evaluation_detail_summary2Controller.Insert(TodoAPI2.Models.eva_create_evaluation_detail_summary2InputModel)">
<summary>
Create new item
@@ -1812,16 +1652,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievementController.eva_evaluation_achievement_report(TodoAPI2.Models.eva_evaluation_achievementReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievementController.Insert(TodoAPI2.Models.eva_evaluation_achievementInputModel)">
<summary>
Create new item
@@ -1919,16 +1749,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievement_process2Controller.eva_evaluation_achievement_process2_report(TodoAPI2.Models.eva_evaluation_achievement_process2ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievement_process2Controller.Insert(TodoAPI2.Models.eva_evaluation_achievement_process2InputModel)">
<summary>
Create new item
@@ -2026,16 +1846,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievement_processController.eva_evaluation_achievement_process_report(TodoAPI2.Models.eva_evaluation_achievement_processReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_achievement_processController.Insert(TodoAPI2.Models.eva_evaluation_achievement_processInputModel)">
<summary>
Create new item
@@ -2133,16 +1943,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behaviorController.eva_evaluation_behavior_report(TodoAPI2.Models.eva_evaluation_behaviorReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behaviorController.Insert(TodoAPI2.Models.eva_evaluation_behaviorInputModel)">
<summary>
Create new item
@@ -2240,16 +2040,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behavior_process2Controller.eva_evaluation_behavior_process2_report(TodoAPI2.Models.eva_evaluation_behavior_process2ReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behavior_process2Controller.Insert(TodoAPI2.Models.eva_evaluation_behavior_process2InputModel)">
<summary>
Create new item
@@ -2347,16 +2137,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behavior_processController.eva_evaluation_behavior_process_report(TodoAPI2.Models.eva_evaluation_behavior_processReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_behavior_processController.Insert(TodoAPI2.Models.eva_evaluation_behavior_processInputModel)">
<summary>
Create new item
@@ -2454,16 +2234,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_groupController.eva_evaluation_group_report(TodoAPI2.Models.eva_evaluation_groupReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_groupController.Insert(TodoAPI2.Models.eva_evaluation_groupInputModel)">
<summary>
Create new item
@@ -2561,16 +2331,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_group_detailController.eva_evaluation_group_detail_report(TodoAPI2.Models.eva_evaluation_group_detailReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_evaluation_group_detailController.Insert(TodoAPI2.Models.eva_evaluation_group_detailInputModel)">
<summary>
Create new item
@@ -2875,16 +2635,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_level_scoreController.eva_level_score_report(TodoAPI2.Models.eva_level_scoreReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_level_scoreController.Insert(TodoAPI2.Models.eva_level_scoreInputModel)">
<summary>
Create new item
@@ -2982,16 +2732,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_level_score_basicController.eva_level_score_basic_report(TodoAPI2.Models.eva_level_score_basicReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_level_score_basicController.Insert(TodoAPI2.Models.eva_level_score_basicInputModel)">
<summary>
Create new item
@@ -3089,16 +2829,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_performance_planController.eva_performance_plan_report(TodoAPI2.Models.eva_performance_planReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_performance_planController.Insert(TodoAPI2.Models.eva_performance_planInputModel)">
<summary>
Create new item
@@ -3196,16 +2926,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_performance_plan_detailController.eva_performance_plan_detail_report(TodoAPI2.Models.eva_performance_plan_detailReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_performance_plan_detailController.Insert(TodoAPI2.Models.eva_performance_plan_detailInputModel)">
<summary>
Create new item
@@ -3303,16 +3023,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_promoted_percentageController.eva_promoted_percentage_report(TodoAPI2.Models.eva_promoted_percentageReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_promoted_percentageController.Insert(TodoAPI2.Models.eva_promoted_percentageInputModel)">
<summary>
Create new item
@@ -3410,16 +3120,6 @@
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_salary_cylinderController.eva_salary_cylinder_report(TodoAPI2.Models.eva_salary_cylinderReportRequestModel)">
<summary>
Download Report
</summary>
<remarks>
</remarks>
<returns>Return list of items by specifced keyword</returns>
<response code="200">Returns the item</response>
<response code="500">Error Occurred</response>
</member>
<member name="M:TodoAPI2.Controllers.eva_salary_cylinderController.Insert(TodoAPI2.Models.eva_salary_cylinderInputModel)">
<summary>
Create new item