自动化立体仓库 - WMS系统
#
wang..123
2022-02-11 b91211bcb11e4bbe2e827de0510d90d65c25e965
src/main/webapp/views/pda/matQuery.html
@@ -89,6 +89,14 @@
        <input id="specs" type="text" disabled="disabled">
    </div>
    <div class="form-item">
        <span>批号</span>
        <input id="supplier" type="text">
    </div>
    <div class="form-item">
        <span>生产日期</span>
        <input id="memo" type="text">
    </div>
    <div class="form-item">
        <span>单位</span>
        <input id="unit" type="text" disabled="disabled">
    </div>
@@ -146,8 +154,15 @@
        var data = {
            matNo: $('#matNo').val(),
            matName: $('#matName').val(),
            count: countDom.val()
            count: countDom.val(),
            supplier: $('#supplier').val(),
            memo: $('#memo').val()
        };
        if(countDom.val()<=0){
            alert('数量必须大于0');
            return;
        }
        parent.addTableData(data);
        parent.layer.close(parent.matCodeLayerIdx);
    }