自动化立体仓库 - WMS系统
pang.jiabao
2025-04-15 b4227b5145943e067351a2a59ca34826b41d6fb7
src/main/webapp/static/js/ioWorks/stockOut.js
@@ -4,11 +4,11 @@
    var cols = [
        {field: 'count', align: 'center',title: '出库数量', edit:'text', width: 130,  style:'color: blue;font-weight: bold'}
        ,{field: 'anfme', align: 'center',title: '原数量'}
        ,{field: 'locNo', align: 'center',title: '库位号'}
        ,{field: 'locNo', align: 'center',title: 'Номер складского места'}
    ];
    arrRemove(detlCols,  'field', 'anfme');
    cols.push.apply(cols, detlCols);
    cols.push({fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:80})
    cols.push({fixed: 'right', title:'Операция', align: 'center', toolbar: '#operate', width:80})
    return cols;
}
@@ -95,7 +95,7 @@
    function updateLocDetlData(locNo, matnr, count) {
        if (isNaN(count)) {
            layer.msg("请输入数字");
            layer.msg("Введите число");
        } else {
            if (count > 0) {
                for (var i=0;i<locDetlData.length;i++){
@@ -109,7 +109,7 @@
                    }
                }
            } else {
                layer.msg("数量必须大于零");
                layer.msg("Количество должно быть больше нуля");
            }
        }
        tableIns.reload({data: locDetlData,done:function (res) {