自动化立体仓库 - WMS系统
lty
7 天以前 539a56279625242c497b4b4093f2defbb9d80334
src/main/webapp/static/js/report/reportStockUse.js
@@ -17,17 +17,10 @@
        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'
@@ -49,6 +42,8 @@
            }
            pageCurr=curr;
            limit();
            I18n.updatePage();
            setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
        }
    });
@@ -71,6 +66,40 @@
                }
                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);
            }
        });
    });
@@ -147,6 +176,7 @@
                pageCurr -= 1;
            }
            limit(child);
            setTimeout(function(){ I18n.updateLayuiPagination(); }, 300);
        }
    });
}