diff --git a/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_HumanRequestController.cs b/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_HumanRequestController.cs index 342fd4bf..e6bb2bdf 100644 --- a/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_HumanRequestController.cs +++ b/Tiobon.Core.Api/Controllers/Ghrh/Ghrh_HumanRequestController.cs @@ -74,7 +74,7 @@ public class Ghrh_HumanRequestController : BaseController> ExportCompleteExcel([FromBody] QueryExport body) { return await _service.ExportCompleteExcel(body); diff --git a/Tiobon.Core.Services/CommonServices.cs b/Tiobon.Core.Services/CommonServices.cs index 69290ff1..ff526fda 100644 --- a/Tiobon.Core.Services/CommonServices.cs +++ b/Tiobon.Core.Services/CommonServices.cs @@ -1918,6 +1918,18 @@ public partial class CommonServices : BaseServices>, ICommon result.DT_Procedure.ExportExcel = "/api/Ghrh_Resume/ExportHireExcel"; break; + case "F_InterviewCompleteStatistical": + toolbar = result.JM_PageControlT1.Toolbar.Where(x => x.fnKey == "NewYN").FirstOrDefault(); + if (toolbar != null) toolbar.fnKey = "TBD1YN"; + toolbar = result.JM_PageControlT1.Toolbar.Where(x => x.fnKey == "UpdateYN").FirstOrDefault(); + if (toolbar != null) toolbar.fnKey = "TBD2YN"; + toolbar = result.JM_PageControlT1.Toolbar.Where(x => x.fnKey == "DetailYN").FirstOrDefault(); + if (toolbar != null) toolbar.fnKey = "TBD3YN"; + toolbar = result.JM_PageControlT1.Toolbar.Where(x => x.fnKey == "CopyYN").FirstOrDefault(); + if (toolbar != null) toolbar.fnKey = "TBD4YN"; + + result.DT_Procedure.ExportExcel = "/api/Ghrh_HumanRequest/ExportCompleteExcel"; + break; } #endregion diff --git a/Tiobon.Core.Services/Ghre/Ghre_CourseServices.cs b/Tiobon.Core.Services/Ghre/Ghre_CourseServices.cs index e500cc0c..2f4c56f3 100644 --- a/Tiobon.Core.Services/Ghre/Ghre_CourseServices.cs +++ b/Tiobon.Core.Services/Ghre/Ghre_CourseServices.cs @@ -49,7 +49,7 @@ public class Ghre_CourseServices : BaseServices