diff --git a/src/option/basicdata/basicdataTray.js b/src/option/basicdata/basicdataTray.js index b42c01fd..57ef814f 100644 --- a/src/option/basicdata/basicdataTray.js +++ b/src/option/basicdata/basicdataTray.js @@ -30,7 +30,7 @@ export default { type: 'input', addDisplay: false, editDisplay: false, - viewDisplay: false, + viewDisplay: true, hide: true, width: '130', }, @@ -40,7 +40,7 @@ export default { type: 'input', addDisplay: false, editDisplay: false, - viewDisplay: false, + viewDisplay: true, hide: true, width: '130', }, diff --git a/src/option/distribution/zeroAdditionalRecording.js b/src/option/distribution/zeroAdditionalRecording.js index 73c935f6..c0b9bc74 100644 --- a/src/option/distribution/zeroAdditionalRecording.js +++ b/src/option/distribution/zeroAdditionalRecording.js @@ -287,6 +287,16 @@ export const newColumnList = [ fixed: false, sortable: true, }, + { + prop: 'loadingNum', + label: '装车件数', + type: 6, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'price', label: '单价', diff --git a/src/utils/util.js b/src/utils/util.js index dd65fdd5..a5015c07 100644 --- a/src/utils/util.js +++ b/src/utils/util.js @@ -335,13 +335,12 @@ export const getTopUrl = () => { return window.location.href.split('/#/')[0]; }; - /** 移除标题栏指定地址 * @param {string} value 要移除的地址 */ -export function AddressClosed(url){ +export function AddressClosed(url) { console.log(url, store); - const index = store.getters.tagList.findIndex((item) => item.path == url); + const index = store.getters.tagList.findIndex(item => item.path == url); if (index != -1) { store.getters.tagList.splice(index, 1); } @@ -623,4 +622,7 @@ export function debounce(func, delay) { })(); } - +/** 去除零宽字符 */ +export const removeZeroWidth = str => { + return str.replace(/[\u200B-\u200D\uFEFF]/g, ''); +}; diff --git a/src/views/distribution/artery/zeroAdditionalRecording.vue b/src/views/distribution/artery/zeroAdditionalRecording.vue index 179abdec..2831b7a3 100644 --- a/src/views/distribution/artery/zeroAdditionalRecording.vue +++ b/src/views/distribution/artery/zeroAdditionalRecording.vue @@ -171,6 +171,18 @@ @selectCheck="newSelectsc" @selection="newSelectionChange" > +
({ /** 是否开启搜索 */ @@ -308,6 +349,15 @@ const details = reactive({ form: {}, /** 被选中的零担订单 */ orderCodeList: [], + /** 后续节点Id列表 */ + finalNodeIdArr: [], + /** 运单Id */ + loadId: '', + showPopUpObj: { + editNodeIdDialogVisible: true, + }, + /** 选择的Id */ + chooseNodeId: '', }); const { @@ -338,6 +388,18 @@ onMounted(() => { }, 100); }); +/** 获取最终节点ID */ +const initFinalNodeId = async () => { + details.loadId = $route.query.loadId; + + const res = await postFindNextNodeList({ loadId: details.loadId }); + const { code, data } = res.data; + if (code !== 200) return; + details.finalNodeIdArr = data; +}; + +initFinalNodeId(); + /** 请求页面数据 */ const onLoad = async (params = {}) => { try { @@ -526,8 +588,8 @@ const handleAddWaybill = () => { if (details.oldSelectionList.length === 0) return ElMessage.error('最少选择一条数据'); for (let item of details.oldSelectionList) { - item.planNum = item.stockNum; - item.loadingNum = 0; + console.log('item.stockNum :>> ', item.stockNum); + item.loadingNum = Number(item.stockNum || 0); details.newData.push(item); } @@ -556,10 +618,35 @@ const handleRemoveWaybill = () => { } return _flag; }); + + details.page.pageNum = 1; + onLoad(); }; /** 零担补录提交 */ -const handleEditZeroSubmit = () => {}; +const handleEditZeroSubmit = () => { + if (details.newData.length === 0) return ElMessage.error('请选择运单'); + + // const _data = details.newData.filter(val => { + // return val.loadingNum > 0; + // }); + + const submitData = { + loadId: details.loadId, + zeroSuppleList: [], + }; + + for (const iterator of details.newData) { + submitData.zeroSuppleList.push({ + orderCode: iterator.orderCode, + waybillNo: iterator.waybillNo, + enterNum: iterator.stockNum, + finalNodeId: iterator.nodeId, + }); + } + + console.log('_data :>> ', _data); +}; diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index 883cdddd..4bddd073 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -131,6 +131,7 @@ -->
+ @@ -388,6 +393,7 @@ + -
@@ -441,7 +440,14 @@ + + + @@ -453,9 +459,7 @@ placeholder="请输入顾客地址" /> - - - + ', this.data); if (!this.deliveryListId) { data.reservationIds = this.reservationIds; + data.reservationIds = this.reservationData.map(val => val.id).join(','); if (this.reservationData.length < 1) { this.$message({ message: '无效的配送计划', diff --git a/src/views/warehouse/parcelList/distributionParcelList.vue b/src/views/warehouse/parcelList/distributionParcelList.vue index 6994791a..04fa1ce2 100644 --- a/src/views/warehouse/parcelList/distributionParcelList.vue +++ b/src/views/warehouse/parcelList/distributionParcelList.vue @@ -197,16 +197,6 @@ export default { sortable: false, head: false, }, - { - prop: 'materialCode', - label: '物料编码', - type: 2, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, { prop: 'trainNumber', label: '配送车次', @@ -291,7 +281,7 @@ export default { }, { prop: 'conditionsType', - label: '包件明细状态', + label: '包件类型', type: 3, values: '', width: '130', @@ -309,7 +299,16 @@ export default { sortable: false, head: false, }, - + { + prop: 'materialCode', + label: '物料编码', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'firsts', label: '一级品', @@ -340,7 +339,16 @@ export default { fixed: false, sortable: true, }, - + { + prop: 'orderPackageStockupStatusName', + label: '备货状态', + type: 3, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'orderPackageStatusName', label: '包件状态', @@ -351,7 +359,35 @@ export default { fixed: false, sortable: true, }, - + { + prop: 'orderPackageLoadingStatusName', + label: '装车状态', + type: 3, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'orderPackageReservationStatusName', + label: '预约状态', + type: 3, + values: '', + width: '130', + checkarr: [ + { + label: '待上架', + value: '10', + }, + { + label: '已上架', + value: '20', + }, + ], + fixed: false, + sortable: true, + }, { prop: 'orderPackageGroundingStatusName', label: '上架状态', @@ -381,7 +417,28 @@ export default { // fixed: false, // sortable: true, // }, - + { + prop: 'loadingTime', + label: '装车时间', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'signingTime', + label: '签收时间', + type: 1, + values: '', + width: '130', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'goodsAllocation', label: '货位信息', @@ -617,20 +674,27 @@ export default { this.query.conditions = value; if (value === '') delete this.query.conditions; } - // 上架状态 - if (row.prop === 'orderPackageGroundingStatusName') { - this.query.orderPackageGroundingStatus = value; - if (value === '') delete this.query.orderPackageGroundingStatus; - } - - if (row.prop === 'orderPackageStatusName') { - this.query.orderPackageStatus = value; - if (value === '') delete this.query.orderPackageStatus; - } + this.query[row.prop.replace(/Name/, '')] = value; if (value === '') { + delete this.query[row.prop.replace(/Name/, '')]; delete this.query[row.prop]; } + + // // 上架状态 + // if (row.prop === 'orderPackageGroundingStatusName') { + // this.query.orderPackageGroundingStatus = value; + // if (value === '') delete this.query.orderPackageGroundingStatus; + // } + + // if (row.prop === 'orderPackageStatusName') { + // this.query.orderPackageStatus = value; + // if (value === '') delete this.query.orderPackageStatus; + // } + + // if (value === '') { + // delete this.query[row.prop]; + // } this.page.currentPage = 1; this.onLoad(this.page); }, @@ -656,6 +720,7 @@ export default { init() { this.height = this.setPx(document.body.clientHeight - 340); + // 包件状态 getDictionaryBiz('order_package_status').then(res => { this.distributionType = res.data.data; this.$functions.checkcColumnList('orderPackageStatusName', this.columnList).checkarr = @@ -665,6 +730,56 @@ export default { return item; }); }); + + // 装车状态 + getDictionaryBiz('order_package_loading_status').then(res => { + this.distributionType = res.data.data; + this.$functions.checkcColumnList( + 'orderPackageLoadingStatusName', + this.columnList + ).checkarr = res.data.data.map(item => { + item.value = item.dictKey; + item.label = item.dictValue; + return item; + }); + }); + + // 备货状态 orderPackageStockupStatusName + getDictionaryBiz('order_package_stockup_status').then(res => { + this.distributionType = res.data.data; + this.$functions.checkcColumnList( + 'orderPackageStockupStatusName', + this.columnList + ).checkarr = res.data.data.map(item => { + item.value = item.dictKey; + item.label = item.dictValue; + return item; + }); + }); + + // 入库状态 + getDictionaryBiz('order_package_status').then(res => { + this.distributionType = res.data.data; + this.$functions.checkcColumnList('orderPackageStatusName', this.columnList).checkarr = + res.data.data.map(item => { + item.value = item.dictKey; + item.label = item.dictValue; + return item; + }); + }); + + // 预约状态 + getDictionaryBiz('order_package_reservation_status').then(res => { + this.distributionType = res.data.data; + this.$functions.checkcColumnList( + 'orderPackageReservationStatusName', + this.columnList + ).checkarr = res.data.data.map(item => { + item.value = item.dictKey; + item.label = item.dictValue; + return item; + }); + }); }, searchHide() { this.search = !this.search; diff --git a/vite.config.js b/vite.config.js index 187bfd53..768ed4ed 100644 --- a/vite.config.js +++ b/vite.config.js @@ -25,14 +25,14 @@ export default ({ mode, command }) => { // target: 'http://192.168.6.122:8777', // target: 'http://192.168.10.25:13000', // target: 'http://192.168.10.25:2888', - target: 'http://192.168.6.148:9777', - // target: 'http://192.168.6.116:8777', + // target: 'http://192.168.6.148:9777', + // target: 'http://192.168.10.57:13000', // tjj // sst // target: 'http://192.168.10.94:8888', // target: 'http://192.168.10.29:13000', // target: 'http://h5uapi.huitongys.com', - // target: 'http://test.api.huitongys.com', + target: 'http://test.api.huitongys.com', changeOrigin: true, rewrite: path => path.replace(/^\/api/, ''), },