From e21cee35d884c1bff3c9f40269e4581c2e6fbf20 Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Tue, 12 Mar 2024 19:26:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8A=A5=E8=A1=A8=EF=BC=8C?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=8B=A5=E5=B9=B2bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/distributionDeliveryList.js | 14 + src/api/reportforms/index.js | 29 +- src/components/ImgList/ImgList.vue | 45 +++ src/main.js | 2 + src/option/reportforms/InventoryOutbound.js | 160 ++++++++ src/option/reportforms/Selfpickupreport.js | 237 +++++++++++ src/utils/LodopFuncs.js | 13 +- .../warehouse/basicdataWarehouseTemp.vue | 129 +++++- .../distributionDeliveryListedt.vue | 155 ++++++-- .../turndelivery/deliveryDiscuss.vue | 1 + src/views/reportforms/InventoryOutbound.vue | 367 ++++++++++++++++++ src/views/reportforms/Selfpickupreport.vue | 366 +++++++++++++++++ 12 files changed, 1465 insertions(+), 53 deletions(-) create mode 100644 src/components/ImgList/ImgList.vue create mode 100644 src/option/reportforms/InventoryOutbound.js create mode 100644 src/option/reportforms/Selfpickupreport.js create mode 100644 src/views/reportforms/InventoryOutbound.vue create mode 100644 src/views/reportforms/Selfpickupreport.vue diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js index 443026d3..02cebe8d 100644 --- a/src/api/distribution/distributionDeliveryList.js +++ b/src/api/distribution/distributionDeliveryList.js @@ -346,4 +346,18 @@ export const $_cancelDelivery = data => { method: 'post', data: data, }); +}; + + +/** + * 零担签收 + * @param data + * @returns {AxiosPromise} + */ +export const $_deliveryZeroPackage = data => { + return request({ + url: '/api/logpm-distribution/deliveryList/deliveryZeroPackage', + method: 'post', + data: data, + }); }; \ No newline at end of file diff --git a/src/api/reportforms/index.js b/src/api/reportforms/index.js index fd5a546d..9943023a 100644 --- a/src/api/reportforms/index.js +++ b/src/api/reportforms/index.js @@ -55,4 +55,31 @@ export const $_getdetails = (params) => { params, responseType: 'blob', }) - } \ No newline at end of file + } + + // 自提明细报表 +export const $_getSelfpickup = (params) => { + return request({ + url: '/api/logpm-report/reportBillLoading/details', + method: 'get', + params, + }); +}; + +// 自提明细报表报表导出 +export const $_exportSelfpickup = (params) => { + return request({ + url: '/api/logpm-report/reportBillLoading/exportDetails', + method: 'get', + params, + responseType: 'blob', + }) +} +// 库存品出库明细报表 +export const $_getreport = (params) => { + return request({ + url: '/api/logpm-report/stock-out-detail/report', + method: 'get', + params, + }); +}; \ No newline at end of file diff --git a/src/components/ImgList/ImgList.vue b/src/components/ImgList/ImgList.vue new file mode 100644 index 00000000..315cf3b9 --- /dev/null +++ b/src/components/ImgList/ImgList.vue @@ -0,0 +1,45 @@ + + + + + diff --git a/src/main.js b/src/main.js index 07e3b156..abf42306 100644 --- a/src/main.js +++ b/src/main.js @@ -28,6 +28,7 @@ import edittablehead from './components/edittablehead/index.vue'; import WaybillPrintTemplate from './components/WaybillPrintTemplate/WaybillPrintTemplate.vue'; import ArteryPrintTemplate from './components/ArteryPrintTemplate/ArteryPrintTemplate.vue'; import TripartiteTransferPrintTemplate from './components/TripartiteTransferPrintTemplate/TripartiteTransferPrintTemplate.vue'; +import ImgList from './components/ImgList/ImgList.vue'; import { message } from './utils/resetMessage'; import App from './App.vue'; import 'animate.css'; @@ -59,6 +60,7 @@ app.component('WaybillPrintTemplate', WaybillPrintTemplate); app.component('ArteryPrintTemplate', ArteryPrintTemplate); /** 三方运输打印模版 */ app.component('TripartiteTransferPrintTemplate', TripartiteTransferPrintTemplate); +app.component('ImgList', ImgList); app.config.globalProperties.$dayjs = dayjs; app.config.globalProperties.$functions = functions; app.provide('functions', functions); diff --git a/src/option/reportforms/InventoryOutbound.js b/src/option/reportforms/InventoryOutbound.js new file mode 100644 index 00000000..9557c39f --- /dev/null +++ b/src/option/reportforms/InventoryOutbound.js @@ -0,0 +1,160 @@ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'warehouse_name', + label: '仓库', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'market_name', + label: '商场名称', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'cargo_number', + label: '物料编码', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'material_name', + label: '物料名称', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'create_time', + label: '出库时间', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'stock_quantity', + label: '出库件数', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'goods_allocation_name', + label: '货位信息', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'out_type', + label: '出库类型', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'note_number', + label: '配送单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'train_number', + label: '配送车次号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'reservation_code', + label: '预约单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'client_name', + label: '配送客户', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ] \ No newline at end of file diff --git a/src/option/reportforms/Selfpickupreport.js b/src/option/reportforms/Selfpickupreport.js new file mode 100644 index 00000000..2c54252d --- /dev/null +++ b/src/option/reportforms/Selfpickupreport.js @@ -0,0 +1,237 @@ +export const columnList = [ + { + prop: '', + label: '复选框', + type: 0, + width: 55, + fixed: true, + }, + { + prop: '', + label: '序号', + type: 12, + values: '', + width: 55, + fixed: true, + }, + { + prop: 'pickupBatch', + label: '自提批次号', + type: 2, + values: '', + width: '180', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'warehouse', + label: '仓库', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'consigneeUnit', + label: '收货单位', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'waybillNumber', + label: '运单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'orderCode', + label: '订单自编号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'packetBarCode', + label: '包条', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'trainNumber', + label: '客户车次号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'firsts', + label: '一级品', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'second', + label: '二级品', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'thirdProduct', + label: '三级品', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'materialCode', + label: '物料编码', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'materialName', + label: '物料名称', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'startWareInTime', + label: '始发仓入库日期', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'startWareOutTime', + label: '始发仓发货日期', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'warehouseEntryTimeEnd', + label: '入库时间', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'scanUser', + label: '提货扫码人', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'scanTime', + label: '提货扫描时间', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'examineTime', + label: '文员复核时间', + type: 4, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'examineUser', + label: '文员复核人', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + + { + prop: 'createUserName', + label: '操作', + type: 6, + values: '', + width: '200', + checkarr: [], + fixed: 'right', + sortable: false, + }, + ] \ No newline at end of file diff --git a/src/utils/LodopFuncs.js b/src/utils/LodopFuncs.js index d84b885d..ffea2983 100644 --- a/src/utils/LodopFuncs.js +++ b/src/utils/LodopFuncs.js @@ -101,7 +101,12 @@ export function getLodop(oOBJECT, oEMBED) { var strCLodopInstallA = `

检测到到您的打印设备尚未安装驱动或打印服务!请按照以下提示进行操作:

-
+
+
+

安装Web打印服务

+

第一步:请您下载并安装Web打印服务CLodop。点击下载

+
+

打印机驱动下载

@@ -113,11 +118,7 @@ export function getLodop(oOBJECT, oEMBED) {
2020.4
-
-
-

安装Web打印服务

-

第一步:请您下载并安装Web打印服务CLodop。点击下载

-
+
`; // var strCLodopInstallB = "
(若此前已安装过,可点这里直接再次启动)"; var strCLodopInstallB = "
注意事项:"; diff --git a/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue b/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue index 957ddb22..a357a911 100644 --- a/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue +++ b/src/views/basicdata/warehouse/warehouse/basicdataWarehouseTemp.vue @@ -121,23 +121,58 @@ - + + + - + + + - + + + - + + + - + + + @@ -145,7 +180,14 @@ - + + + @@ -157,11 +199,25 @@ - + + + - + + + @@ -173,13 +229,23 @@ - + - + + + + +
+ + + + +
+
+ + + + +
@@ -610,24 +641,29 @@ - - - -
+ +
+ + + + + + + @@ -866,6 +902,7 @@ import { getReservationPackageList, deliveryInventorySign, printBatch, + $_deliveryZeroPackage, } from '@/api/distribution/distributionDeliveryList'; import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; import { showInventoryPackgeCode } from '@/api/distribution/distributionStockList'; @@ -2306,6 +2343,11 @@ export default { //状态列表 stateData: [], // 表单配置 + zeroPg:{ + currentPage: 1, + pageSize: 30, + total: 40, + }, option: { expand: false, index: true, @@ -3961,8 +4003,11 @@ export default { console.log(res, '零担数据'); const data = res.data.data; this.LessThantruckloadListData = data.records; + this.zeroPg.total = data.total; + }) + .catch(() => { + }) - .catch(() => {}) .finally(() => { this.loading = false; //关闭加载 }); @@ -4383,35 +4428,68 @@ export default { message: '请勾选需要批量签收的数据', type: 'warning', }); - return + return; } - this.$confirm('是否进行批量签收?').then(()=>{ - this.loading=true;//开启加载 - if(res.data.code==200){ - this.truckload(this.page); - } - - }).catch(()=>{ - }) + const allSigned = this.LessThantruckloadListData.every( + item => item.signingStatusName == '待签收' || item.signingStatusName == '部分签收' + ); + console.log(allSigned,'allSigned'); + if (!allSigned) { + let temp = {}; + console.log(true); // 如果都已签收,返回true + temp = this.LessThantruckloadListData.find(item => item.signingStatusName == '已签收'); + ElMessage({ + message: `${temp.orderCode}运单号已签收`, + type: 'warning', + }); + return + } + + this.$confirm('是否进行批量签收?') + .then(() => { + this.loading = true; //开启加载 + let data = { + deliveryId: this.deliveryId, + reservationId: this.wid, + zeroPackageIds: this.selectionList.map(item => item.id).join(','), + }; + $_deliveryZeroPackage(data).then(res => { + if (res.data.code == 200) { + ElMessage({ + showClose: true, + message: res.data.msg, + type: 'success', + }) + this.truckload(this.page); + this.selectionList = []; + } + }).catch(()=>{ + + }).finally(()=>{ + this.loading = false; //关闭加载 + }); + }) + .catch(() => {}); }, // 零担批量计划取消 LdBatchcancellation() { + return if (!this.selectionList.length) { ElMessage({ message: '请勾选需要计划取消的数据', type: 'warning', }); - return + return; } - this.$confirm('是否进行批量计划取消?').then(()=>{ - this.loading=true;//开启加载 - if(res.data.code == 200){ - this.truckload(this.page); - } - }).catch(()=>{ - - }) + this.$confirm('是否进行批量计划取消?') + .then(() => { + this.loading = true; //开启加载 + if (res.data.code == 200) { + this.truckload(this.page); + } + }) + .catch(() => {}); }, // 批量签收 Batchsigning() { @@ -5065,6 +5143,7 @@ export default { console.log('库存品包件>>>>>>>', res.data.data); const data = res.data.data; this.reservationInventoryPackageData = data.records; + this.wpage.total = data.total; this.loading = false; //关闭加载 }); }, @@ -5132,10 +5211,30 @@ export default { this.wpage.currentPage = currentPage; this.getWrapdetails(this.wpage); }, + // 包件库存品 + InventorycurrentChange(currentPage){ + this.wpage.currentPage = currentPage; + this.getReservationInventoryPackageListInfo(this.wpage) + }, wsizeChange(pageSize) { this.wpage.pageSize = pageSize; this.getWrapdetails(this.wpage); }, + // 包件库存品 + InventoryChange(pageSize){ + this.wpage.pageSize = pageSize; + this.getReservationInventoryPackageListInfo(this.wpage) + }, + // 零担 + zeroChange(pageSize){ + this.zeroPg.pageSize = pageSize; + this.truckload(this.zeroPg); + }, + // 零担 + zerocurrentChange(currentPage){ + this.zeroPg.currentPag=currentPage; + this.truckload(this.zeroPg); + }, winputsc(index, row) { this.wrapoption.query[row.prop] = index; this.getWrapdetails(this.wpage); diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue index 97b705e9..d56e188e 100644 --- a/src/views/distribution/turndelivery/deliveryDiscuss.vue +++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue @@ -292,6 +292,7 @@ > + + + + + \ No newline at end of file diff --git a/src/views/reportforms/Selfpickupreport.vue b/src/views/reportforms/Selfpickupreport.vue new file mode 100644 index 00000000..47bf3a5b --- /dev/null +++ b/src/views/reportforms/Selfpickupreport.vue @@ -0,0 +1,366 @@ + + + + + + \ No newline at end of file