自动化立体仓库 - WMS系统
skyouc
5 小时以前 9147b27773228d738e0d78d7299b37e11c0fb625
no message
2个文件已修改
14 ■■■■ 已修改文件
src/main/resources/mapper/ViewStayTimeMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/report/stayTime.js 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/ViewStayTimeMapper.xml
@@ -42,7 +42,13 @@
<!-- 分页查询所有信息 -->
<select id="queryViewStayTimeList" parameterType="com.zy.asrs.entity.ViewStayTimeBean" resultType="com.zy.asrs.entity.ViewStayTimeBean">
    select
    *
        a.*,
        loc_no AS locNo,
        supp_code AS suppCode,
        appe_time AS appeTime,
        modi_time AS modiTime,
        stay_time AS stayTime,
        box_type1 AS boxType1
    from (
        select
        ROW_NUMBER() over (order by stay_time desc) as row
src/main/webapp/static/js/report/stayTime.js
@@ -1,9 +1,9 @@
var pageCurr;
function getCol() {
    var cols = [
        {field: 'appeTime$', title: '入库时间', align: 'center', width: 200}
        ,{field: 'stay_time', align: 'center',title: '滞留天数'}
        ,{field: 'loc_no', align: 'center',title: '库位号'}
        {field: 'appeTime', title: '入库时间', align: 'center', width: 200}
        ,{field: 'stayTime', align: 'center',title: '滞留天数'}
        ,{field: 'locNo', align: 'center',title: '库位号'}
    ];
    cols.push.apply(cols, detlCols);
    return cols;