From bcdaea7e72f0b95766fa1ac2a121104ba8abc30a Mon Sep 17 00:00:00 2001 From: qb <1191961160@qq.com> Date: Wed, 22 Nov 2023 22:24:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=B9=B2=E7=BA=BF=E6=8F=90?= =?UTF-8?q?=E8=B4=A7=E9=A1=B5=E9=9D=A2=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../arteryDistrilbutionBillLadingList.js | 100 +++ .../arteryDistrilbutionBillLadingList.js | 76 +- src/router/views/index.js | 20 +- .../arteryDistrilbutionBillLadingList.vue | 409 +++++++++- ...teryDistrilbutionBillLadingListDetails.vue | 732 ++++++++++++++++++ .../inventory/distrilbutionBillLading.vue | 11 +- .../inventory/distrilbutionBillLadingList.vue | 132 +++- 7 files changed, 1371 insertions(+), 109 deletions(-) create mode 100644 src/api/distribution/arteryDistrilbutionBillLadingList.js create mode 100644 src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue diff --git a/src/api/distribution/arteryDistrilbutionBillLadingList.js b/src/api/distribution/arteryDistrilbutionBillLadingList.js new file mode 100644 index 00000000..7b21fd36 --- /dev/null +++ b/src/api/distribution/arteryDistrilbutionBillLadingList.js @@ -0,0 +1,100 @@ +import request from '@/axios'; + +/** + * 获取提货单列表 + */ +export const postPageList = data => { + return request({ + url: '/api/logpm-trunkline/billlading/pageList', + method: 'post', + data, + }); +}; + +/** + * 查询所有计费方式 + */ +export const postFindChargeTypeList = data => { + return request({ + url: '/api/logpm-trunkline/billlading/findChargeTypeList', + method: 'post', + data, + }); +}; + +/** + * 创建新提货单 + */ +export const postSaveNew = data => { + return request({ + url: '/api/logpm-trunkline/billlading/saveNew', + method: 'post', + data, + }); +}; + +/** + * 查询运单列表 + */ +export const postList = data => { + return request({ + url: '/api/logpm-warehouseWaybill/list', + method: 'post', + data, + }); +}; + +/** + * 更新提货单状态 + */ +export const postUpdateBillladingStatus = data => { + return request({ + url: '/api/logpm-trunkline/billlading/updateBillladingStatus', + method: 'post', + data, + }); +}; + +/** + * 查询提货单详情 + */ +export const postBillladingDetail = data => { + return request({ + url: '/api/logpm-trunkline/billlading/billladingDetail', + method: 'post', + data, + }); +}; + +/** + * 查询提货单包件明细 + */ +export const postBillladingPackageDetail = data => { + return request({ + url: '/api/logpm-trunkline/billlading/billladingPackageDetail', + method: 'post', + data, + }); +}; + +/** + * 更新提货单关联运单数据 + */ +export const postUpdateBillladingWaybillNum = data => { + return request({ + url: '/api/logpm-trunkline/billlading/updateBillladingWaybillNum', + method: 'post', + data, + }); +}; + +/** + * 提货单添加运单 + */ +export const postAddWaybillToBillladingId = data => { + return request({ + url: '/api/logpm-trunkline/billlading/addWaybillToBillladingId', + method: 'post', + data, + }); +}; diff --git a/src/option/distribution/arteryDistrilbutionBillLadingList.js b/src/option/distribution/arteryDistrilbutionBillLadingList.js index 388d9a19..860c1def 100644 --- a/src/option/distribution/arteryDistrilbutionBillLadingList.js +++ b/src/option/distribution/arteryDistrilbutionBillLadingList.js @@ -16,7 +16,7 @@ export const columnList = [ fixed: true, }, { - prop: 'pickupBatch', + prop: 'billladingCode', label: '提货批次', type: 13, values: '', @@ -27,8 +27,8 @@ export const columnList = [ head: false, }, { - prop: 'serviceNumber', - label: '车牌', + prop: 'carNumber', + label: '车牌号', type: 2, values: '', width: '130', @@ -37,7 +37,7 @@ export const columnList = [ sortable: true, }, { - prop: 'waybillNumber', + prop: 'driverName', label: '司机名称', type: 2, values: '', @@ -47,7 +47,7 @@ export const columnList = [ sortable: true, }, { - prop: 'consigneeUnit', + prop: 'driverPhone', label: '司机电话', type: 2, values: '', @@ -57,7 +57,7 @@ export const columnList = [ sortable: true, }, { - prop: 'customerName', + prop: 'warehouseName', label: '仓库名称', type: 2, values: '', @@ -67,7 +67,7 @@ export const columnList = [ sortable: true, }, { - prop: 'customerTelephone', + prop: 'lineNameTitle', label: '线路标题', type: 1, values: '', @@ -77,7 +77,7 @@ export const columnList = [ sortable: true, }, { - prop: 'warehouse', + prop: 'nodeNub', label: '线路节点数', type: 2, values: '', @@ -87,7 +87,7 @@ export const columnList = [ sortable: true, }, { - prop: 'warehouseEntryTime', + prop: 'startTime', label: '提货开始时间', type: 4, values: '', @@ -97,7 +97,7 @@ export const columnList = [ sortable: true, }, { - prop: 'collectFee', + prop: 'endTime', label: '提货完成时间', type: 4, values: '', @@ -107,7 +107,7 @@ export const columnList = [ sortable: true, }, { - prop: 'transport', + prop: 'planVolume', label: '预计数量', type: 2, values: '', @@ -117,7 +117,7 @@ export const columnList = [ sortable: true, }, { - prop: 'storageFee', + prop: 'billladingStatus', label: '状态', type: 3, values: '', @@ -127,7 +127,7 @@ export const columnList = [ sortable: true, }, { - prop: 'forklift', + prop: 'chargeType', label: '计费模式', type: 3, values: '', @@ -137,7 +137,7 @@ export const columnList = [ sortable: true, }, { - prop: 'otherFee', + prop: 'totalFee', label: '提货费用', type: 2, values: '', @@ -147,7 +147,7 @@ export const columnList = [ sortable: true, }, { - prop: 'pickUpTime', + prop: 'remark', label: '备注', type: 2, values: '', @@ -157,7 +157,7 @@ export const columnList = [ sortable: true, }, { - prop: 'totalNumber', + prop: 'carrierName', label: '承运商', type: 2, values: '', @@ -167,7 +167,7 @@ export const columnList = [ sortable: true, }, { - prop: 'stopNum', + prop: 'waybillCount', label: '单数', type: 2, values: '', @@ -177,7 +177,7 @@ export const columnList = [ sortable: true, }, { - prop: 'brand', + prop: 'totalNum', label: '件数', type: 2, values: '', @@ -187,7 +187,7 @@ export const columnList = [ sortable: true, }, { - prop: 'productInformation', + prop: 'totalWeight', label: '重量', type: 2, values: '', @@ -197,7 +197,7 @@ export const columnList = [ sortable: true, }, { - prop: 'customerTelephone', + prop: 'totalVolume', label: '体积', type: 2, values: '', @@ -207,7 +207,7 @@ export const columnList = [ sortable: false, }, { - prop: 'consignee', + prop: 'createUserName', label: '创建人', type: 2, values: '', @@ -247,7 +247,7 @@ export const columnDetailList = [ fixed: true, }, { - prop: 'pickupBatch', + prop: 'billladingCode', label: '提货批次', type: 2, values: '', @@ -258,7 +258,7 @@ export const columnDetailList = [ head: false, }, { - prop: 'serviceNumber', + prop: 'driverName', label: '提货司机', type: 2, values: '', @@ -268,7 +268,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'waybillNumber', + prop: 'carNumber', label: '提货车牌', type: 2, values: '', @@ -278,7 +278,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'consigneeUnit', + prop: 'waybillNo', label: '运单号', type: 2, values: '', @@ -288,7 +288,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'customerName', + prop: 'orderCode', label: '合同号', type: 2, values: '', @@ -298,7 +298,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'customerTelephone', + prop: 'destination', label: '目的地', type: 2, values: '', @@ -308,7 +308,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'warehouse', + prop: 'incomingType', label: '入库类型', type: 2, values: '', @@ -318,7 +318,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'warehouseEntryTime', + prop: '', label: '是否齐套', type: 2, values: '', @@ -328,7 +328,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'collectFee', + prop: 'trayCode', label: '托盘码', type: 2, values: '', @@ -338,7 +338,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'transport', + prop: 'firstPickName', label: '一级品类', type: 2, values: '', @@ -348,7 +348,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'storageFee', + prop: 'secondPickName', label: '二级品类', type: 2, values: '', @@ -358,7 +358,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'forklift', + prop: 'thirdPickName', label: '三级品类', type: 2, values: '', @@ -368,7 +368,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'otherFee', + prop: 'materialName', label: '物料名称', type: 2, values: '', @@ -378,7 +378,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'pickUpTime', + prop: 'brand', label: '品牌', type: 2, values: '', @@ -388,7 +388,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'totalNumber', + prop: '', label: '操作仓库', type: 2, values: '', @@ -398,7 +398,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'stopNum', + prop: 'createUserName', label: '操作人', type: 2, values: '', @@ -408,7 +408,7 @@ export const columnDetailList = [ sortable: true, }, { - prop: 'brand', + prop: '', label: '提货扫码时间', type: 4, values: '', diff --git a/src/router/views/index.js b/src/router/views/index.js index 9bcc642b..f40ada16 100644 --- a/src/router/views/index.js +++ b/src/router/views/index.js @@ -201,10 +201,10 @@ export default [ ], }, { - path: '/distribution/inventory/arteryDistrilbutionBillLadingList', + path: '/distribution/inventory', component: Layout, - key: 'fullPath', - redirect: '/distribution/inventory', + // key: 'fullPath', + redirect: '/distribution/inventory/arteryDistrilbutionBillLadingList', children: [ { path: '/distribution/inventory/arteryDistrilbutionBillLadingList', @@ -212,9 +212,18 @@ export default [ meta: { data: 'data', }, + component: () => + import('@/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue'), + }, + { + path: '/distribution/inventory/arteryDistrilbutionBillLadingListDetails', + name: '干线提货管理详情', + meta: { + data: 'data', + }, component: () => import( - /* webpackChunkName: "views" */ '@/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue' + /* webpackChunkName: "views" */ '@/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue' ), }, ], @@ -688,7 +697,7 @@ export default [ name: '配送查看', meta: { i18n: 'dict', - keepAlive:true + keepAlive: true, }, props: route => ({ name: route.query.name, @@ -1067,7 +1076,6 @@ export default [ ], }, - // { // path: '/distribution/turndelivery/devtmp', // component: Layout, diff --git a/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue b/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue index a94962c8..6c3812fc 100644 --- a/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/arteryDistrilbutionBillLadingList.vue @@ -45,11 +45,21 @@ 添加提货数据 - 提货完成 - 取消完成 - 取消提货 - 结 算 - 取消结算 + 提货完成 + 取消完成 + 取消提货 + 结 算 + 取消结算 @@ -139,7 +149,27 @@ - + + + - + + + - + + + - + - + @@ -340,7 +410,9 @@ 节点信息 - 创建新节点 + 创建新节点 @@ -355,25 +427,22 @@ - + + @@ -429,10 +498,10 @@ - + - + 取 消 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 提 交 + 取 消 @@ -629,6 +770,8 @@ + + { + const _number = Number(item.distance); + // 判断是否为数字 + if (_number === _number) return curr + _number; + return curr; + }, 0); + }, + + /** 总时效 */ + totalAging() { + return this.addLineInfo.lineList.reduce((curr, item) => { + const _number = Number(item.aging); + if (_number === _number) return (curr += _number); + return curr; + }, 0); + }, }, methods: { /** 导出 */ @@ -993,6 +1186,121 @@ export default { this.title = '添加提货数据'; this.popUpShow.addDistrilbutionVisited = true; }, + /** 提货完成 */ + handleDistributionConfirm() { + if (this.selectionList.length === 0) return this.$message.error('最少选择一条数据'); + + this.$confirm('确定将选择数据提货完成?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'success', + }) + .then(() => { + return remove(this.ids); + }) + .then(() => { + // 清空复选框 + this.selectionClear(); + // 刷新表格 + this.onLoad(this.page); + this.$message({ + type: 'success', + message: '操作成功!', + }); + }); + }, + /** 取消提货完成 */ + handleCloseConfirm() { + if (this.selectionList.length === 0) return this.$message.error('最少选择一条数据'); + + this.$confirm('确定将选择数据取消提货完成?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + return remove(this.ids); + }) + .then(() => { + // 清空复选框 + this.selectionClear(); + // 刷新表格 + this.onLoad(this.page); + this.$message({ + type: 'success', + message: '操作成功!', + }); + }); + }, + /** 取消提货 */ + handleDistributionClose() { + if (this.selectionList.length === 0) return this.$message.error('最少选择一条数据'); + + this.$confirm('确定将选择数据取消提货?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + return remove(this.ids); + }) + .then(() => { + // 清空复选框 + this.selectionClear(); + // 刷新表格 + this.onLoad(this.page); + this.$message({ + type: 'success', + message: '操作成功!', + }); + }); + }, + /** 结算 */ + handleSettleAccounts() { + if (this.selectionList.length === 0) return this.$message.error('最少选择一条数据'); + + this.$confirm('确定将选择数据结算?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'success', + }) + .then(() => { + return remove(this.ids); + }) + .then(() => { + // 清空复选框 + this.selectionClear(); + // 刷新表格 + this.onLoad(this.page); + this.$message({ + type: 'success', + message: '操作成功!', + }); + }); + }, + /** 取消结算 */ + handleCloseSettleAccounts() { + if (this.selectionList.length === 0) return this.$message.error('最少选择一条数据'); + + this.$confirm('确定将选择数据取消结算?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(() => { + return remove(this.ids); + }) + .then(() => { + // 清空复选框 + this.selectionClear(); + // 刷新表格 + this.onLoad(this.page); + this.$message({ + type: 'success', + message: '操作成功!', + }); + }); + }, /** 删除 */ handleDeleteOwn(row) { console.log('删除!!', row); @@ -1000,12 +1308,13 @@ export default { /** 查询详细 */ handleLike(row) { console.log('row :>> ', row); - // this.$router.push({ - // path: '/distribution/inventory/distrilbutionBillLadingView', - // query: { - // id: row.row.id, - // }, - // }); + this.$router.push({ + path: '/distribution/inventory/arteryDistrilbutionBillLadingListDetails', + query: { + id: row.row.id, + name: '编辑提货单', + }, + }); }, /** 查看 */ handleEdits(row) { @@ -1114,7 +1423,7 @@ export default { this.addInfo.haveIds = this.addInfo.map(val => val.id); }, /** 请求页面数据 */ - onLoad(page, params = {}) { + async onLoad(page, params = {}) { this.loading = true; if (this.stockupDate.length > 0) { let startDate = this.stockupDate[0]; @@ -1228,6 +1537,34 @@ export default { this.shop.push(st); }); }, + //客户编号 + async remoteCodeMethod(query) { + if (query) { + // this.loading = true; + this.options = []; + this.form.clientId = null; + let cl = await getListClient(this.page.currentPage, this.page.pageSize, { + clientCode: query, + }); + console.log('客户信息1234>>>>', cl.data.data.records); + cl.data.data.records.forEach(i => { + let st = { + label: i.clientName, + value: i.id, + code: i.clientCode, + }; + this.options.push(st); + }); + // setTimeout(() => { + // this.loading = false + // this.loading = this.list.filter((item) => { + // return item.label.toLowerCase().includes(query.toLowerCase()) + // }) + // }, 200) + } else { + this.options = []; + } + }, }, }; @@ -1382,8 +1719,12 @@ export default { margin-right: 10%; } -.popUpselect :deep(.el-select__popper) { +:deep(.popUpselect .el-select__popper) { inset: auto !important; - top: 110% !important; + top: 120% !important; +} + +:deep(.avue-input-map) { + width: 100%; } diff --git a/src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue b/src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue new file mode 100644 index 00000000..db2ffaff --- /dev/null +++ b/src/views/distribution/inventory/arteryDistrilbutionBillLadingListDetails.vue @@ -0,0 +1,732 @@ + + + + + + 提货基本信息 + + + 批次代码:{{ deliverydata.kindName }} + + + 提货线路:{{ deliverydata.vehicleName }} + + + 提货车辆:{{ deliverydata.vehicleName }} + + + + + + 司机:{{ deliverydata.kindName }} + + + 预计件数{{ deliverydata.vehicleName }} + + + 承运商:{{ deliverydata.vehicleName }} + + + + + + 计费模式:{{ deliverydata.kindName }} + + + 提货费用:{{ deliverydata.vehicleName }} + + + 备注:{{ deliverydata.vehicleName }} + + + + + + + + + + + + + + + + + 搜 索 + 清 空 + + + + + + + + + + + + + + + + + + + + + {{ + // slotProps.scope.row.pickupBatch + 123 + }} + + + 编辑 + + + + + + 选择数: 12, + 选择数: 12, + 选择数: 12, + 选择数: 12 + + + + + + + 确认修改 + + + + + + + + + + {{ new Date() }} + + + + + + {{ new Date() }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/distribution/inventory/distrilbutionBillLading.vue b/src/views/distribution/inventory/distrilbutionBillLading.vue index 37336dc3..c9f03335 100644 --- a/src/views/distribution/inventory/distrilbutionBillLading.vue +++ b/src/views/distribution/inventory/distrilbutionBillLading.vue @@ -54,7 +54,12 @@ - + + + + + + @@ -81,7 +86,7 @@ - + @@ -314,7 +319,7 @@ :total="pageStock.total" > - + diff --git a/src/views/distribution/inventory/distrilbutionBillLadingList.vue b/src/views/distribution/inventory/distrilbutionBillLadingList.vue index f7743bf3..bab4734d 100644 --- a/src/views/distribution/inventory/distrilbutionBillLadingList.vue +++ b/src/views/distribution/inventory/distrilbutionBillLadingList.vue @@ -10,8 +10,15 @@ - + @@ -29,7 +36,8 @@ - 已提货:{{ stopNum }}单/{{ numBill }}件 + 已提货:{{ stopNum }}单/{{ numBill }}件 @@ -38,12 +46,27 @@ - 创建自提 - 自提签收 - 导出 + 创建自提 + 自提签收 + 导出 @@ -56,32 +79,76 @@ - + - 查看 - 签收 - 编辑提货信息 + 查看 + 签收 + 编辑提货信息 - + 勾选数量: {{ selectionList.length }} - + - + @@ -98,8 +165,12 @@ - + @@ -110,7 +181,9 @@ - 提 交 + 提 交 取 消 @@ -268,7 +341,12 @@ --> - + @@ -1163,8 +1241,6 @@ export default { padding: 0; } - - :deep(.avue-crud) { display: flex; height: 100%;