#
zhou zhou
2026-01-05 b4a8d50e3d97fc9e893b554a60134e4eceb012eb
src/main/webapp/static/js/pakStore/outStock.js
@@ -6,17 +6,20 @@
function getCol() {
    var cols = [];
    cols.push(
        {field: 'fbillNo', merge: true, align: 'center', title: '单据编号'}
        , {field: 'fnumber', align: 'center', title: '物料编号'}
        , {field: 'fentryID', align: 'center', title: '分录号'}
        , {field: 'forderInterID', align: 'center', title: '销售订单单号'}
        , {field: 'fauxQty', align: 'center', title: '数量'}
        , {field: 'fcommitQty', align: 'center', title: '发货数量'}
        , {field: 'fauxPrice', align: 'center', title: '单价'}
        , {field: 'fdate', align: 'center', title: '日期'}
        , {field: 'fnote', align: 'center', title: '备注'}
        , {field: 'fadd', align: 'center', title: '地址'}
        , {fixed: 'right', merge: ['fbillNo'], title: '操作', align: 'center', toolbar: '#operate', width: 80}
        {field: 'fbillNo', merge: true, align: 'center', title: '单据编号', width: 150}
        , {field: 'fsourceBillNo', align: 'center', title: '生产单号', width: 150}
        , {field: 'fnumber', align: 'center', title: '物料编号', width: 140}
        , {field: 'fname', align: 'center', title: '物料名称'}
        , {field: 'fmodel', align: 'center', title: '规格', width: 200}
        , {field: 'fentryID', align: 'center', title: '分录号', width: 80}
        , {field: 'forderInterID', align: 'center', title: '单据编号', hide: true}
        , {field: 'fauxQty', align: 'center', title: '数量', width: 100}
        // , {field: 'fcommitQty', align: 'center', title: '发货数量'}
        , {field: 'fauxPrice', align: 'center', title: '单价', width: 100}
        , {field: 'fdate', align: 'center', title: '日期', hide: true}
        , {field: 'fnote', align: 'center', title: '备注', hide: true}
        , {field: 'fadd', align: 'center', title: '地址', hide: true}
        , {merge: ['fbillNo'], title: '操作', align: 'center', toolbar: '#operate', width: 160}
    );
    return cols;
}
@@ -96,7 +99,7 @@
            outStockDetail = layer.open(
                {
                    type: 2,
                    title: '选择出库-单据编号[' + orderData.fbillNo + ']',
                    title: '立库出库-单据编号[' + orderData.fbillNo + ']',
                    maxmin: true,
                    area: [top.detailWidth, top.detailHeight],
                    shadeClose: false,
@@ -107,6 +110,21 @@
                }
            );
        }
        if (layEvent == 'btnNormalOut') {
            outStockDetail = layer.open(
                {
                    type: 2,
                    title: '平仓出库-单据编号[' + orderData.fbillNo + ']',
                    maxmin: true,
                    area: [top.detailWidth, top.detailHeight],
                    shadeClose: false,
                    content: 'outStockNormalDetail.html',
                    success: function (layero, index) {
                    }
                }
            );
        }
    });
});