From 4dd2e6c3d2f4dcab6d680ef4f81cc1ef6ee93c08 Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Thu, 7 Sep 2023 18:01:30 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8F=90=E5=8D=95?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/basicdata/brand/basicClient.vue | 74 +++++++++++++++- .../delivery/distributionStockArticle.vue | 4 +- .../distributionStockArticleDetails.vue | 13 +-- .../inventory/distrilbutionBillLading.vue | 6 +- .../inventory/distrilbutionBillLadingList.vue | 6 +- .../inventory/distrilbutionBillLadingView.vue | 87 +++++++++++++++++++ .../distributionStockupDetailsSelf.vue | 36 ++++++++ .../stockup/distributionStockupDiscuss.vue | 36 ++++---- .../stockup/distributionStockupMarket.vue | 16 ++-- .../stockup/distributionStockupSelf.vue | 16 ++-- .../warehouseWarehousingEntry.vue | 5 +- 11 files changed, 248 insertions(+), 51 deletions(-) diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue index ea5a83aa..4e5baf54 100644 --- a/src/views/basicdata/brand/basicClient.vue +++ b/src/views/basicdata/brand/basicClient.vue @@ -345,6 +345,7 @@ import { getSelect, getLazyTree, getLazyList, getLazyTreeAll } from '@/api/base/ import { getToken } from '@/utils/auth'; import globalc from '@/api/basicdata/globalc'; import { Base64 } from 'js-base64'; +import dayjs from 'dayjs'; export default { @@ -389,7 +390,7 @@ export default { { prop: 'clientTypeName', label: '客户类型', - type: 2, + type: 3, values: '', width: '150', checkarr: [], @@ -400,7 +401,7 @@ export default { { prop: 'typeServiceName', label: '服务类型', - type: 2, + type: 1, values: '', width: '180', checkarr: [], @@ -628,6 +629,70 @@ export default { } }, methods: { + showdrawer(value){ + this.drawerShow=value + }, + /** + * 弹窗的勾选回调,用于更改头部数组 + * 固定搭配,只需要更换 columnList + */ + setnewcolum(newarr, headarr,type) { + // console.log(newarr,'+++++++++++') + if(type==1){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'checkList', headarr); + }else if(type==2){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'flexList', headarr); + }else if(type==3){ + this.columnList = newarr; + this.$functions.setStorage(window.location.pathname+'sortlist', headarr); + } + + }, + selectionsc(value) { + console.log(value); + }, + delectsolt(scope) { + const { row } = scope; + console.log(row); + }, + editsolt(scope) { + const { row } = scope; + console.log(row); + }, + btnsc(index, row) { + console.log(index, row); + }, + selectsc(index, row) { + console.log("123123123",index, row); + if(row.prop ==='clientTypeName'){ + this.query['clientType'] = index; + }else{ + this.query[row.prop] = index; + } + this.onLoad(this.page); + }, + timesc(index, row) { + console.log(index, row); + if (!!index){ + index = dayjs(index).format('YYYY-MM-DD'); + } + this.query[row.prop] = index + if (!index){ + delete this.query[row.prop] + } + this.onLoad(this.page); + }, + inputsc(index, row) { + console.log(index, row); + // console.log(index, row.prop); + this.query[row.prop] = index; + this.onLoad(this.page); + }, + + + handleCommand(command,row){ console.log(command,row) switch (Number(command)) { @@ -807,6 +872,11 @@ export default { getDictionaryBiz('client_type').then(res => { // console.log("字典》》》",res); this.clientType = res.data.data; + this.$functions.checkcColumnList("clientTypeName", this.columnList).checkarr=res.data.data.map(item=>{ + item.value=item.dictKey + item.label=item.dictValue + return item + }); }); //字典 getDictionaryBiz('basic_freight_type').then(res => { diff --git a/src/views/distribution/inventory/delivery/distributionStockArticle.vue b/src/views/distribution/inventory/delivery/distributionStockArticle.vue index 4539c951..e7303461 100644 --- a/src/views/distribution/inventory/delivery/distributionStockArticle.vue +++ b/src/views/distribution/inventory/delivery/distributionStockArticle.vue @@ -6,10 +6,10 @@ - + - + diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index c9eb2fc9..64b4271a 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -726,8 +726,11 @@ export default { '$route.query.id': { handler(newVal, oldVal) { // console.log(newVal, oldVal); - this.onLoad(this.page); - this.onLoadOwn(this.page); + if(!!this.$route.query.id){ + this.onLoad(this.page); + this.onLoadOwn(this.page); + } + }, deep: true, immediate: true, @@ -1367,7 +1370,7 @@ export default { }, onLoad(page, params = {}) { this.loading = true; - this.query.id = this.$route.query.id; + this.query.ids = this.$route.query.id; getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { const data = res.data.data; // this.page.total = data.total; @@ -1377,10 +1380,10 @@ export default { }); }, onLoadOwn(page, params = {}) { - this.loading = true; + // this.loading = true; this.dataMaterial = false; params = { - stockArticleId: this.$route.query.id, + stockArticleIds: this.$route.query.id, }; getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.queryPage)).then( res => { diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue index 6505dedd..97ec06c4 100644 --- a/src/views/distribution/inventory/distrilbutionBillLading.vue +++ b/src/views/distribution/inventory/distrilbutionBillLading.vue @@ -2319,7 +2319,7 @@ export default { } }, selectionChangeStock(list) { - console.log('执行了啦啦啦', list); + // console.log('执行了啦啦啦', list); this.selectionListStock = list; }, selectionClear() { @@ -2345,7 +2345,7 @@ export default { onLoad(page, params = {}) { this.loading = true; - params.id = this.$route.query.id; + params.ids = this.$route.query.id; this.orderAdd = false; getListOne(page.currentPage, page.pageSize, params).then(res => { const data = res.data.data; @@ -2396,7 +2396,7 @@ export default { //包件信息 onLoadOwn(page, params = {}) { this.loading = true; - this.query.stockArticleId = this.$route.query.id; + this.query.stockArticleIds = this.$route.query.id; getListOwn(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { console.log('包件信息>>>>', res.data.data); const dataList = res.data.data; diff --git a/src/views/distribution/inventory/distrilbutionBillLadingList.vue b/src/views/distribution/inventory/distrilbutionBillLadingList.vue index 590b1324..83edf040 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingList.vue @@ -105,8 +105,8 @@ @@ -856,7 +856,7 @@ export default { for(let a = 0;a < clientType.length;a++){ // console.log("进来了",clientType[a].dictKey , costListName[i]); if(clientType[a].dictKey == costListName[i]){ - console.log("进来了",clientType[a].dictKey , costListName[i]); + // console.log("进来了",clientType[a].dictKey , costListName[i]); let zhi = costList[costListName[i]]; if(!zhi){ this.pan = true; diff --git a/src/views/distribution/inventory/distrilbutionBillLadingView.vue b/src/views/distribution/inventory/distrilbutionBillLadingView.vue index 7fa36266..de5153a7 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingView.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingView.vue @@ -153,6 +153,49 @@ export default { columnListarrs:{ //入库明细 ordoption:[ + { + prop: 'serviceNumber', + label: '服务号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'waybillNumber', + label: '运单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'waybillNumber', + label: '客户车次号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'sendWarehouseName', + label: '始发仓', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'orderCode', label: '订单自编号', @@ -164,6 +207,7 @@ export default { sortable: true, head: false, }, + { prop: 'descriptionGoods', label: '货物名称', @@ -352,6 +396,49 @@ export default { // checkarr: [], // fixed: true, // }, + { + prop: 'serviceNumber', + label: '服务号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'waybillNumber', + label: '运单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'orderCode', + label: '订单自编号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNumber', + label: '客户车次号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, { prop: 'orderPackageCode', label: '包条码', diff --git a/src/views/distribution/stockup/distributionStockupDetailsSelf.vue b/src/views/distribution/stockup/distributionStockupDetailsSelf.vue index d41ca065..538b162b 100644 --- a/src/views/distribution/stockup/distributionStockupDetailsSelf.vue +++ b/src/views/distribution/stockup/distributionStockupDetailsSelf.vue @@ -599,6 +599,10 @@ export default { //配送类型 this.distributionType = res.data.data; }); + // 费用类型字典 + getDictionaryBiz('delivery_cost').then(res => { + this.clientType = res.data.data; + }); // console.log("配送方式123", this.deliveryWayList); getDictionaryBiz('delivery_way').then(res => { //配送方式 @@ -832,6 +836,38 @@ export default { let a = await billStockList(page.currentPage, page.pageSize, { id: this.$route.query.id }); this.data3 = a.data.data.records; console.log("自提任务》》》》》》",this.data3); + console.log("费用类型lll",this.clientType); + this.data3.forEach(i =>{ + if(!!i.list){ + i.collectFee = 0; + i.storageFee = 0; + i.transport = 0; + i.forklift = 0; + i.otherFee = 0; + i.list.forEach(a =>{ + const { cost, money } = a; // 对象解构,获取a对象的cost和money属性 + switch (cost) { + case '1': // 到付 + i.collectFee = money ? parseInt(money) : 0; + break; + case '2': // 仓储费用 + i.storageFee = money ? parseInt(money) : 0; + break; + case '3': // 搬运费 + console.log("0=-0-="); + i.transport = money ? parseInt(money) : 0; + break; + case '4': // 叉车费 + i.forklift = money ? parseInt(money) : 0; + break; + case '5': // 其他增值费 + i.otherFee = money ? parseInt(money) : 0; + break; + } + }) + } + }); + // if (!!this.data3 && this.data3.length > 0) { // this.data3.forEach(i => { diff --git a/src/views/distribution/stockup/distributionStockupDiscuss.vue b/src/views/distribution/stockup/distributionStockupDiscuss.vue index 5a5ab14b..8a125284 100644 --- a/src/views/distribution/stockup/distributionStockupDiscuss.vue +++ b/src/views/distribution/stockup/distributionStockupDiscuss.vue @@ -355,14 +355,14 @@ export default { values: '', width: '150', checkarr: [ - { - label: '未指派', - value: '1', - }, - { - label: '已指派', - value: '2', - }, + // { + // label: '未指派', + // value: '1', + // }, + // { + // label: '已指派', + // value: '2', + // }, ], fixed: false, sortable: true, @@ -893,17 +893,17 @@ export default { return item }); }); - getDictionaryBiz('stock_allocation').then(res => { - this.stockAllocation = res.data.data; - this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { - item.value = item.dictKey - item.label = item.dictValue - return item - }); - }) + // getDictionaryBiz('stock_allocation').then(res => { + // this.stockAllocation = res.data.data; + // this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { + // item.value = item.dictKey + // item.label = item.dictValue + // return item + // }); + // }) getDictionaryBiz('stock_assign_status').then(res => { //指派 - // console.log("8908098080",res.data.data); - this.distributionType = res.data.data; + console.log("8908098080",res.data.data); + // this.distributionType = res.data.data; this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr =res.data.data.map(item=>{ item.value=item.dictKey item.label=item.dictValue diff --git a/src/views/distribution/stockup/distributionStockupMarket.vue b/src/views/distribution/stockup/distributionStockupMarket.vue index 508ccf01..1f8d26d9 100644 --- a/src/views/distribution/stockup/distributionStockupMarket.vue +++ b/src/views/distribution/stockup/distributionStockupMarket.vue @@ -831,14 +831,14 @@ export default { return item }); }); - getDictionaryBiz('stock_allocation').then(res => { - this.stockAllocation = res.data.data; - this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { - item.value = item.dictKey - item.label = item.dictValue - return item - }); - }); + // getDictionaryBiz('stock_allocation').then(res => { + // this.stockAllocation = res.data.data; + // this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { + // item.value = item.dictKey + // item.label = item.dictValue + // return item + // }); + // }); this.onLoad(this.page); }, searchHide () { diff --git a/src/views/distribution/stockup/distributionStockupSelf.vue b/src/views/distribution/stockup/distributionStockupSelf.vue index 028ef25c..67989128 100644 --- a/src/views/distribution/stockup/distributionStockupSelf.vue +++ b/src/views/distribution/stockup/distributionStockupSelf.vue @@ -837,14 +837,14 @@ export default { return item }); }); - getDictionaryBiz('stock_allocation').then(res => { - this.stockAllocation = res.data.data; - this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { - item.value = item.dictKey - item.label = item.dictValue - return item - }); - }); + // getDictionaryBiz('stock_allocation').then(res => { + // this.stockAllocation = res.data.data; + // this.$functions.checkcColumnList("assignStatusName", this.columnList).checkarr = res.data.data.map(item => { + // item.value = item.dictKey + // item.label = item.dictValue + // return item + // }); + // }); this.onLoad(this.page); }, searchHide () { diff --git a/src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue b/src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue index 16747380..88065123 100644 --- a/src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue +++ b/src/views/warehouse/warehousingentry/warehouseWarehousingEntry.vue @@ -50,6 +50,7 @@ From 205ced7fa2d04f0efd080b9ce3d12f075d856a25 Mon Sep 17 00:00:00 2001 From: "0.0" <1092404103.qq.com> Date: Thu, 7 Sep 2023 21:42:40 +0800 Subject: [PATCH 2/6] =?UTF-8?q?1.=E4=BA=8C=E7=BB=B4=E6=95=B0=E7=BB=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/basicdata/basicdataGoodsAllocation.js | 9 ++ src/api/basicdata/basicdataGoodsShelf.js | 18 +-- src/api/basicdata/basicdataTray.js | 28 +++- .../BasicdataGoodsAllocation.vue | 30 +++- .../goodsShelf/basicdataGoodsShelf.vue | 142 +++++++++++------- .../warehouse/tray/basicdataTray.vue | 130 +++++++++++----- 6 files changed, 255 insertions(+), 102 deletions(-) diff --git a/src/api/basicdata/basicdataGoodsAllocation.js b/src/api/basicdata/basicdataGoodsAllocation.js index 62b5a3a4..2d50e59f 100644 --- a/src/api/basicdata/basicdataGoodsAllocation.js +++ b/src/api/basicdata/basicdataGoodsAllocation.js @@ -49,6 +49,15 @@ export const enable = (ids) => { } }) } +export const downAllocation = (ids) => { + return request({ + url: '/api/logpm-warehouse/warehouseGoodsAllocation/downAllocation', + method: 'post', + params: { + ids, + } + }) +} export const shelf = (ids) => { return request({ url: '/api/logpm-warehouse/warehouseGoodsAllocation/downAllocation', diff --git a/src/api/basicdata/basicdataGoodsShelf.js b/src/api/basicdata/basicdataGoodsShelf.js index 968b074f..3fb2c3ef 100644 --- a/src/api/basicdata/basicdataGoodsShelf.js +++ b/src/api/basicdata/basicdataGoodsShelf.js @@ -87,15 +87,15 @@ export const getShowTemplate = (row) => { }) } -export const getPrintTemplate = (ids) => { - return request({ - url: '/api/logpm-basicdata/goodsShelf/getPrintTemplate', - method: 'get', - params:{ - ids - } - }) -} +// export const getPrintTemplate = (ids) => { +// return request({ +// url: '/api/logpm-basicdata/goodsShelf/getPrintTemplate', +// method: 'get', +// params:{ +// ids +// } +// }) +// } export const getQRCodeImg = (qrCode) => { return request({ diff --git a/src/api/basicdata/basicdataTray.js b/src/api/basicdata/basicdataTray.js index 2a387ca7..6ee67a91 100644 --- a/src/api/basicdata/basicdataTray.js +++ b/src/api/basicdata/basicdataTray.js @@ -102,13 +102,32 @@ export const getDetail = (id) => { export const remove = (ids) => { return request({ - url: '/api/logpm-basicdata/Tray/remove', + url: '/api/logpm-basicdata/tray/remove', method: 'post', params: { ids, } }) } +export const disable = (ids) => { + return request({ + url: '/api/logpm-basicdata/tray/disable', + method: 'post', + params: { + ids, + } + }) +} +export const addable = (ids) => { + return request({ + url: '/api/logpm-basicdata/tray/addable', + method: 'post', + params: { + ids, + } + }) +} + export const add = (row) => { return request({ @@ -132,4 +151,11 @@ export const vacant = (row) => { data: row }) } +export const vacants = (row) => { + return request({ + url: '/api/logpm-basicdata/tray/vacants', + method: 'post', + data: row + }) +} diff --git a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue index 170c7cd4..d84f7176 100644 --- a/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue +++ b/src/views/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocation.vue @@ -31,6 +31,11 @@ plain @click="handleEnable">启 用 + 一 键 下 架 + @@ -78,7 +83,7 @@ + + \ No newline at end of file diff --git a/src/views/basicdata/brand/basicdataTripartiteMall.vue b/src/views/basicdata/brand/basicdataTripartiteMall.vue index 470b0e20..73115466 100644 --- a/src/views/basicdata/brand/basicdataTripartiteMall.vue +++ b/src/views/basicdata/brand/basicdataTripartiteMall.vue @@ -270,7 +270,7 @@ export default { }, onLoad (page, params = {}) { this.loading = true; - this.query.client = this.$route.query.id; + this.query.clientId = this.$route.query.id; getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { const data = res.data.data; this.page.total = data.total; From 13e1a080dbcf20fde68e1662f22c709650d29c7b Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Fri, 8 Sep 2023 11:15:00 +0800 Subject: [PATCH 4/6] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=87=AA=E6=8F=90?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../stockup/distributionStockup.vue | 56 +++++++++---------- .../stockup/distributionStockupDiscuss.vue | 28 +++++----- .../stockup/distributionStockupMarket.vue | 24 ++++---- .../stockup/distributionStockupSelf.vue | 28 +++++----- 4 files changed, 68 insertions(+), 68 deletions(-) diff --git a/src/views/distribution/stockup/distributionStockup.vue b/src/views/distribution/stockup/distributionStockup.vue index fc790c6d..a60ac896 100644 --- a/src/views/distribution/stockup/distributionStockup.vue +++ b/src/views/distribution/stockup/distributionStockup.vue @@ -95,16 +95,16 @@ - - - - - - + + + + + + + + + + - - + + - + @@ -408,16 +408,16 @@ export default { fixed: false, sortable: true, },*/ - { - prop: 'loaderName', - label: '装卸班组', - type: 2, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true, - }, + // { + // prop: 'loaderName', + // label: '装卸班组', + // type: 2, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { prop: 'fixTime', label: '确认完成备货时间', diff --git a/src/views/distribution/stockup/distributionStockupMarket.vue b/src/views/distribution/stockup/distributionStockupMarket.vue index 1f8d26d9..0a0d4945 100644 --- a/src/views/distribution/stockup/distributionStockupMarket.vue +++ b/src/views/distribution/stockup/distributionStockupMarket.vue @@ -107,7 +107,7 @@ - + - - - - - - + + + + + + + + + + - + @@ -401,7 +401,7 @@ export default { // fixed: false, // sortable: true, // }, - { + /*{ prop: 'loaderName', label: '装卸班组', type: 2, @@ -410,7 +410,7 @@ export default { checkarr: [], fixed: false, sortable: true, - }, + },*/ { prop: 'fixTime', label: '确认完成备货时间', From 123b367372636a9ee4259edb8d8c1d352d0b5593 Mon Sep 17 00:00:00 2001 From: "0.0" <1092404103.qq.com> Date: Fri, 8 Sep 2023 17:58:28 +0800 Subject: [PATCH 5/6] =?UTF-8?q?1.=E5=8A=A0=E5=85=A5=E5=8C=85=E6=9D=A1?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../warehouse/tray/basicdataTray.vue | 2 +- .../warehouse/tray/basicdataTrayedt.vue | 47 ++++++++++++- .../warehouse/tray/basicdataTrayhistory.vue | 46 ++++++++++++- .../warehouseStock/warehouseStock.vue | 67 ++++++++++++++++--- 4 files changed, 147 insertions(+), 15 deletions(-) diff --git a/src/views/basicdata/warehouse/tray/basicdataTray.vue b/src/views/basicdata/warehouse/tray/basicdataTray.vue index 34ef9a38..e4436119 100644 --- a/src/views/basicdata/warehouse/tray/basicdataTray.vue +++ b/src/views/basicdata/warehouse/tray/basicdataTray.vue @@ -292,7 +292,7 @@ confirmButtonText: "确定", cancelButtonText: "取消", type: "warning" - }).then(() => { + }) .then(() => { console.log("this.selectionList>>>>>>>>>>>>>>>>>>",this.selectionList); const newList = this.selectionList.map(item => item.palletCode); return vacants(newList); diff --git a/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue b/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue index 9add2718..9828b0ae 100644 --- a/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue +++ b/src/views/basicdata/warehouse/tray/basicdataTrayedt.vue @@ -279,6 +279,18 @@ export default { border: true, selection: true, column: [ + { + label: "服务号", + prop: "serviceNumber", + search: true, + width:"100px" + }, + { + label: "运单号", + prop: "waybillNumber", + search: true, + width:"100px" + }, { label: "包条码", prop: "orderPackageCode", @@ -328,11 +340,42 @@ export default { width:"100px" }, { - label: "运单号", - prop: "waybillNumber", + label: "包件状态", + prop: "orderPackageStatusName", + search: true, + width:"100px" + }, + { + label: "包件冻结状态", + prop: "orderPackageFreezeStatusName", search: true, width:"100px" }, + { + label: "包件上架状态", + prop: "orderPackageGroundingStatusName", + search: true, + width:"100px" + }, + { + label: "包件备货状态", + prop: "orderPackageStockupStatusName", + search: true, + width:"100px" + }, + { + label: "包件预约状态", + prop: "orderPackageReservationStatusName", + search: true, + width:"100px" + }, + { + label: "包件装车状态", + prop: "orderPackageLoadingStatusName", + search: true, + width:"100px" + }, + // { // label: "托盘码", // prop: "pallet", diff --git a/src/views/basicdata/warehouse/tray/basicdataTrayhistory.vue b/src/views/basicdata/warehouse/tray/basicdataTrayhistory.vue index 82460be1..30afccb1 100644 --- a/src/views/basicdata/warehouse/tray/basicdataTrayhistory.vue +++ b/src/views/basicdata/warehouse/tray/basicdataTrayhistory.vue @@ -299,6 +299,18 @@ export default { border: true, selection: true, column: [ + { + label: "服务号", + prop: "serviceNumber", + search: true, + width:"100px" + }, + { + label: "运单号", + prop: "waybillNumber", + search: true, + width:"100px" + }, { label: "包条码", prop: "orderPackageCode", @@ -348,8 +360,38 @@ export default { width:"100px" }, { - label: "运单号", - prop: "waybillNumber", + label: "包件状态", + prop: "orderPackageStatusName", + search: true, + width:"100px" + }, + { + label: "包件冻结状态", + prop: "orderPackageFreezeStatusName", + search: true, + width:"100px" + }, + { + label: "包件上架状态", + prop: "orderPackageGroundingStatusName", + search: true, + width:"100px" + }, + { + label: "包件备货状态", + prop: "orderPackageStockupStatusName", + search: true, + width:"100px" + }, + { + label: "包件预约状态", + prop: "orderPackageReservationStatusName", + search: true, + width:"100px" + }, + { + label: "包件装车状态", + prop: "orderPackageLoadingStatusName", search: true, width:"100px" }, diff --git a/src/views/warehouse/warehouseStock/warehouseStock.vue b/src/views/warehouse/warehouseStock/warehouseStock.vue index 25a39be3..3872242c 100644 --- a/src/views/warehouse/warehouseStock/warehouseStock.vue +++ b/src/views/warehouse/warehouseStock/warehouseStock.vue @@ -79,6 +79,26 @@ export default { sortable: false, head: false, }, + { + prop: 'serviceNumber', + label: '服务号', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'waybillNumber', + label: '运单号', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: 'orderCode', label: '订单自编码', @@ -170,18 +190,44 @@ export default { sortable: true, }, { - prop: 'warehouseEntryTimeEnd', - label: '入库时间', - type: 2, - values: '', - width: '180', - checkarr: [], - fixed: false, - sortable: true, + label: "包件状态", + prop: "orderPackageStatusName", + search: true, + width:"100px" }, { - prop: 'waybillNumber', - label: '运单号', + label: "包件冻结状态", + prop: "orderPackageFreezeStatusName", + search: true, + width:"100px" + }, + { + label: "包件上架状态", + prop: "orderPackageGroundingStatusName", + search: true, + width:"100px" + }, + { + label: "包件备货状态", + prop: "orderPackageStockupStatusName", + search: true, + width:"100px" + }, + { + label: "包件预约状态", + prop: "orderPackageReservationStatusName", + search: true, + width:"100px" + }, + { + label: "包件装车状态", + prop: "orderPackageLoadingStatusName", + search: true, + width:"100px" + }, + { + prop: 'warehouseEntryTimeEnd', + label: '入库时间', type: 2, values: '', width: '180', @@ -189,6 +235,7 @@ export default { fixed: false, sortable: true, }, + { prop: 'operatorName', label: '操作员', From e55aea531e8de0f04bab0d277daeb586d1a47a23 Mon Sep 17 00:00:00 2001 From: caoyizhong <1270296080@qq.com> Date: Fri, 8 Sep 2023 17:59:45 +0800 Subject: [PATCH 6/6] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=87=AA=E6=8F=90?= =?UTF-8?q?=E5=A4=87=E8=B4=A7=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/distributionStockup.js | 4 + .../distributionStockArticleDetails.vue | 7 +- .../distributionStockupDetailsSelf.vue | 81 +++++++++++++++++++ .../stockup/distributionStockupSelf.vue | 2 +- 4 files changed, 91 insertions(+), 3 deletions(-) diff --git a/src/option/distribution/distributionStockup.js b/src/option/distribution/distributionStockup.js index 40f5ef02..ce3fff11 100644 --- a/src/option/distribution/distributionStockup.js +++ b/src/option/distribution/distributionStockup.js @@ -724,6 +724,10 @@ export default { label: "备货区", prop: "stockupArea", }, + { + label: "操作", + prop: "stockupArea", + }, ], columnBasic: [ //基本信息 { diff --git a/src/views/distribution/inventory/distributionStockArticleDetails.vue b/src/views/distribution/inventory/distributionStockArticleDetails.vue index 64b4271a..4abe52c3 100644 --- a/src/views/distribution/inventory/distributionStockArticleDetails.vue +++ b/src/views/distribution/inventory/distributionStockArticleDetails.vue @@ -1370,11 +1370,14 @@ export default { }, onLoad(page, params = {}) { this.loading = true; + console.log("执行了查询零零零零"); this.query.ids = this.$route.query.id; - getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { + getDetail(this.$route.query.id).then(res => { + console.log("返回的数据》》》》",res.data.data); const data = res.data.data; // this.page.total = data.total; - this.data = data.records; + this.data[0]= data; + this.loading = false; this.selectionClear(); }); diff --git a/src/views/distribution/stockup/distributionStockupDetailsSelf.vue b/src/views/distribution/stockup/distributionStockupDetailsSelf.vue index 538b162b..c6e70461 100644 --- a/src/views/distribution/stockup/distributionStockupDetailsSelf.vue +++ b/src/views/distribution/stockup/distributionStockupDetailsSelf.vue @@ -225,6 +225,7 @@ + + +
@@ -312,6 +322,25 @@
--> + +
+
+ + +
+ + + 打 印 + 确 定 + 取 消 + +
@@ -381,10 +410,14 @@ import { getDictionaryBiz } from '@/api/system/dict'; import { getParcelListOwn, getParcelListOwnSelf } from '@/api/distribution/distributionParcelList'; import { stockUp } from '@/api/basicdata/basicdataGoodsArea'; import { getStockDetail } from '@/api/distribution/distributionStock'; +import { getStockTemplate, showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; +import { getLodop } from '@/utils/LodopFuncs'; export default { data() { return { + html: null, // 页面包条码内容 + dialogVisible: false, //二维码控制 height: 0, activeName: 'reservation', // 弹框标题 @@ -489,6 +522,54 @@ export default { }, }, methods: { + //打印 + printTemplate() { + let LODOP = getLodop(); + console.log("LODOP>>>>>",LODOP); + // console.log("this.ids>>>>>",this.selectionList); + // if (this.selectionList.length === 0){ + // this.$message.warning("请选择至少一条数据"); + // return; + // } + getStockTemplate({ id: this.materialQRCode.id }).then(res => { + console.log('返回的数据', res.data.data); + let templateData = res.data.data; + // let templateData = "res.data.data"; + // console.log(templateData); + LODOP.PRINT_INITA(1, 1, 900, 660, '测试预览功能'); + LODOP.SET_PRINT_MODE('WINDOW_DEFPRINTER', 'Godex G500'); + LODOP.SET_PRINT_STYLEA(0,"TextNeatRow",true);//允许标点溢出,且英文单词拆开 + // // 设置打印整宽且不变形 + LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', 'Auto-Width'); + // // 设置打印后自动关闭 + LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1); + // // data就是一段html文本 + LODOP.ADD_PRINT_HTM('0%', '0%', '100%', '100%', templateData); + // LODOP.PREVIEW(); //预览(预览打印无脚标) + LODOP.PRINT(); //直接打印 + + }); + }, + //查看包条码 + handleQRCode(row) { + // this.title = '查看' + // this.view = true; + // this.box = true; + this.materialQRCode = row; + + let qr = { + ids: row.id, + }; + showOrderPackgeCode(qr).then(res => { + // this.orderPackageCode = res.data + console.log(res.data); + this.html='' + this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml) + + }); + + this.dialogVisible = true; + }, //选择 getForklift(row,ty){ switch (ty){ diff --git a/src/views/distribution/stockup/distributionStockupSelf.vue b/src/views/distribution/stockup/distributionStockupSelf.vue index ee544f12..9b233e44 100644 --- a/src/views/distribution/stockup/distributionStockupSelf.vue +++ b/src/views/distribution/stockup/distributionStockupSelf.vue @@ -65,7 +65,7 @@ >