From fe02f176b512a9d6a4e12437d929e04e99bb7567 Mon Sep 17 00:00:00 2001
From: zs <zhoushuai@zbooksoft.com>
Date: 星期三, 04 二月 2026 16:17:26 +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