自动化立体仓库 - WMS系统
lty
3 天以前 8e943b7104561c3b14cf223016698709c5ade4b5
src/main/webapp/static/js/report/reportStockUse.js
@@ -14,19 +14,13 @@
        url: baseUrl+'/report/viewStockUseList.action',
        page: true,
        limit: 16,
        limits: [16, 30, 50, 100, 200, 500],
        toolbar: '#toolbar',
        cellMinWidth: 50,
        cols: [[
            {type: 'checkbox', fixed: 'left'}
            ,{field: 'row1', title: '钢架号', sort: true, align: 'center'}
            ,{field: 'total_qty', align: 'center',title: '库位总数'}
            ,{field: 'full_qty', align: 'center',title: '在库数量'}
            ,{field: 'null_qty', align: 'center',title: '空库位数量'}
            ,{field: 'forbid_qty', align: 'center',title: '禁用库位数量'}
            ,{field: 'empty_qty', align: 'center',title: '空容器数量'}
            ,{field: 'full_rate', align: 'center',title: '在库率(%)'}
            ,{field: 'occ_rate', align: 'center',title: '使用率(%)'}
        ]],
        cols: getCols(),
        text: {
            none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '暂无相关数据'
        },
        request: {
            pageName: 'curr',
            pageSize: 'limit'
@@ -44,10 +38,12 @@
        },
        done: function(res, curr, count) {
            if (res.code === 403) {
                top.location.href = "/";
                top.location.href = baseUrl+"/";
            }
            pageCurr=curr;
            limit();
            I18n.updatePage();
            setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
        }
    });
@@ -66,10 +62,44 @@
            },
            done: function (res, curr, count) {
                if (res.code === 403) {
                    top.location.href = "/";
                    top.location.href = baseUrl+"/";
                }
                pageCurr=curr;
                limit();
                I18n.updatePage();
                setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
            }
        });
    });
    function getCols() {
        return [[
            // {type: 'checkbox', fixed: 'left'}
            {field: 'row1', title: I18n.t('rack_no'), sort: true, align: 'center'}
            ,{field: 'total_qty', align: 'center',title: I18n.t('total_loc_qty')}
            ,{field: 'full_qty', align: 'center',title: I18n.t('stock_qty')}
            ,{field: 'null_qty', align: 'center',title: I18n.t('empty_loc_qty')}
            ,{field: 'forbid_qty', align: 'center',title: I18n.t('disabled_loc_qty')}
            ,{field: 'empty_qty', align: 'center',title: I18n.t('empty_container_qty')}
            ,{field: 'full_rate', align: 'center',title: I18n.t('stock_rate')}
            ,{field: 'occ_rate', align: 'center',title: I18n.t('usage_rate')}
        ]];
    }
    $(document).on('i18n:languageChanged', function () {
        I18n.updatePage();
        tableIns.reload({
            cols: getCols(),
            text: {
                none: typeof I18n !== 'undefined' ? I18n.t('no_data') : '暂无相关数据'
            },
            done: function (res, curr, count) {
                if (res.code === 403) {
                    top.location.href = baseUrl+"/";
                }
                pageCurr=curr;
                limit();
                setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
            }
        });
    });
@@ -79,7 +109,7 @@
        var checkStatus = table.checkStatus(obj.config.id);
        switch(obj.event) {
            case 'exportData':
                layer.confirm('确定导出Excel吗', function(){
                layer.confirm('确定导出Excel吗', {shadeClose: true}, function(){
                    var titles=[];
                    var fields=[];
                    obj.config.cols[0].map(function (col) {
@@ -103,9 +133,9 @@
                            if (res.code === 200) {
                                table.exportFile(titles,res.data,'xls');
                            } else if (res.code === 403) {
                                top.location.href = "/";
                                top.location.href = baseUrl+"/";
                            } else {
                                layer.msg(res.msg)
                                layer.msg(typeof I18n !== 'undefined' ? I18n.t(res.msg) : res.msg, {icon: 2})
                            }
                        }
                    });
@@ -133,7 +163,7 @@
        },
        done: function (res, curr, count) {
            if (res.code === 403) {
                top.location.href = "/";
                top.location.href = baseUrl+"/";
            }
            pageCurr=curr;
            if (res.data.length === 0 && count !== 0) {
@@ -146,6 +176,7 @@
                pageCurr -= 1;
            }
            limit(child);
            setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
        }
    });
}