From 2b543ca35ad4697e31225829be13e375cd2b0259 Mon Sep 17 00:00:00 2001
From: zs <zhoushuai@zbooksoft.com>
Date: 星期三, 04 二月 2026 16:46:00 +0800
Subject: [PATCH] 成果资料退回后需要删除对应附件

---
 src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp |   37 +++++++++++++++++++++++--------------
 1 files changed, 23 insertions(+), 14 deletions(-)

diff --git a/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp b/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
index 92dc860..8ef56b9 100644
--- a/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
+++ b/src/main/webapp/WEB-INF/view/gh/utlStatistics/utlStatisticsByDept.jsp
@@ -73,6 +73,11 @@
             <li>閮ㄩ棬鍚嶇О锛� <input class="easyui-textbox" id="deptName"
                                  style="width:150px; height: 24px;"/>
             </li>
+            <li>璧锋鏃堕棿锛�
+                <input class="easyui-datebox" id="startDate" style="width:150px;height:24px"/>
+                -
+                <input class="easyui-datebox" id="endDate" style="width:150px;height:24px"/>
+            </li>
             <li class="statistics_btn_row" style="display: flex;align-items:center;height:24px">
                 <button class="pt-btn pt-btn-purple" onclick="utilizationStatistics()"><i class="fa fa-bar-chart"></i>寮�濮嬬粺璁�
                 </button>
@@ -134,9 +139,11 @@
 
         var wh = $(window).height();
         var deptName = $("#deptName").numberbox("getValue");
+        var startDate = $("#startDate").datebox("getValue");
+        var endDate = $("#endDate").datebox("getValue");
 
 
-        var url = "utlStatistics/getUtlStatisticsByDept?deptName=" + deptName;
+        var url = "utlStatistics/getUtlStatisticsByDept?deptName=" + deptName + "&startData=" + startDate + "&endData=" + endDate;
         $("#tb_utilizationForm").datagrid({
             rownumbers: true,
             method: "get",
@@ -167,19 +174,21 @@
                     field: 'borrowItemCount',
                     title: '鍊熼槄浠舵暟',
                     width: 100,
-                }, {
-                    field: 'process',
-                    title: '鍔犲伐浜烘',
-                    width: 100,
-                }, {
-                    field: 'processFileCount',
-                    title: '鍔犲伐浠芥暟',
-                    width: 100,
-                }, {
-                    field: 'processItemCount',
-                    title: '鍔犲伐浠舵暟',
-                    width: 100,
-                }, {
+                },
+                // {
+                //     field: 'process',
+                //     title: '鍔犲伐浜烘',
+                //     width: 100,
+                // }, {
+                //     field: 'processFileCount',
+                //     title: '鍔犲伐浠芥暟',
+                //     width: 100,
+                // }, {
+                //     field: 'processItemCount',
+                //     title: '鍔犲伐浠舵暟',
+                //     width: 100,
+                // },
+                {
                     field: 'physical',
                     title: '瀹炵墿鍒╃敤浜烘',
                     width: 100,

--
Gitblit v1.9.1