| | |
| | | toolbar: '#toolbar', |
| | | cols: [[ |
| | | {fixed: 'left', field: 'count', title: '实际数量', align: 'center', edit:'text', width: 120, style:'color: blue;font-weight: bold'}, |
| | | {field: 'anfme', align: 'center',title: '数量'}, |
| | | {field: 'matNo', align: 'center', title: '物料编码'}, |
| | | {field: 'barcode', align: 'center', title: '条码'}, |
| | | {field: 'matName', align: 'center', title: '物料名称'}, |
| | |
| | | let data = res.data.records; |
| | | for (var i = 0; i<data.length; i++) { |
| | | matCodeData.push({ |
| | | count: data[i].anfme, |
| | | anfme: data[i].anfme, |
| | | matNo: data[i].matnr, |
| | | matName: data[i].maktx, |
| | | count: 0, |
| | | |
| | | }) |
| | | } |
| | | locTips(true, locNo); |
| | |
| | | <!-- 库位提示 --> |
| | | <div style="display: inline-block; font-size: 16px"> |
| | | <div class="not-retrieve" style="color: red"> |
| | | 未检索库位 |
| | | 请先检索库位 |
| | | </div> |
| | | <div class="retrieve" style="display: none;color: blue"> |
| | | 当前检索库位: <span id="locMsg"></span> |