From 228bd2a8dda4ddde3b3f54609b00d755a9ea5b63 Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Thu, 3 Aug 2023 16:45:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9F=A5=E8=AF=A2=E6=9D=A1?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/distributionStockArticle.js | 112 +++++++++- .../delivery/distributionStockArticle.vue | 148 ++++++++----- .../distributionStockArticleDiscuss.vue | 94 ++++++++- .../distributionStockArticleMarket.vue | 10 +- .../delivery/distributionStockArticleSelf.vue | 128 ++++++++++-- .../distributionStockArticleDetails.vue | 86 +++++++- .../inventory/distributionStockList.vue | 19 +- .../distributionStockListDiscuss.vue | 19 +- .../inventory/distributionStockListMarket.vue | 19 +- .../inventory/distributionStockListSelf.vue | 19 +- .../stockup/distributionStockupDiscuss.vue | 196 +++++++++++++----- .../stockup/distributionStockupMarket.vue | 125 ++++++++--- .../stockup/distributionStockupSelf.vue | 96 +++++++-- 13 files changed, 844 insertions(+), 227 deletions(-) diff --git a/src/option/distribution/distributionStockArticle.js b/src/option/distribution/distributionStockArticle.js index f8d305f5..370d8960 100644 --- a/src/option/distribution/distributionStockArticle.js +++ b/src/option/distribution/distributionStockArticle.js @@ -104,9 +104,97 @@ export default { label: '服务类型', prop: 'typeServerName', search: true + }, + { + label: '经销商名称', + prop: 'dealerName', + search: true + }, + { + label: '经销商编码', + prop: 'dealerCode', + search: true + }, + { + label: '车次号', + prop: 'trainNumber', + search: true + }, + { + label: '工厂车次', + prop: 'factoryTrain', + search: true } ], + columnTakeClice: [ + { + label: '租户号', + prop: 'tenantId', + display: false, + hide: true + }, + { + label: '创建人', + prop: 'createUser', + display: false, + hide: true + }, + { + label: '创建时间', + prop: 'createTime', + display: false, + hide: true + }, + { + label: '更新人', + prop: 'updateUser', + display: false, + hide: true + }, + { + label: '更新时间', + prop: 'updateTime', + display: false, + hide: true + }, + { + label: '状态', + prop: 'status', + display: false, + hide: true + }, + { + label: '是否已删除', + prop: 'isDeleted', + display: false, + hide: true + }, + { + label: '创建部门', + prop: 'createDept', + display: false, + hide: true + }, + { + label: '主键', + prop: 'id', + display: false, + hide: true + }, + { + label: '收货人名字', + prop: 'consigneePerson' + }, + { + label: '收货人电话', + prop: 'consigneeMobile' + }, + { + label: '收货人地址', + prop: 'consigneeAddress' + } + ], columnTakeOver: [ { label: '租户号', @@ -264,18 +352,30 @@ export default { label: '仓库', prop: 'warehouse' }, - { - label: '包件类型', - prop: 'conditions', - search: true - }, + // { + // label: '包件类型', + // prop: 'conditions', + // search: true + // }, { label: '包件状态', prop: 'orderPackageStatusName', }, { label: '冻结状态', - prop: 'orderPackageStatusName', + prop: 'orderPackageFreezeStatusName', + }, + { + label: '上架状态', + prop: 'orderPackageGroundingStatusName', + }, + { + label: '备货状态', + prop: 'orderPackageStockupStatusName', + }, + { + label: '预约状态', + prop: 'orderPackageReservationStatusName', }, { label: '包条码', diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index 5e6e8525..75f1b760 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -595,7 +595,7 @@ export default { sortable: true, }, { - prop: 'orderStatesName', + prop: 'orderStatusName', label: '状态', type: 3, values: '', @@ -604,6 +604,26 @@ export default { fixed: false, sortable: true, }, + { + prop: 'reservationStatusName', + label: '预约状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'stockupStatusName', + label: '备货状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'completeSetName', label: '是否齐套', @@ -702,46 +722,27 @@ export default { checkarr: [], fixed: false, sortable: true, - }, { - prop: 'inventoryDate', - label: '最新盘点时间', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'inventoryPerson', - label: '盘点人', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'reservationStatusName', - label: '预约状态', - type: 3, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, - { - prop: 'stockupStatusName', - label: '备货状态', - type: 3, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, }, + // { + // prop: 'inventoryDate', + // label: '最新盘点时间', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, + // { + // prop: 'inventoryPerson', + // label: '盘点人', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { prop: '', label: '操作', @@ -939,7 +940,7 @@ export default { this.query['freezeStatus'] = index; }else if(row.prop ==='completeSetName'){ this.query['completeSet'] = index; - }else if(row.prop ==='orderStatesName'){ + }else if(row.prop ==='orderStatusName'){ this.query['orderStatus'] = index; }else if(row.prop ==='typeName'){ this.query['typeService'] = index; @@ -1156,50 +1157,89 @@ export default { this.height = this.setPx(document.body.clientHeight - 340); getDictionaryBiz('distribution_type').then(res => { this.distributionType = res.data.data; - this.columnList[26].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + + // this.columnList[26].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('order_package_status').then(res => { this.deliveryOrderStatus = res.data.data; - this.columnList[24].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[24].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('basic_grounding').then(res => { - this.columnList[19].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("groundingStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('freeze_status').then(res => { - this.columnList[19].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("freezeStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('stockup_status').then(res => { - this.columnList[36].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("stockupStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[36].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); - getDictionaryBiz('reservation_status').then(res => { - this.columnList[35].checkarr =res.data.data.map(item=>{ + getDictionaryBiz('order_reservation_status').then(res => { + this.checkcColumnList("reservationStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[35].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); }, + checkcColumnList(prop,columnList){ + for(var a = 0; a < columnList.length; a++){ + if(columnList[a].prop===prop){ + console.log("1111111111111",columnList[a]); + return columnList[a]; + } + } + }, searchHide () { this.search = !this.search; }, @@ -1391,11 +1431,11 @@ export default { this.data = data.records; this.data = this.data.map( i => { // console.log("iiiii",i.createUser); - const freezeStatusMap = { - 0: "未冻结", - 1: "已冻结", - default: "无" - }; + // const freezeStatusMap = { + // 0: "未冻结", + // 1: "已冻结", + // default: "无" + // }; const nuMap = { '-1': "0" }; @@ -1406,7 +1446,7 @@ export default { // 3: "已下架", // default: "无" // }; - i.freezeStatusName = freezeStatusMap[i.freezeStatus] || freezeStatusMap.default; + // i.freezeStatusName = freezeStatusMap[i.freezeStatus] || freezeStatusMap.default; // i.groundingStatusName = groundingStatusMap[i.groundingStatus] || groundingStatusMap.default; i.handQuantity = nuMap[i.handQuantity] || i.handQuantity; i.sortingQuantity = nuMap[i.sortingQuantity] || i.sortingQuantity; diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue index eec3a1ef..d1e93551 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue @@ -528,7 +528,7 @@ export default { values: '', width: '150', checkarr: [ - + ], fixed: false, sortable: true, @@ -568,7 +568,7 @@ export default { values: '', width: '150', checkarr: [ - + ], fixed: false, sortable: true, @@ -583,6 +583,26 @@ export default { fixed: false, sortable: true, }, + { + prop: 'reservationStatusName', + label: '预约状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'stockupStatusName', + label: '备货状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'completeSetName', label: '是否齐套', @@ -679,7 +699,7 @@ export default { checkarr: [], fixed: false, sortable: true, - }, + }, // { // prop: 'inventoryDate', // label: '最新盘点时间', @@ -891,8 +911,8 @@ export default { }, /** * 处理字段和名称不一致的问题 - * @param {} index - * @param {*} row + * @param {} index + * @param {*} row */ selectsc(index, row) { if(row.prop ==='freezeStatusName'){ @@ -1117,37 +1137,89 @@ export default { this.height = this.setPx(document.body.clientHeight - 340); getDictionaryBiz('distribution_type').then(res => { this.distributionType = res.data.data; - // this.columnList[12].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + + // this.columnList[26].checkarr =res.data.data.map(item=>{ // item.value=item.dictKey // item.label=item.dictValue // return item // }); }); - getDictionaryBiz('order_status').then(res => { + getDictionaryBiz('order_package_status').then(res => { this.deliveryOrderStatus = res.data.data; - this.columnList[24].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[24].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('basic_grounding').then(res => { - this.columnList[19].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("groundingStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); - getDictionaryBiz('freeze_status').then(res => { - this.columnList[23].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("freezeStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); + }); + getDictionaryBiz('stockup_status').then(res => { + this.checkcColumnList("stockupStatusName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + // this.columnList[36].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); + }); + getDictionaryBiz('order_reservation_status').then(res => { + this.checkcColumnList("reservationStatusName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + // this.columnList[35].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); }, + checkcColumnList(prop,columnList){ + for(var a = 0; a < columnList.length; a++){ + if(columnList[a].prop===prop){ + console.log("1111111111111",columnList[a]); + return columnList[a]; + } + } + }, searchHide () { this.search = !this.search; }, diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue index 628a0859..290352dd 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue @@ -527,7 +527,7 @@ export default { values: '', width: '150', checkarr: [ - + ], fixed: false, sortable: true, @@ -567,7 +567,7 @@ export default { values: '', width: '150', checkarr: [ - + ], fixed: false, sortable: true, @@ -579,15 +579,13 @@ export default { type: 3, values: '', width: '150', - checkarr: [ - - ], + checkarr: [], fixed: false, sortable: true, }, { prop: 'orderStatusName', - label: '状态', + label: '订单状态', type: 3, values: '', width: '150', diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue index 7b4ad3a5..8eb1524c 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue @@ -624,7 +624,27 @@ export default { }, { prop: 'orderStateName', - label: '状态', + label: '订单状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'reservationStatusName', + label: '预约状态', + type: 3, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'stockupStatusName', + label: '备货状态', type: 3, values: '', width: '150', @@ -747,25 +767,26 @@ export default { checkarr: [], fixed: false, sortable: true, - }, { - prop: 'inventoryDate', - label: '最新盘点时间', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, { - prop: 'inventoryPerson', - label: '盘点人', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, }, + // { + // prop: 'inventoryDate', + // label: '最新盘点时间', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { + // prop: 'inventoryPerson', + // label: '盘点人', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { prop: '', label: '操作', @@ -1242,28 +1263,89 @@ export default { this.height = this.setPx(document.body.clientHeight - 340); getDictionaryBiz('distribution_type').then(res => { this.distributionType = res.data.data; - // this.columnList[12].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("typeServerName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + + // this.columnList[26].checkarr =res.data.data.map(item=>{ // item.value=item.dictKey // item.label=item.dictValue // return item // }); }); - getDictionaryBiz('basic_order_state').then(res => { - this.columnList[24].checkarr =res.data.data.map(item=>{ + getDictionaryBiz('order_package_status').then(res => { + this.deliveryOrderStatus = res.data.data; + this.checkcColumnList("orderStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[24].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); getDictionaryBiz('basic_grounding').then(res => { - this.columnList[19].checkarr =res.data.data.map(item=>{ + this.checkcColumnList("groundingStatusName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); + }); + getDictionaryBiz('freeze_status').then(res => { + this.checkcColumnList("freezeStatusName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + // this.columnList[19].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); + }); + getDictionaryBiz('stockup_status').then(res => { + this.checkcColumnList("stockupStatusName", this.columnList).checkarr=res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue return item }); + // this.columnList[36].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); + }); + getDictionaryBiz('order_reservation_status').then(res => { + this.checkcColumnList("reservationStatusName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); + // this.columnList[35].checkarr =res.data.data.map(item=>{ + // item.value=item.dictKey + // item.label=item.dictValue + // return item + // }); }); }, + checkcColumnList(prop,columnList){ + for(var a = 0; a < columnList.length; a++){ + if(columnList[a].prop===prop){ + console.log("1111111111111",columnList[a]); + return columnList[a]; + } + } + }, searchHide () { this.search = !this.search; }, diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index d1220818..e8413654 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -1,11 +1,10 @@ - + @@ -55,6 +53,38 @@ + + + + + + + + + + + + + + + + + + + + @@ -80,7 +110,8 @@ @@ -127,6 +158,27 @@ + +
+
+ + + + + +
+
+ + + 打 印 + 确 定 + 取 消 + +
@@ -177,6 +229,8 @@ export default { dataPare: [], distributionType: [], dialogTableVisible: false, + dialogVisible:false, //二维码控制 + qrCodeObj:[], //二维码图片 dialogFormVisible: false, dialogFormCustomer: false, dialogFormService: false, @@ -469,6 +523,28 @@ export default { this.form = res.data.data; }); }, + handleQRCode (row) { + // this.title = '查看' + // this.view = true; + // this.box = true; + this.dialogVisible = true; + getDetail(row.id).then(res => { + this.form = res.data.data; + }); + + + }, + handleTrajectory (row) { + console.log(">>>>",row); + this.$message.warning("暂无法显示!!!"); + // this.title = '查看' + // this.view = true; + // this.box = true; + // this.dialogVisible = true; + // getDetail(row.id).then(res => { + // this.form = res.data.data; + // }); + }, handleDelete () { if (this.selectionList.length === 0) { this.$message.warning("请选择至少一条数据"); diff --git a/src/views/distribution/inventory/distributionStockList.vue b/src/views/distribution/inventory/distributionStockList.vue index 451c6b27..9695bfdb 100644 --- a/src/views/distribution/inventory/distributionStockList.vue +++ b/src/views/distribution/inventory/distributionStockList.vue @@ -1,22 +1,25 @@