diff --git a/src/api/distribution/distributionStockArticle.js b/src/api/distribution/distributionStockArticle.js index 9858dbae..e76515f9 100644 --- a/src/api/distribution/distributionStockArticle.js +++ b/src/api/distribution/distributionStockArticle.js @@ -55,6 +55,16 @@ export const getDetail = (id) => { }) } +export const getQueryQRCode = (params) => { + return request({ + url: '/api/logpm-distribution/distributionStockArticle/getShowTemplate', + method: 'get', + params: { + ...params + } + }) +} + export const remove = (ids) => { return request({ url: '/api/logpm-distribution/distributionStockArticle/remove', diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index 75f1b760..933af11b 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -942,7 +942,7 @@ export default { this.query['completeSet'] = index; }else if(row.prop ==='orderStatusName'){ this.query['orderStatus'] = index; - }else if(row.prop ==='typeName'){ + }else if(row.prop ==='typeServerName'){ this.query['typeService'] = index; }else{ this.query[row.prop] = index; @@ -972,12 +972,13 @@ export default { return; } let st = false; - this.selectionList.some( i =>{ - if(i.stateName === "已预约"){ + this.selectionList.forEach( i =>{ + console.log("yuyuyuuyu",i); + if(i.reservationStatusName === "已预约"){ st = true; this.$message.warning(i.orderCode+" - 已预约,请勿重复预约!!!"); } - if(i.typeService === 3){ + if(i.typeService == 3){ st = true; this.$message.warning(i.orderCode+" - 为自提单,无法预约!!!"); } @@ -1012,8 +1013,25 @@ export default { if (this.selectionList.length === 0) { this.$message.warning("请选择至少一条数据"); return; + }else{ + let st = false; + this.selectionList.forEach( i =>{ + console.log("yuyuyuuyu",i); + if(i.reservationStatusName == "已预约"){ + st = true; + this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!"); + } + if(i.typeService == 3){ + st = true; + this.$message.warning(i.orderCode+" - 为自提单,无法转为库存品!!!"); + } + }) + if(st){ + return + } + this.getSock(); } - this.getSock(); + /*else if (this.selectionList.length > 1){ this.getSock(); diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue index d1e93551..17b7ad13 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleDiscuss.vue @@ -632,16 +632,16 @@ export default { // fixed: false, // sortable: true, // }, - { - prop: 'typeServerName', - label: '服务类型', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, + // { + // prop: 'typeServerName', + // label: '服务类型', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { prop: 'customerName', label: '顾客名字', diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue index 290352dd..51602b5d 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleMarket.vue @@ -983,8 +983,21 @@ export default { if (this.selectionList.length === 0) { this.$message.warning("请选择至少一条数据"); return; + }else{ + let st = false; + this.selectionList.forEach( i =>{ + + if(i.reservationStatusName == "已预约"){ + st = true; + this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!"); + } + }) + if(st){ + return + } + this.getSock(); } - this.getSock(); + /*else if (this.selectionList.length > 1){ this.getSock(); diff --git a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue index 8eb1524c..33024e7b 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticleSelf.vue @@ -681,16 +681,16 @@ export default { // fixed: false, // sortable: true, // }, - { - prop: 'typeServerName', - label: '服务类型', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, + // { + // prop: 'typeServerName', + // label: '服务类型', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { prop: 'notification', label: '通知状态', @@ -1065,6 +1065,16 @@ export default { this.$message.warning("请选择至少一条数据"); return; }else { + let st = false; + this.selectionList.forEach( i =>{ + if(i.reservationStatusName == "已预约"){ + st = true; + this.$message.warning(i.orderCode+" - 已预约,无法转为库存品!!!"); + } + }) + if(st){ + return + } this.getSock(); } diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index e8413654..8797c19b 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -184,7 +184,15 @@