diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js index 1ecc6de6..fbc7634f 100644 --- a/src/api/distribution/distributionDeliveryList.js +++ b/src/api/distribution/distributionDeliveryList.js @@ -370,6 +370,14 @@ export const $_showInventoryPackgeCode = params => { params, }); }; +// 异常库存品查看二维码 +export const $_showInventoryPackgeCodes = params => { + return request({ + url: '/api/logpm-distribution/distributionStockList/showInventoryPackgeCodes', + method: 'get', + params, + }); +}; // 驳回 export const $_loadingAbnormalPackageListTurnDown = params => { diff --git a/src/option/distribution/DeliveryExceptionReview.js b/src/option/distribution/DeliveryExceptionReview.js index 6f4e68c6..93525659 100644 --- a/src/option/distribution/DeliveryExceptionReview.js +++ b/src/option/distribution/DeliveryExceptionReview.js @@ -49,7 +49,6 @@ export const AbnormalReview = [ head: false, }, - { prop: 'orderCode', label: '订单自编号', @@ -62,8 +61,8 @@ export const AbnormalReview = [ head: false, }, { - prop: 'materialName', - label: '货物名称', + prop: 'packageCode', + label: '包条码', type: 1, values: '', width: '100', @@ -73,8 +72,32 @@ export const AbnormalReview = [ head: false, }, { - prop: 'packageCode', - label: '包条码', + prop: 'goodsTypeName', + label: '货物类型', + type: 3, + values: '', + width: '100', + checkarr: [ + { + label: '订制品', + value: '订制品', + }, + { + label: '库存品', + value: '库存品', + }, + { + label: '零担', + value: '零担', + }, + ], + fixed: false, + sortable: false, + head: false, + }, + { + prop: 'materialName', + label: '物料名称', type: 1, values: '', width: '100', @@ -216,6 +239,18 @@ export const AbnormalReview = [ sortable: false, head: false, }, + { + prop: 'loadingQuantity', + label: '异常数量', + type: 1, + values: '', + width: '100', + checkarr: [], + fixed: false, + sortable: false, + head: false, + isshowSummary: true, + }, // { // prop: 'materialCode', // label: '物料编号', @@ -225,7 +260,7 @@ export const AbnormalReview = [ // checkarr: [], // fixed: 'right', // sortable: false, - + // }, // { @@ -251,17 +286,17 @@ export const AbnormalReview = [ head: false, }, - { - prop: 'orderPackageFreezeStatusName', - label: '冻结状态', - type: 1, - values: '', - width: '100', - checkarr: [], - fixed: false, - sortable: false, - head: false, - }, + // { + // prop: 'orderPackageFreezeStatusName', + // label: '冻结状态', + // type: 1, + // values: '', + // width: '100', + // checkarr: [], + // fixed: false, + // sortable: false, + // head: false, + // }, // { // prop: 'orderPackageGroundingStatusName', @@ -383,7 +418,7 @@ export const AbnormalReview = [ { prop: 'auditingStatusName', - label: '审核状态', + label: '异常状态', type: 1, values: '', width: '100', @@ -405,7 +440,7 @@ export const AbnormalReview = [ }, { prop: 'auditingTime', - label: '审核时间', + label: '操作时间', type: 1, values: '', width: '100', @@ -413,12 +448,11 @@ export const AbnormalReview = [ fixed: false, sortable: false, head: false, - }, { prop: 'auditingUser', - label: '审核人', + label: '操作人', type: 1, values: '', width: '100', diff --git a/src/views/Pricesystem/ListOfPriceSystems.vue b/src/views/Pricesystem/ListOfPriceSystems.vue index f3edec42..3f8626d8 100644 --- a/src/views/Pricesystem/ListOfPriceSystems.vue +++ b/src/views/Pricesystem/ListOfPriceSystems.vue @@ -724,11 +724,12 @@ const handleSubmitBasic = () => { const res = await postBasicdataPrice(submitData); const { code, msg } = res.data; - if (code !== 200) return; + if (code !== 200) { + return; + } ElMessage.success(msg); onLoad(); - Historicalversion(HistoriBt.value); } catch (error) { console.log('error :>> ', error); } finally { diff --git a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue index 6040b8cb..f03256bf 100644 --- a/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue +++ b/src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue @@ -30,7 +30,12 @@
- +
@@ -279,6 +284,7 @@ import { $_expenseDispatchPriceRuledetail, } from '@/api/storagecost/index.js'; import { $_ObtainRegion } from '@/api/basicdata/basicdataWarehouse'; +import { getList } from '@/api/basicdata/basicdataVehicleInfo'; import { getDictionaryBiz } from '@/api/system/dict'; //字典 import { deepClone } from '@/utils/util'; const emit = defineEmits(['request-data']); @@ -491,11 +497,12 @@ const asurcharge = ref([ const dispatchSubjoinCategory = ref([ { label: '序号', prop: 'index', type: 'string', width: '50', disabled: true }, { - label: '车型', + label: '车型1', prop: 'carModel', type: 'select', width: 'auto', - disabled: true, + disabled: true, //是否显示 + show: true, //禁止输入框 }, { label: '操作', prop: '', type: '', width: 'auto', disabled: true }, ]); @@ -773,13 +780,13 @@ const Categoryprocessing = (value, data, type) => { const Oversizedbillingprocessing = (value, data) => { OversizedbillingData.value.forEach(item => { console.log(item, '超区计费-----》'); - + // 拆解出 region 数组中的省、市、区编码 const [province, city, district] = item.region; // 查找省对象 const provinceObj = item.options.find(option => option.value == province); - + // 根据省对象查找市集合 const cityObj = provinceObj?.children?.find(cityItem => cityItem.value == city); @@ -1079,11 +1086,31 @@ const onLoad = async () => { }); } }; + +// 获取车型 +const Obtainvehiclemodel = async () => { + try { + let _res = await getList(); + const { code, data } = _res.data; + if (code == 200) { + console.log(data, '车型'); + optionsVehicle.value = data.map(item => { + return { + label: item.vehicleModel, + value: item.id, + }; + }); + initData(); + } + } catch (e) { + console.log(e, 'error'); + } finally { + } +}; // 页面初始化 const onLoadPage = async () => { await onLoad(); - updateDictionary(optionsVehicle.value, 'price_vehicle_type'); // 获取车型 - + Obtainvehiclemodel(); //获取车型 GetRegion(); //获取地区 }; onLoadPage(); diff --git a/src/views/cost/storagecost/Warehouserentalmanagement.vue b/src/views/cost/storagecost/Warehouserentalmanagement.vue index e42b69d7..9aac5056 100644 --- a/src/views/cost/storagecost/Warehouserentalmanagement.vue +++ b/src/views/cost/storagecost/Warehouserentalmanagement.vue @@ -534,13 +534,13 @@ const changetype = () => { form.value.storageLocationCount = null; //客户租用库位数 form.value.leasedArea = null; //客户租用库位数 }; -form.value.residualArea = null; //剩余库位面积 -form.value.singleStorageArea = null; //单库位面积 + const changewarehouse = async () => { let data = { warehouseId: form.value.warehouseId, }; - + form.value.residualArea = null; //剩余库位面积 + form.value.singleStorageArea = null; //单库位面积 formloading.value = true; await $_residualArea(data) .then(res => { @@ -600,7 +600,10 @@ const changestorageLocationCount = () => { const Customeradded = () => { ruleFormRef.value.validate(valid => { if (valid) { - if (form.value.storageLocationCount == null || form.value.leasedArea == null) { + const { type, storageLocationCount, leasedArea } = form.value; + + + if ((type === 1 && leasedArea == null) || (type === 2 && storageLocationCount == null)) { ElMessage({ message: '请维护仓库基础资料', type: 'warning', diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue index b7c1ad1e..b285051c 100644 --- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue +++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue @@ -778,9 +778,10 @@ :loading="AbnormalReviewloading" @inputTxt="inputscReservationPackage" @timeCheck="timescReservationPackage" - @selectCheck="selectscReservationPackage" + @selectCheck="selectAbnormalpackage" ref="YcwtableBox" @selection="selectionChange" + :isselectfun="ProhibitSelection" >