From fb4e9bc8719dc69f5943b7ffe2fdc27322f6bb9b Mon Sep 17 00:00:00 2001 From: xiaochanghai Date: Tue, 7 Jan 2025 11:46:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8B=9B=E8=81=98=E5=AE=8C=E6=88=90=E7=BB=9F?= =?UTF-8?q?=E8=AE=A1=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controllers/Ghrh/Ghrh_HumanRequestController.cs | 2 +- Tiobon.Core.Services/CommonServices.cs | 12 ++++++++++++ Tiobon.Core.Services/Ghre/Ghre_CourseServices.cs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) 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