| | |
| | | <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> |
| | |
| | | |
| | | 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", |
| | |
| | | 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, |