diff --git a/src/api/addvalue/distributionAddvalue.js b/src/api/addvalue/distributionAddvalue.js new file mode 100644 index 00000000..b6cb9cac --- /dev/null +++ b/src/api/addvalue/distributionAddvalue.js @@ -0,0 +1,50 @@ +import request from '@/axios'; + +export const getList = (current, size, params) => { + return request({ + url: '/addvalue/distributionAddvalue/list', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} + +export const getDetail = (id) => { + return request({ + url: '/addvalue/distributionAddvalue/detail', + method: 'get', + params: { + id + } + }) +} + +export const remove = (ids) => { + return request({ + url: '/addvalue/distributionAddvalue/remove', + method: 'post', + params: { + ids, + } + }) +} + +export const add = (row) => { + return request({ + url: '/addvalue/distributionAddvalue/submit', + method: 'post', + data: row + }) +} + +export const update = (row) => { + return request({ + url: '/addvalue/distributionAddvalue/submit', + method: 'post', + data: row + }) +} + diff --git a/src/api/addvalue/distributionAddvalueDetail.js b/src/api/addvalue/distributionAddvalueDetail.js new file mode 100644 index 00000000..a85839b2 --- /dev/null +++ b/src/api/addvalue/distributionAddvalueDetail.js @@ -0,0 +1,50 @@ +import request from '@/axios'; + +export const getList = (current, size, params) => { + return request({ + url: '/addvalueDetail/distributionAddvalueDetail/list', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} + +export const getDetail = (id) => { + return request({ + url: '/addvalueDetail/distributionAddvalueDetail/detail', + method: 'get', + params: { + id + } + }) +} + +export const remove = (ids) => { + return request({ + url: '/addvalueDetail/distributionAddvalueDetail/remove', + method: 'post', + params: { + ids, + } + }) +} + +export const add = (row) => { + return request({ + url: '/addvalueDetail/distributionAddvalueDetail/submit', + method: 'post', + data: row + }) +} + +export const update = (row) => { + return request({ + url: '/addvalueDetail/distributionAddvalueDetail/submit', + method: 'post', + data: row + }) +} + diff --git a/src/api/addvalue/distributionAddvaluePackage.js b/src/api/addvalue/distributionAddvaluePackage.js new file mode 100644 index 00000000..bcc0ad04 --- /dev/null +++ b/src/api/addvalue/distributionAddvaluePackage.js @@ -0,0 +1,50 @@ +import request from '@/axios'; + +export const getList = (current, size, params) => { + return request({ + url: '/addvaluePackage/distributionAddvaluePackage/list', + method: 'get', + params: { + ...params, + current, + size, + } + }) +} + +export const getDetail = (id) => { + return request({ + url: '/addvaluePackage/distributionAddvaluePackage/detail', + method: 'get', + params: { + id + } + }) +} + +export const remove = (ids) => { + return request({ + url: '/addvaluePackage/distributionAddvaluePackage/remove', + method: 'post', + params: { + ids, + } + }) +} + +export const add = (row) => { + return request({ + url: '/addvaluePackage/distributionAddvaluePackage/submit', + method: 'post', + data: row + }) +} + +export const update = (row) => { + return request({ + url: '/addvaluePackage/distributionAddvaluePackage/submit', + method: 'post', + data: row + }) +} + diff --git a/src/api/distribution/disStockListDetail.js b/src/api/distribution/disStockListDetail.js index 86b163f6..d0713238 100644 --- a/src/api/distribution/disStockListDetail.js +++ b/src/api/distribution/disStockListDetail.js @@ -22,6 +22,21 @@ export const getDisStockList = (params) => { }) } +/** + * 库存品打印模板 + * @param params + * @returns {AxiosPromise} + */ +export const getPrintDetail = (params) => { + return request({ + url: '/api/logpm-distribution/disStockListDetail/getPrintDetail', + method: 'get', + params: { + ...params, + } + }) +} + export const getDetail = (id) => { return request({ url: '/api/logpm-distribution/disStockListDetail/detail', diff --git a/src/option/addvalue/distributionAddvalue.js b/src/option/addvalue/distributionAddvalue.js new file mode 100644 index 00000000..a640ab4d --- /dev/null +++ b/src/option/addvalue/distributionAddvalue.js @@ -0,0 +1,102 @@ +export default { + expand: false, + index: true, + border: true, + selection: true, + column: [ + { + label: "主键", + prop: "id", + display: false, + hide: true, + }, + { + 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: "增值服务关联码表;码表;1-上楼、2-超区、3-拆样、4-平移、5-分拣、6-搬运、7-返货;", + prop: "addvalueId", + }, + { + label: "关联表ID", + prop: "refId", + }, + { + label: "关联类型 1 预约单 2 配送单 3 .", + prop: "refType", + }, + { + label: "编号", + prop: "code", + }, + { + label: "预留1", + prop: "reserve1", + }, + { + label: "预留2", + prop: "reserve2", + }, + { + label: "预留3", + prop: "reserve3", + }, + { + label: "预留4", + prop: "reserve4", + }, + { + label: "预留5", + prop: "reserve5", + }, + { + label: "费用", + prop: "fee", + }, + ] +} diff --git a/src/option/addvalue/distributionAddvalueDetail.js b/src/option/addvalue/distributionAddvalueDetail.js new file mode 100644 index 00000000..37ebd131 --- /dev/null +++ b/src/option/addvalue/distributionAddvalueDetail.js @@ -0,0 +1,110 @@ +export default { + expand: false, + index: true, + border: true, + selection: true, + column: [ + { + 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: "createDept", + display: false, + hide: true, + }, + { + label: "是否删除", + prop: "isDeleted", + display: false, + hide: true, + }, + { + label: "主键", + prop: "id", + display: false, + hide: true, + }, + { + label: "增值服务ID", + prop: "addvalueId", + }, + { + label: "包件记录类型 1 全部订单和包间 2 扫码订单和包件 3手动输入", + prop: "recordType", + }, + { + label: "状态", + prop: "status", + display: false, + hide: true, + }, + { + label: "预留1", + prop: "reserve1", + }, + { + label: "预留2", + prop: "reserve2", + }, + { + label: "预留3", + prop: "reserve3", + }, + { + label: "预留4", + prop: "reserve4", + }, + { + label: "预留5", + prop: "reserve5", + }, + { + label: "费用", + prop: "fee", + }, + { + label: "件数【来源于下级子表】", + prop: "num", + }, + { + label: "基数;根据配置文件读取出来的基数值 用于计算费用", + prop: "radix", + }, + { + label: "楼层数", + prop: "floolNum", + }, + { + label: "公里;用于 平移和超区的附属字段 整数 计量单位按照M 来计算", + prop: "distance", + }, + ] +} diff --git a/src/option/addvalue/distributionAddvaluePackage.js b/src/option/addvalue/distributionAddvaluePackage.js new file mode 100644 index 00000000..d387463a --- /dev/null +++ b/src/option/addvalue/distributionAddvaluePackage.js @@ -0,0 +1,118 @@ +export default { + expand: false, + index: true, + border: true, + selection: true, + column: [ + { + 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: "预留1", + prop: "reserve1", + }, + { + label: "预留2", + prop: "reserve2", + }, + { + label: "预留3", + prop: "reserve3", + }, + { + label: "预留4", + prop: "reserve4", + }, + { + label: "预留5", + prop: "reserve5", + }, + { + label: "包件ID", + prop: "packageId", + }, + { + label: "包件类型;1-订制品;2-库存品", + prop: "conditions", + }, + { + label: "包条码", + prop: "orderPackageCode", + }, + { + label: "订单自编号", + prop: "orderCode", + }, + { + label: "商配名称", + prop: "materialName", + }, + { + label: "订单ID", + prop: "stockArticleId", + }, + { + label: "数量", + prop: "quantity", + }, + { + label: "客户ID", + prop: "reservationId", + }, + { + label: "增值服务详情表ID", + prop: "addvalueDetailId", + }, + ] +} diff --git a/src/views/addvalue/distributionAddvalue.vue b/src/views/addvalue/distributionAddvalue.vue new file mode 100644 index 00000000..eb871586 --- /dev/null +++ b/src/views/addvalue/distributionAddvalue.vue @@ -0,0 +1,303 @@ + + + diff --git a/src/views/addvalue/distributionAddvalueDetail.vue b/src/views/addvalue/distributionAddvalueDetail.vue new file mode 100644 index 00000000..c5e96a83 --- /dev/null +++ b/src/views/addvalue/distributionAddvalueDetail.vue @@ -0,0 +1,309 @@ + + + diff --git a/src/views/addvalue/distributionAddvaluePackage.vue b/src/views/addvalue/distributionAddvaluePackage.vue new file mode 100644 index 00000000..ae0f86a9 --- /dev/null +++ b/src/views/addvalue/distributionAddvaluePackage.vue @@ -0,0 +1,315 @@ + + + diff --git a/src/views/basicdata/brand/basicClient.vue b/src/views/basicdata/brand/basicClient.vue index f9176535..ecd09cfb 100644 --- a/src/views/basicdata/brand/basicClient.vue +++ b/src/views/basicdata/brand/basicClient.vue @@ -1,7 +1,7 @@ @@ -188,7 +188,7 @@ - + @@ -205,7 +205,7 @@ - + this.signtitle",this.signtitle); this.$refs.signform.validate(valid => { if (valid) { - if ((this.signtitle = '复核签收')) { + if ((this.signtitle === '复核签收')) { let row = {}; console.log( 'this.signform.deliverySignPictures>>>>>>>>>', this.signform.deliverySignPictures ); row.id = this.signform.deliveryId; - row.deliverySignPictures = this.signform.deliverySignPictures; + row.deliverySignPictures = this.signform.deliverySignPictures.join(","); row.clerkSignRemarks = this.signform.clerkSignRemarks; row.signingTime = dayjs().format('YYYY-MM-DD HH:mm:ss'); row.signingStatus = '2'; console.log('更新参数>>>>>>>>', row); // if (!!row.id){ - updatesign(row).then( - () => { - this.$message({ - type: 'success', - message: '操作成功!', - }); - this.signBox = false; - this.onLoad(); - }, - error => { - console.log(error); - this.signBox = false; - } - ); + // updatesign(row).then( + // () => { + // this.$message({ + // type: 'success', + // message: '操作成功!', + // }); + // this.signBox = false; + // this.onLoad(); + // }, + // error => { + // console.log(error); + // this.signBox = false; + // } + // ); } else { let data = {}; - data.reservationId = row.id; + console.log("---------------->this.deliverydata",this.deliverydata); + console.log("---------------->this.signform",this.signform); + data.reservationId = this.signform.id; data.deliveryId = this.deliverydata.id; - data.deliverySignPictures = this.signform.deliverySignPictures; + data.deliverySignPictures = this.signform.deliverySignPictures.join(","); data.clerkSignRemarks = this.signform.clerkSignRemarks; console.log('一键签收data>>>>>>>>>>', data); getOneclickq(data).then(res => { @@ -2379,8 +2392,8 @@ export default { res => { console.log('查看>>>>>库存>>', res.data.data); const data = res.data.data; - this.inventorydata = data.records; - this.inventorypage.total = data.total; + this.inventorydata = data; + // this.inventorypage.total = data.total; } ); }, @@ -2427,6 +2440,7 @@ export default { let data = {}; data.reservationId = row.id; data.deliveryId = this.deliverydata.id; + console.log("------------->data",data); getOneclick(data).then(res => { this.$message.success(res.data.msg); this.onLoad(); @@ -2549,26 +2563,48 @@ export default { getDetail(id).then(res => { console.log('res.data>>>>>>>>>>>>', res.data.data); const data = res.data.data; + this.deliverydata = data this.deliverydata.outboundDate = data.stockupInfo.outboundDate; - console.log( - 'data.stockupInfo.teamResponsibility------------------->', - data.stockupInfo.teamResponsibility - ); - let a = data.stockupInfo.teamResponsibility.split(','); - let b = []; - a.forEach(item => { - switch (item) { - case '1': - b.push('装'); - return; - case '2': - b.push('卸'); - } - }); + this.deliverydata.forkliftName = data.stockupInfo.forkliftName; - this.deliverydata.teamResponsibility = b.join(','); - //this.deliverydata = data + console.log('this.deliverydata>>>>>>>>>>>>', this.deliverydata); + // this.deliverydata.teamResponsibility = b.join(','); + // console.log( + // 'data.stockupInfo.teamResponsibility------------------->', + // data.stockupInfo.teamResponsibility + // ); + // let a = data.stockupInfo.teamResponsibility.split(','); + // let b = []; + // a.forEach(item => { + // switch (item) { + // case '1': + // b.push('装'); + // return; + // case '2': + // b.push('卸'); + // } + // }); this.data = data.reservationList; + let a = 0; + let packNum =0 ; + let invenNum =0 ; + let signNum =0 ; + this.data.map(item=>{ + console.log("--------------->item",item); + a += parseInt(item.inventoryNub)+parseInt(item.loadedNub); + packNum += parseInt(item.reservationNum); + invenNum += parseInt(item.reservationStockListNum); + signNum += parseInt(item.receivedQuantity); + }) + + this.deliverydata.scannedNumber = a; + this.deliverydata.deliveryNumber = packNum; + this.deliverydata.inventoryNub = invenNum; + this.deliverydata.signingNumber = signNum; + console.log("---------------------------->a",a); + console.log("---------------------------->packNum",packNum); + console.log("---------------------------->invenNum",invenNum); + console.log("---------------------------->signNum",signNum); }); this.handleOrder(this.packpage); this.handlePackage(this.packpage); diff --git a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue index 97812a62..d0eb2d32 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListmar.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListmar.vue @@ -464,7 +464,17 @@ export default { }, { prop: 'loadingTeamName', - label: '装卸班组', + label: '装车班组', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + prop: 'loadingTeamName', + label: '装车班组', type: 2, values: '', width: '150', diff --git a/src/views/distribution/reservation/reservation.vue b/src/views/distribution/reservation/reservation.vue index 7c8c2912..7483a283 100644 --- a/src/views/distribution/reservation/reservation.vue +++ b/src/views/distribution/reservation/reservation.vue @@ -1351,7 +1351,7 @@ let b = []; console.log('>>>>>>>>>>>>>', data); data.forEach(d => { - if (d.stockupStatus === '20' || d.stockupStatusName === '待备货') { + if (d.stockupStatus === '20' || d.stockupStatusName === '待备货' ) { a.push(d.reservationCode); } if (d.stockupStatus === '30' || d.stockupStatusName === '已备货') { diff --git a/src/views/distribution/reservation/reservationDetails.vue b/src/views/distribution/reservation/reservationDetails.vue index 2a60f1a3..4c19d7e1 100644 --- a/src/views/distribution/reservation/reservationDetails.vue +++ b/src/views/distribution/reservation/reservationDetails.vue @@ -326,6 +326,30 @@ addvalueServeTypeData:[], dialogVisible:false, packageColumnList: [ + { + prop: 'waybillNumber', + label: '运单号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false + // head: true, + }, + { + prop: 'serviceNumber', + label: '服务号', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false + // head: true, + }, { prop: 'orderCode', label: '订单自编号', @@ -359,8 +383,8 @@ sortable: true, }, { - label: '一级品', - prop: 'firsts', + label: '发站仓', + prop: 'sendWarehouseName', type: 2, values: '', width: '150', @@ -369,8 +393,8 @@ sortable: true, }, { - label: '二级品', - prop: 'second', + label: '目的仓', + prop: 'acceptWarehouseName', type: 2, values: '', width: '150', @@ -378,9 +402,29 @@ fixed: false, sortable: true, }, + // { + // label: '发货时间', + // prop: 'acceptWarehouseName', + // type: 2, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true, + // }, { - label: '三级品', - prop: 'thirdProduct', + label: '入库时间', + prop: 'warehouseEntryTimeEnd', + type: 5, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '入库车次', + prop: 'trainNumber', type: 2, values: '', width: '150', @@ -389,8 +433,8 @@ sortable: true, }, { - label: '货位信息', - prop: 'goodsAllocation', + label: '一级品', + prop: 'firsts', type: 2, values: '', width: '150', @@ -399,8 +443,18 @@ sortable: true, }, { - label: '所在托盘', - prop: 'pallet', + label: '二级品', + prop: 'second', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '三级品', + prop: 'thirdProduct', type: 2, values: '', width: '150', @@ -438,6 +492,26 @@ fixed: false, sortable: true, }, + { + label: '货位信息', + prop: 'goodsAllocation', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, + { + label: '所在托盘', + prop: 'pallet', + type: 2, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + }, { prop: '', label: '操作', @@ -451,28 +525,28 @@ ], stockArticleColumnList: [ { - prop: 'orderCode', - label: '订单自编号', + prop: 'waybillNumber', + label: '运单号', type: 2, values: '', width: '160', checkarr: [], fixed: true, - sortable: true, - head: false }, { - prop: 'waybillNumber', - label: '运单号', + prop: 'orderCode', + label: '订单自编号', type: 2, values: '', width: '160', checkarr: [], fixed: true, + sortable: true, + head: false }, { - label: '货物名称', - prop: 'descriptionGoods', + label: '商场名称', + prop: 'mallName', type: 2, values: '', width: '160', @@ -481,8 +555,8 @@ sortable: true }, { - label: '品牌', - prop: 'brand', + label: '门店名称', + prop: 'storeName', type: 2, values: '', width: '160', @@ -491,8 +565,8 @@ sortable: true }, { - label: '收货单位', - prop: 'consigneeUnit', + label: '货物名称', + prop: 'descriptionGoods', type: 2, values: '', width: '160', @@ -501,8 +575,8 @@ sortable: true }, { - label: '订单来源', - prop: 'resource', + label: '品牌', + prop: 'brand', type: 2, values: '', width: '160', @@ -510,10 +584,9 @@ fixed: false, sortable: true }, - { - label: '服务类型', - prop: 'typeService', + label: '收货单位', + prop: 'consigneeUnit', type: 2, values: '', width: '160', @@ -521,9 +594,10 @@ fixed: false, sortable: true }, + { - label: '商场名称', - prop: 'mallName', + label: '订单来源', + prop: 'resource', type: 2, values: '', width: '160', @@ -532,8 +606,8 @@ sortable: true }, { - label: '门店名称', - prop: 'storeName', + label: '服务类型', + prop: 'typeService', type: 2, values: '', width: '160', @@ -551,16 +625,16 @@ fixed: false, sortable: true }, - { - label: '增值服务费', - prop: 'fee', - type: 1, - values: '', - width: '150', - checkarr: [], - fixed: false, - sortable: true - }, + // { + // label: '增值服务费', + // prop: 'fee', + // type: 1, + // values: '', + // width: '150', + // checkarr: [], + // fixed: false, + // sortable: true + // }, { prop: '', label: '操作', diff --git a/src/views/distribution/stockup/distributionStockupDetails.vue b/src/views/distribution/stockup/distributionStockupDetails.vue index bb8d493b..1ee84f8a 100644 --- a/src/views/distribution/stockup/distributionStockupDetails.vue +++ b/src/views/distribution/stockup/distributionStockupDetails.vue @@ -82,7 +82,7 @@ @selection="selectionChange" > @@ -103,7 +103,10 @@ - 批量打印 + + + > @@ -136,13 +140,47 @@ - -
- lmy 666 + + + 批量打印 + + + + + +
+ + +
+ + + + - 打 印 + 确 定 取 消 @@ -250,6 +288,7 @@ import { getStockDetail } from '@/api/distribution/distributionStock'; import { getStockTemplate, showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; import { getLodop } from '@/utils/LodopFuncs'; import dayjs from 'dayjs'; +import { getDisStockList,getPrintDetail } from '@/api/distribution/disStockListDetail'; export default { data () { @@ -581,6 +620,15 @@ export default { }, ], columnInventory:[ + { + prop: '', + label: '序号', + type: 0, + values: '', + width: 55, + checkarr: [], + fixed: true, + }, { prop: 'sku', label: 'SKU', @@ -713,6 +761,94 @@ export default { hide: true, }, + ], + columnInventoryBatch:[ + { + prop: '', + label: '序号', + type: 0, + values: '', + width: 55, + checkarr: [], + fixed: true, + }, + { + prop: 'sku', + label: 'SKU', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: true, + sortable: true, + head: false, + }, + { + prop: 'orderCode', + label: '订单编号', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'descriptionGoods', + label: '物料名称', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'cargoUnit', + label: '单位', + type: 1, + values: '', + width: '100', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'stockPackageCode', + label: '包条码', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'brandName', + label: '品牌', + type: 1, + values: '', + width: '150', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: '', + label: '操作', + type: 6, + values: '', + width: '230', + checkarr: [], + fixed: 'right', + hide: true, + }, + ], }, height: 0, @@ -785,6 +921,7 @@ export default { trade:false, // 商 municipal:true, // 市 taker:true, // 自提 + packageCodeList: [], // 自提 } }, mounted () { @@ -820,11 +957,88 @@ export default { } }, methods: { + //批量打印 + handleBatchDetail(type){ + console.log("selectionList",this.selectionList); + if(this.selectionList.length == 0){ + this.$message.warning("至少选择一条数据!!") + return ; + } + if(type== '1'){ + //包条码批量 + let checkcode=[] + this.selectionList.map(item=>{ + checkcode.push(item.id) + }) + let qr = { + ids: checkcode.join(','), + type: "2" + }; + getPrintDetail(qr).then( res =>{ + console.log(",./"); + this.html='' + this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml) + }) + }else if(type== '2'){ +//包条码批量 + let myMap = []; + this.selectionList.map(item=>{ + if(!!item.stocklist){ + myMap.push(item.stocklist); + } + }) + let qr = { + ids: myMap.join(","), + type: "3" + }; + console.log("><><>>",qr); + //库存品订单批量 + getPrintDetail(qr).then( res =>{ + // console.log(",./"); + this.html='' + this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml) + }) + + } + + }, + //单独打印 + handlePrintDetail(row){ + console.log("单个答应》》》",row); + row.type = "1"; + getPrintDetail(row).then( res =>{ + console.log(",./"); + this.html='' + this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml) + }) + + }, //查看库存品明细 handleDetail(row){ console.log("row>><><><",row); this.dialogPack = true; - + //查询信息 + let po = { + stockListId: row.stockListId, + reservationId: row.reservationId, + } + let s =[]; + getDisStockList(po).then( res =>{ + console.log("res>>>>库存包件码",res.data.data); + res.data.data.forEach(i => { + if(!!i){ + let a = {}; + a.sku = i.sku; + a.orderCode = i.orderCode; + a.descriptionGoods = i.descriptionGoods; + a.cargoUnit = i.cargoUnit; + a.stockPackageCode = i.stockPackageCode; + a.brandName = i.brandName; + s.push(a); + } + }); + this.packageCodeList = s; + }) }, showdrawer(value){ this.drawerShow=value @@ -1307,21 +1521,30 @@ export default { //查询包件列表 async getStockUpParcelsList(page){ let a = await getParcelListOwn(page.currentPage,page.pageSize,{id :this.$route.query.id}); - console.log("包件...",a.data); - const data = a.data.data; - this.data1 = data.records; - if(this.data1.length > 0){ - this.data1.forEach(i =>{ - if(!i.stockupStatus){ - i.stockupStatusName = "待备货"; - this.isStockUp = true; - }else{ - i.stockupStatusName = "已备货"; + // console.log("包件...",a.data.data); + const data = a.data.data; + if(data.records.length > 0){ + // console.log("数据》《》《",data.records[0]); + if(!!data.records[0]){ + this.data1 = data.records; + // console.log("数据》《》《》",this.data1); + if(this.data1[0] != null ){ + this.data1.forEach(i =>{ + if(i != null ){ + console.log("><><><>>>",i); + if(!i.stockupStatus){ + i.stockupStatusName = "待备货"; + this.isStockUp = true; + }else{ + i.stockupStatusName = "已备货"; + } + } + }) + } } - }) - } - this.page1.total = a.data.data.total; + this.page1.total = a.data.data.total; + } this.loading = false; this.selectionClear(); }, diff --git a/src/views/distribution/turndelivery/deliveryDiscuss.vue b/src/views/distribution/turndelivery/deliveryDiscuss.vue index 782491e5..b99a0541 100644 --- a/src/views/distribution/turndelivery/deliveryDiscuss.vue +++ b/src/views/distribution/turndelivery/deliveryDiscuss.vue @@ -32,7 +32,7 @@ - + - + - - - + + - {{ item.dictValue }} - - + + + + + + + + + + + + + + + @@ -1124,6 +1137,14 @@ } }); } + if (this.stockUpForm.unloader) { + this.loaderData.forEach(a => { + if (this.stockUpForm.loader === a.dictKey) { + stockup.unloaderName = a.dictValue; + stockup.unloaderId = a.dictKey; + } + }); + } console.log('this.stockUpForm.forklift-------->', this.stockUpForm.forklift); this.forkliftData.forEach(b => { if (this.stockUpForm.forklift === b.dictKey) { @@ -1146,7 +1167,7 @@ if (this.stockUpForm.outboundDate) { stockup.outboundDate = this.stockUpForm.outboundDate; } - stockup.loadAndUnload = this.loadAndUnload.join(','); + // stockup.loadAndUnload = this.loadAndUnload.join(','); data.stockupInfo = stockup; //将服务类型转为数组 if (this.serveType) { @@ -1246,6 +1267,14 @@ } }); } + if (this.stockUpForm.unloader) { + this.loaderData.forEach(a => { + if (this.stockUpForm.loader === a.dictKey) { + stockup.unloaderName = a.dictValue; + stockup.unloaderId = a.dictKey; + } + }); + } this.forkliftData.forEach(b => { if (this.stockUpForm.forklift === b.dictKey) { stockup.forkliftName = b.dictValue; @@ -1273,7 +1302,7 @@ return a - b; }); this.stockUpForm.serveType = serve.join(','); - stockup.loadAndUnload = this.loadAndUnload.join(','); + // stockup.loadAndUnload = this.loadAndUnload.join(','); //判断是否是三方配送 if (this.waixieForm.tripartiteSource) { //三方配送数据构建 @@ -1457,9 +1486,9 @@ getDictionaryBiz('addvalue_serve_type').then(res => { this.addvalueServeTypeData = res.data.data; }); - getDictionaryBiz('load_and_unload').then(res => { - this.loadAndUnloadData = res.data.data; - }); + // getDictionaryBiz('load_and_unload').then(res => { + // this.loadAndUnloadData = res.data.data; + // }); getDictionaryBiz('delivery_way').then(res => { this.deliveryWayData = res.data.data; }); @@ -1478,7 +1507,7 @@ this.waixieForm.deliveryFee = ''; } else { - this.loadAndUnload = []; + // this.loadAndUnload = []; this.serveType = []; this.waixieForm = {}; } @@ -1486,7 +1515,7 @@ this.bbb = false; this.stockUpForm.deliveryType = '1'; this.stockUpForm.deliveryWay = '10'; - this.loadAndUnload = ['1', '2']; + // this.loadAndUnload = ['1', '2']; this.stockUpForm.otherFee = 0; this.stockUpForm.taskTime = dayjs().format('YYYY-MM-DD'); this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); @@ -1499,7 +1528,7 @@ this.driverForm.masterDriverName = ''; this.driverForm.masterVehicleNub = ''; } else { - this.loadAndUnload = []; + // this.loadAndUnload = []; this.serveType = []; this.waixieForm = {}; } @@ -1507,7 +1536,7 @@ this.bbb = true; this.stockUpForm.deliveryType = '1'; this.stockUpForm.deliveryWay = '10'; - this.loadAndUnload = ['1', '2']; + // this.loadAndUnload = ['1', '2']; this.stockUpForm.otherFee = 0; this.stockUpForm.taskTime = dayjs().format('YYYY-MM-DD'); this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); @@ -1683,11 +1712,12 @@ this.stockUpForm.deliveryType = '1'; this.stockUpForm.deliveryWay = data.reservationInfo.deliveryWay; // this.serveType = data.reservationInfo.serveType.split(','); - if (data.stockupInfo) { - this.loadAndUnload = data.stockupInfo.teamResponsibility.split(','); - } + // if (data.stockupInfo) { + // this.loadAndUnload = data.stockupInfo.teamResponsibility.split(','); + // } // data.deliverySelfVO - this.stockUpForm.loader = data.stockupInfo.loaderId; + this.stockUpForm.loader = data.loadingTeamId; + this.stockUpForm.unloader = data.unloadingTeamId; this.stockUpForm.forklift = data.stockupInfo.forkliftId; this.stockUpForm.outboundDate = data.stockupInfo.outboundDate; this.stockUpForm.remarks = data.remarks; @@ -1699,16 +1729,16 @@ } }); this.orderData = data.stockArticleList; - if (data.teamResponsibility) { - this.loadAndUnload = data.teamResponsibility.split(','); - } + // if (data.teamResponsibility) { + // this.loadAndUnload = data.teamResponsibility.split(','); + // } console.log('data.kind', data.kind); if (data.kind === '1') { //自主配送 let self = data.deliverySelfVO; let vehicle = await this.getvehicleData(); console.log('___________________-->', vehicle); - let driver = await this.getMasterDriverData(); + let driver = await this.getDriverData(); let a = []; let b = []; let vehicleInfo = []; @@ -1761,7 +1791,7 @@ } else { this.stockUpForm.deliveryType = '1'; this.stockUpForm.deliveryWay = '10'; - this.loadAndUnload = ['1', '2']; + // this.loadAndUnload = ['1', '2']; this.stockUpForm.otherFee = 0; this.stockUpForm.taskTime = dayjs().format('YYYY-MM-DD'); this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); diff --git a/src/views/distribution/turndelivery/deliveryMarket.vue b/src/views/distribution/turndelivery/deliveryMarket.vue index 68554c1c..01321530 100644 --- a/src/views/distribution/turndelivery/deliveryMarket.vue +++ b/src/views/distribution/turndelivery/deliveryMarket.vue @@ -11,18 +11,20 @@ - + + @@ -30,26 +32,25 @@ - - + + @@ -125,7 +126,7 @@ - + - - - + + - {{ item.dictValue }} - - + + + + + + + + + + + + + + + + @@ -921,7 +936,6 @@ }); }, onSubmitOrder() { - let stockup = {}; let tripartite = {}; let data = {}; @@ -993,6 +1007,15 @@ } }); } + + if (params.unloader) { + this.loaderData.forEach(a => { + if (params.loader === a.dictKey) { + stockup.unloaderName = a.dictValue; + stockup.unloaderId = a.dictKey; + } + }); + } if (params.forklift) { this.forkliftData.forEach(b => { if (params.forklift === b.dictKey) { @@ -1015,9 +1038,9 @@ if (params.remarks) { data.remarks = params.remarks; } - if (this.loadAndUnload.length > 0) { - stockup.loadAndUnload = this.loadAndUnload.join(','); - } + // if (this.loadAndUnload.length > 0) { + // stockup.loadAndUnload = this.loadAndUnload.join(','); + // } if (params.outboundDate) { stockup.outboundDate = params.outboundDate.toString(); } @@ -1190,9 +1213,9 @@ getDictionaryBiz('addvalue_serve_type').then(res => { this.addvalueServeTypeData = res.data.data; }); - getDictionaryBiz('load_and_unload').then(res => { - this.loadAndUnloadData = res.data.data; - }); + // getDictionaryBiz('load_and_unload').then(res => { + // this.loadAndUnloadData = res.data.data; + // }); getDictionaryBiz('delivery_way').then(res => { this.deliveryWayData = res.data.data; }); @@ -1211,7 +1234,7 @@ this.driverForm.vehicleNum = ''; this.driverForm.deliveryFee = ''; } else { - this.loadAndUnload = []; + // this.loadAndUnload = []; this.serveType = []; this.driverForm = {}; this.waixieForm = {}; @@ -1219,7 +1242,7 @@ this.aaa = true; this.bbb = false; this.stockUpForm.deliveryType = '2'; - this.stockUpForm.deliveryWay = '2'; + // this.stockUpForm.deliveryWay = '2'; this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); this.form.taskTime = dayjs().format('YYYY-MM-DD'); this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); @@ -1232,7 +1255,7 @@ this.driverForm.masterVehicleNub = ''; this.driverForm = {}; } else { - this.loadAndUnload = []; + // this.loadAndUnload = []; this.serveType = []; this.driverForm = {}; this.waixieForm = {}; @@ -1240,7 +1263,7 @@ this.aaa = false; this.bbb = true; this.stockUpForm.deliveryType = '2'; - this.stockUpForm.deliveryWay = '2'; + // this.stockUpForm.deliveryWay = '2'; this.form.taskTime = dayjs().format('YYYY-MM-DD HH:mm:ss'); this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD'); @@ -1253,12 +1276,12 @@ onLoad(page, params = {}) { //初始化页面数据 this.stockUpForm.deliveryType = '2'; - this.stockUpForm.deliveryWay = '2'; + // this.stockUpForm.deliveryWay = '2'; this.stockUpForm.stockupDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); this.stockUpForm.outboundDate = dayjs().format('YYYY-MM-DD HH:mm:ss'); this.stockUpForm.taskTime = dayjs().format('YYYY-MM-DD'); this.stockUpForm.otherFee = 0; - this.loadAndUnload = ['1', '2']; + // this.loadAndUnload = ['1', '2']; if (this.reservationIds) { this.isoperation = false; console.log('》》》》》》》》》》》》》》》', this.reservationIds); @@ -1288,9 +1311,9 @@ this.stockUpForm.taskTime = deliveryData.taskTime; this.stockUpForm.stockupDate = deliveryData.stockupInfo.stockupDate; this.stockUpForm.remarks = deliveryData.remarks; - if (deliveryData.stockupInfo.teamResponsibility) { - this.loadAndUnload = deliveryData.stockupInfo.teamResponsibility.split(','); - } + // if (deliveryData.stockupInfo.teamResponsibility) { + // this.loadAndUnload = deliveryData.stockupInfo.teamResponsibility.split(','); + // } console.log('reservationInfo--------------->', res.data.data.reservationInfo); this.reservationData = deliveryData.reservationInfos; if (deliveryData.kind === '1') {