| | |
| | | list: tableData.value
|
| | | };
|
| | |
|
| | | let locs = tableData.value.filter(item => item.locId == null && item.locs.length < 1);
|
| | | if (locs != null && locs.length > 0) {
|
| | | message.error("物料库存不足,无法生成出库任务 !!");
|
| | | return
|
| | | }
|
| | |
|
| | | post('/api/out/orderOut/merge/wave', requestParam).then((resp) => {
|
| | | let result = resp.data;
|
| | | if (result.code == 200) {
|
| | |
| | | <template #bodyCell="{ column, text, record, index }">
|
| | | <template v-if="column.dataIndex === 'locNo'">
|
| | | <div v-if="record.locId != null && record.anfme > 0">
|
| | | <!-- <a-tag color="green">{{ record.locNo }}</a-tag>-->
|
| | | <!-- <a-tag color="green">{{ record.locNo }}</a-tag>-->
|
| | | <a-select v-model:value="record.locNo" :options="record.otherLocs"
|
| | | :fieldNames="{ label: 'locNo', value: 'locId' }"
|
| | | @change="handleOtherLocChange(index, record)">
|