Browse Source

修复已知bug

dev-xx
马远东 6 months ago
parent
commit
748daae600
  1. 42
      src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue
  2. 23
      src/views/distribution/turndelivery/deliveryDiscuss.vue

42
src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue

@ -702,17 +702,16 @@ const configurationdetails = async row => {
};
//
const EditRules = async row => {
loading.value = true;
form.value.dialogPricingrules = true; //
dialogtitle.value = '编辑';
console.log(row, 'row====>');
editID.value = row.id;
await Templateconfiguration(); //
await configurationdetails(row); //
loading.value = false;
await Templateconfiguration(); //
await configurationdetails(row); //
loading.value = false;
};
//
const newlyadded = async row => {
@ -773,14 +772,34 @@ 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);
//
const districtObj = cityObj?.children?.find(districtItem => districtItem.value == district);
//
let _data = {
province: item.region[0], //
city: item.region[1], //
district: item.region[2], //
overZoneCost: item.overZoneCost, //
overZoneKilometer: item.overZoneKilometer, //
province, //
city, //
district, //
provinceName: provinceObj?.label || '', //
cityName: cityObj?.label || '', //
districtName: districtObj?.label || '', //
overZoneCost: item.overZoneCost, //
overZoneKilometer: item.overZoneKilometer, //
id: item.id,
};
//
data.push(_data);
});
};
@ -997,7 +1016,6 @@ const Templateconfiguration = () => {
if (res.data.code == 200) {
if (res.data.data) {
Template.value = res.data.data;
State.value = true;
}
}
})

23
src/views/distribution/turndelivery/deliveryDiscuss.vue

@ -572,7 +572,9 @@
<el-button v-if="!QuantityEntryStatus" color="#172e60" type="success" @click="ModifyLCL"
>修改(零担订单)</el-button
>
<el-button color="#172e60" type="success" @click="SubmitLoad">提交(零担订单)</el-button>
<el-button v-else color="#172e60" type="success" @click="SubmitLoad"
>提交(零担订单)</el-button
>
</div>
</div>
</el-dialog>
@ -588,7 +590,7 @@ export default {
<script setup lang="ts">
import { ref, reactive, onMounted, computed, watch, nextTick } from 'vue';
import { columnList, newMenuData,wrap } from '@/option/turndelivery/deliveryDiscuss';
import { columnList, newMenuData, wrap } from '@/option/turndelivery/deliveryDiscuss';
import { useRoute, useRouter } from 'vue-router';
import {
$_selectStockArticleInfoList,
@ -1713,10 +1715,10 @@ const QuantityEntry = async val => {
console.log(dataInfo.value, 'dataInfo.value');
dataId.value = findIndexById(val.id); //
editLoading.value=true
editLoading.value = true;
//
if (RouteId.value) {
await $_getDeliveryZeroOrderDetail({
await $_getDeliveryZeroOrderDetail({
deliveryId: RouteId.value,
orderId: val.id,
}).then(res => {
@ -1740,7 +1742,7 @@ const QuantityEntry = async val => {
});
} else {
//
await getZeroOrderDetail(val.id).then(res => {
await getZeroOrderDetail(val.id).then(res => {
if (res.data.code == 200) {
console.log(res, '数量录入返回信息');
isZeroTable.value = res.data.data;
@ -1751,7 +1753,7 @@ const QuantityEntry = async val => {
}
});
}
editLoading.value=false;
editLoading.value = false;
};
//
const ModifyLCL = () => {
@ -1796,6 +1798,7 @@ const SubmitLoad = () => {
});
let max = dataInfo.value[dataId.value].handQuantity - sum;
console.log(dataInfo.value, ' dataInfo.value[');
if (Numberoperations > max) {
ElMessage({
message: '操作数量总和不能大于冻结数量总和',
@ -1848,7 +1851,15 @@ const SubmitLoad = () => {
console.log(isZeroTable.value, '提交零担的值');
});
}
dataInfo.value[dataId.value].parcelNumberVOS = isZeroTable.value;
//
let _summation = 0;
dataInfo.value[0].parcelNumberVOS.forEach(item => {
_summation += item.reservationNum;
});
dataInfo.value[dataId.value].reservationNum = _summation;
comprehensive.value = false; //
EnteringLibrary.value = false; //
QuantityEntryStatus.value = false; //

Loading…
Cancel
Save