This commit is contained in:
@@ -27,7 +27,7 @@ namespace rmutr_report.Controllers
|
||||
{
|
||||
this._setting = setting;
|
||||
}
|
||||
|
||||
[SwaggerOperation("ข้อมูลจำนวนบุคลากร")]
|
||||
[HttpPost, Route("reports/personnel_summary/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetHrReport([FromRoute] string type, [FromBody] personnel_summary personnel_summarys)
|
||||
@@ -84,7 +84,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จำนวนบุคลากร สายวิชาการ และ สายสนับสนุน")]
|
||||
[HttpPost, Route("reports/man_power/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetManReport([FromRoute] string type, [FromBody] List<man_power> man_powers)
|
||||
@@ -128,7 +128,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จำนวนบุคลากร สายสนับสนุน")]
|
||||
[HttpPost, Route("reports/data_line_support/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetDataLineReport([FromRoute] string type, [FromBody] data_line_support data_line_supports)
|
||||
@@ -172,7 +172,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จำนวนบุคลากร สายวิชาการ จำแนกตามอัตรา มีคนครอง และอัตราว่าง")]
|
||||
[HttpPost, Route("reports/data_line_academic/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetDataLineAcaReport([FromRoute] string type,
|
||||
@@ -217,7 +217,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จำนวนบุคลากร สายวิชาการ จำแนกตามอัตรา มีคนครอง และอัตราว่าง")]
|
||||
[HttpPost, Route("reports/qualifications_teacher/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetQualificationsTeacherReport([FromRoute] string type,
|
||||
@@ -262,7 +262,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("จำนวนบุคลากร สายวิชาการ ตามตำแหน่งทางวิชาการ")]
|
||||
[HttpPost, Route("reports/academic_position/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetAcademicPositionReport([FromRoute] string type,
|
||||
@@ -307,7 +307,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("หนังสือแจ้งผลการเลื่อนค่าตอบแทนพนักงานราชการ")]
|
||||
[HttpPost, Route("reports/postponement_compensation/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPostponementCompensationReport([FromRoute] string type,
|
||||
@@ -494,7 +494,7 @@ namespace rmutr_report.Controllers
|
||||
|
||||
return Ok();
|
||||
}
|
||||
|
||||
[SwaggerOperation("พนักงานราชการ")]
|
||||
[HttpPost, Route("reports/personnel_salary_government_employee/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPersonSalaryReport([FromRoute] string type,
|
||||
@@ -1012,7 +1012,7 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[SwaggerOperation("ข้าราชการ")]
|
||||
[HttpPost, Route("reports/personnel_salary_government/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPersonSalaryGovernmentReport([FromRoute] string type,
|
||||
@@ -2105,7 +2105,7 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[SwaggerOperation("ลูกจ้างประจํา")]
|
||||
[HttpPost, Route("reports/personnel_salary_permanent/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPersonSalaryReport([FromRoute] string type,
|
||||
@@ -2796,7 +2796,7 @@ namespace rmutr_report.Controllers
|
||||
"personnel_permanent_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("ลูกจ้างชั่วคราว")]
|
||||
[HttpPost, Route("reports/personnel_salary_temporary/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetTemporaryReport([FromRoute] string type,
|
||||
@@ -3236,7 +3236,7 @@ namespace rmutr_report.Controllers
|
||||
"personnel_temporary_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("พนักงานมหาวิทยาลัย")]
|
||||
[HttpPost, Route("reports/personnel_salary_university/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPersonSalaryUniversityReport([FromRoute] string type,
|
||||
@@ -4130,7 +4130,7 @@ namespace rmutr_report.Controllers
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
[SwaggerOperation("ค่าตอบแทนพนักงานราชการ")]
|
||||
[HttpPost, Route("reports/set_personnel_budget/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSetPersonBudgetReport([FromRoute] string type,
|
||||
@@ -4808,7 +4808,7 @@ namespace rmutr_report.Controllers
|
||||
"personnel_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("การตั้งงบประมาณค่าใช้จ่ายบุคลากร")]
|
||||
[HttpPost, Route("reports/personnel_expense_budget/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSetPersonExBudgetReport([FromRoute] string type,
|
||||
@@ -6214,7 +6214,7 @@ namespace rmutr_report.Controllers
|
||||
"personnel_expense_budget" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("บุคลากร งบประมาณแผ่นดิน")]
|
||||
[HttpPost, Route("reports/national_budget/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetNationalBudgetReport([FromRoute] string type,
|
||||
@@ -6479,7 +6479,7 @@ namespace rmutr_report.Controllers
|
||||
"national_budget_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("งบประมาณ MTEF")]
|
||||
[HttpPost, Route("reports/mtef_personnel/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetMtefReport([FromRoute] string type,
|
||||
@@ -6862,7 +6862,7 @@ namespace rmutr_report.Controllers
|
||||
"mtef_personnel_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("ข้อมูลการตั้งงบประมาณค่าใช้จ่ายบุคลากร")]
|
||||
[HttpPost, Route("reports/set_personnel_budget_university/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSetPersonUniBudgetReport([FromRoute] string type,
|
||||
@@ -8817,7 +8817,7 @@ namespace rmutr_report.Controllers
|
||||
"set_personnel_budget_university_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("การตั้งงบประมาณค่าใช้จ่ายบุคลากร ของลูกจ้างประจำ")]
|
||||
[HttpPost, Route("reports/set_personnel_budget_permanent/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetSetPersonPermanentReport([FromRoute] string type,
|
||||
@@ -9482,7 +9482,7 @@ namespace rmutr_report.Controllers
|
||||
"set_personnel_budget_permanent_" + date + ".xlsx");
|
||||
}
|
||||
}
|
||||
|
||||
[SwaggerOperation("รายละเอียดข้อเสนอวงเงิน, สรุปข้อเสนอวงเงิน")]
|
||||
[HttpPost, Route("reports/budget_expenditure_proposal/{type}")]
|
||||
[ApiExplorerSettings(GroupName = "reports")]
|
||||
public IActionResult GetPersonDetailReport([FromRoute] string type,
|
||||
|
||||
Reference in New Issue
Block a user