diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js index 0762dfac..1ecc6de6 100644 --- a/src/api/distribution/distributionDeliveryList.js +++ b/src/api/distribution/distributionDeliveryList.js @@ -397,3 +397,14 @@ export const $_retentionSave = data => { data, }); }; + +// 异常包件列表取消配送 +export const $_cancelLoadingAbnormal = data => { + return request({ + url: '/api/logpm-distribution/deliveryList/cancelLoadingAbnormal', + method: 'post', + data, + }); +}; + + diff --git a/src/api/work/work.js b/src/api/work/work.js index d1831f38..447f4d85 100644 --- a/src/api/work/work.js +++ b/src/api/work/work.js @@ -85,7 +85,7 @@ export const getMyWarehouseList = data => { data, }); }; - +// 获取仓库当前登录人仓库信息 export const getMyCurrentWarehouse = params => { return request({ url: '/api/logpm-basicdata/warehouse/getCurrentWarehouse', diff --git a/src/option/distribution/DeliveryExceptionReview.js b/src/option/distribution/DeliveryExceptionReview.js index fb7785ae..6f4e68c6 100644 --- a/src/option/distribution/DeliveryExceptionReview.js +++ b/src/option/distribution/DeliveryExceptionReview.js @@ -49,6 +49,7 @@ export const AbnormalReview = [ head: false, }, + { prop: 'orderCode', label: '订单自编号', @@ -391,7 +392,17 @@ export const AbnormalReview = [ sortable: false, head: false, }, - + { + prop: 'completeName', + label: '是否完成', + type: 1, + values: '', + width: '100', + checkarr: [], + fixed: false, + sortable: false, + head: false, + }, { prop: 'auditingTime', label: '审核时间', diff --git a/src/option/warehouse/PreStoragePackage.js b/src/option/warehouse/PreStoragePackage.js index 75aa592b..f0785d5b 100644 --- a/src/option/warehouse/PreStoragePackage.js +++ b/src/option/warehouse/PreStoragePackage.js @@ -37,7 +37,7 @@ export const columnList = [ label: '订单自编号', type: 1, values: '', - width: '240', + width: '140', checkarr: [], fixed: true, sortable: true, @@ -176,6 +176,27 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'conditionsName', + label: '包件类型', + type: 3, + values: '', + width: '150', + checkarr: [ + { + label: '定制品', + value: 1, + }, + { + label: '零担', + value: 3, + }, + ], + fixed: false, + sortable: true, + head: false, + }, + { prop: 'inWarehouseName', label: '是否入库', diff --git a/src/option/warehouse/PreStorageTrainNumber.js b/src/option/warehouse/PreStorageTrainNumber.js index 2031c844..84d3d033 100644 --- a/src/option/warehouse/PreStorageTrainNumber.js +++ b/src/option/warehouse/PreStorageTrainNumber.js @@ -54,6 +54,28 @@ export const columnList = [ sortable: true, head: false, }, + { + prop: 'driverName', + label: '司机', + type: 2, + values: '', + width: '240', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, + { + prop: 'taskTime', + label: '配送时间', + type: 1, + values: '', + width: '240', + checkarr: [], + fixed: false, + sortable: true, + head: false, + }, { prop: 'totalNum', label: '总件数', @@ -63,6 +85,7 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: 'inNum', @@ -73,6 +96,7 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: 'restNum', @@ -83,13 +107,14 @@ export const columnList = [ checkarr: [], fixed: false, sortable: true, + isshowSummary: true, }, { prop: '', label: '操作', type: 6, values: '', - width: '250', + width: '90', checkarr: [], fixed: 'right', sortable: false, diff --git a/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue index 944a47fb..80329205 100644 --- a/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue +++ b/src/views/cost/Deliverycostmanagement/Categorypricingunit.vue @@ -454,8 +454,26 @@ const remoteMethod = goodsName => { // 新增品类 const Categoryaddition = async () => { + if (!$route.query.id && !props.templateData.id) { + ElMessage({ + message: '请先新增模板', + type: 'error', + }); + return; + } + ruleFormRef.value.validate(valid => { if (valid) { + const categoryMap = new Map(details.data.map(item => [item.categoryId, item])); + //这里查找是否已经存在添加过的品类(只能查询当前页) + if (categoryMap.has(form.value.categoryId)) { + ElMessage({ + message: '该品类已存在', + type: 'warning', + }); + return; + } + // 判断是否存在多个品类 let data = { categoryId: form.value.categoryId, //成本结算品类 unit: form.value.unit, //计价单位 diff --git a/src/views/cost/Deliverycostmanagement/DeliveryCostPricingTemplate.vue b/src/views/cost/Deliverycostmanagement/DeliveryCostPricingTemplate.vue index a334868d..230495f2 100644 --- a/src/views/cost/Deliverycostmanagement/DeliveryCostPricingTemplate.vue +++ b/src/views/cost/Deliverycostmanagement/DeliveryCostPricingTemplate.vue @@ -82,7 +82,7 @@ 统一计费 - 区域计费 + 区域计费 diff --git a/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue index ca0646ff..d9441f41 100644 --- a/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue +++ b/src/views/cost/Deliverycostmanagement/ServiceProviderPrice.vue @@ -103,8 +103,10 @@ label-width="auto" v-loading="tcloading" element-loading-text="Loading..." + ref="ruleFormRef" + :rules="rules" > - + - + - + { //页面初始化方法 PageOnload(); // 价格配置提交 -const Priceconfigurationsubmission = () => { +const Priceconfigurationsubmission = async () => { + const _flag = await ruleFormRef.value.validate(); + if (!_flag) { + return; + } + const categoryMap = new Map(details.data.map(item => [item.driverId, item])); + //这里查找是否已经存在添加过的品类(只能查询当前页) + if (categoryMap.has(form.value.driverId)) { + ElMessage({ + message: '司机已经存在', + type: 'warning', + }); + return; + } let data = { warehouseName: ServiceWarehouse.value.find(res => res.value == form.value.warehouseId)?.label || '', //仓库名称 diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index 8abf332a..6add9005 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -438,7 +438,7 @@ @click="signingReservationPackage(slotProps.scope.row)" >PC签收 - 滞留 + > --> @@ -770,6 +770,7 @@ @close="Abnormalshutdown" class="el_abnormalBox" > + 批量取消 批量查看二维码 驳回 - + 取消 + + -
+ @@ -889,6 +896,7 @@ import { $_showInventoryPackgeCode, $_loadingAbnormalPackageListTurnDown, $_retentionScan, + $_cancelLoadingAbnormal, } from '@/api/distribution/distributionDeliveryList'; import { compressImageBlob } from '@/components/IMGcompressor/imgcompressor.js'; import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; @@ -3848,6 +3856,88 @@ export default { this.loadingObj.pageLoading = false; } }, + // 批量异常取消 + BatchcancellationAll() { + if (!this.selectionList.length) { + ElMessage({ + message: '请勾选要取消的数据,【审核状态】必须为待审核,斌且【异常类型】状态只能为装车异常', + type: 'warning', + }); + return; + } + let _state = this.selectionList.every(item => item.auditingStatusName =='待审核' && item.abnormalTypeName == '装车异常' ); + console.log(_state); + if (!_state) { + ElMessage({ + message: '勾选数据【审核状态】必须全部为待审核,并且【异常类型】必须全部满足:装车异常,', + type: 'warning', + }); + return; + } + + ElMessageBox.confirm(`当前已经勾选${this.selectionList.length}条数据,是否确认取消`, '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + }) + .then(async () => { + try { + let data = { + deliveryId: this.selectionList[0].deliveryListId, + reservationId: this.selectionList[0].reservationId, + loadingAbnormalIds: this.selectionList.map(item => item.id).join(','), + }; + this.AbnormalReviewloading = true; + let _res = await $_cancelLoadingAbnormal(data); + if (_res.data.code == 200) { + ElMessage({ + message: _res.data.msg, + type: 'success', + }); + this.viewAbnormalLoading(this.toexamineID); //取消完成更新数据 + } + } catch (error) { + console.log(error, 'error'); + } finally { + this.AbnormalReviewloading = false; + } + }) + .catch(() => {}); + }, + // 异常包件取消 + async Canceldelivery(row) { + console.log(row); + + ElMessageBox.confirm('是否确认取消配送?', '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning', + }) + .then(async () => { + try { + let data = { + deliveryId: row.deliveryListId, + reservationId: row.reservationId, + loadingAbnormalIds: row.id, + }; + this.AbnormalReviewloading = true; + let _res = await $_cancelLoadingAbnormal(data); + if (_res.data.code == 200) { + ElMessage({ + message: _res.data.msg, + type: 'success', + }); + this.viewAbnormalLoading(this.toexamineID); //取消完成更新数据 + } + console.log(_res); + } catch (error) { + console.log(error, 'error'); + } finally { + this.AbnormalReviewloading = false; + } + }) + .catch(() => {}); + }, // 库存品查看二维码 async handleStockQRCode(row) { try { diff --git a/src/views/distribution/reservation/reservationAddFrom.vue b/src/views/distribution/reservation/reservationAddFrom.vue index 8264f67c..d9144185 100644 --- a/src/views/distribution/reservation/reservationAddFrom.vue +++ b/src/views/distribution/reservation/reservationAddFrom.vue @@ -297,7 +297,7 @@ - +

@@ -312,16 +312,16 @@ 名称:{{ item.firsts }} - - - + + 冻结数量:{{ item.deliveryQuantity }} - + 出库数量:{{ item.outboundQuantity }} - + + - +

@@ -19,7 +29,7 @@
- +
@@ -227,6 +237,14 @@ initOnLoad(); /** 搜索 */ const searchChange = () => { + const { time } = details.query; + if (time?.length) { + [details.query.taskTimeStart, details.query.taskTimeEnd] = time; + } else { + delete details.query.taskTimeStart; + delete details.query.taskTimeEnd; + } + initOnLoad(); };