qb 6 months ago
parent
commit
ed2ac06b54
  1. 36
      src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
  2. 42
      src/views/cost/Deliverycostmanagement/Deliverymaintenancecosts.vue
  3. 31
      src/views/distribution/turndelivery/deliveryDiscuss.vue

36
src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue

@ -390,10 +390,16 @@
</div>
<div>
<el-icon @click="Isfullscreen"><FullScreen /></el-icon>
<el-icon @click="dialogExpandconfiguration=false"><Close /></el-icon>
<el-icon @click="dialogExpandconfiguration = false"><Close /></el-icon>
</div>
</div>
</template>
<div>
<span
>当前仓库:<b>{{ dataRwo.name }}</b></span
>
</div>
<hr />
<el-form
v-loading="Expandconfigurationloading"
element-loading-text="Loading..."
@ -414,6 +420,19 @@
/>
</el-select>
</el-form-item>
<el-form-item label="是否自动释放">
<el-select
v-model="Expandconfigurationform.isAutoRelease"
placeholder="请选择是否自动释放"
>
<el-option
v-for="item in Compulsoryoptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
@ -1025,24 +1044,30 @@ const Expandconfiguration = async row => {
});
return;
}
dataRwo.value = row;
console.log(dataRwo.value, ' dataRwo.value');
console.log('扩展配置');
try {
let data = {
warehouseId: row.id,
};
details.loadingObj.list = true; //
let _res = await $_warehouseConfig(data);
if (_res.data.code == 200) {
const { id, isStrictLoading } = _res.data.data;
const { id, isStrictLoading, isAutoRelease } = _res.data.data;
dialogExpandconfiguration.value = true;
Expandconfigurationform.value.id = id; //id
Expandconfigurationform.value.isStrictLoading = isStrictLoading; //
let form = Expandconfigurationform.value;
form.id = id; //id
form.isStrictLoading = isStrictLoading; //
form.isAutoRelease = isAutoRelease; //
}
console.log(_res, '_res');
} catch (err) {
console.log(err);
} finally {
details.loadingObj.list = false;
}
};
//
@ -1255,6 +1280,7 @@ const newlyaddSubmit = () => {
}
}
.el_Expandconfiguration {
display: flex;
.el-form-item {
flex-direction: column;
width: 20%;

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;
}
}
})

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

@ -555,6 +555,7 @@
v-if="!QuantityEntryStatus"
size="small"
v-model="scope.row.number"
:value-on-clear="0"
@change="isZeroNumber(scope.row)"
/>
<el-input-number
@ -564,6 +565,7 @@
:min="0"
v-model="scope.row.reservationNum"
@change="isZeroNumber(scope.row)"
:value-on-clear="0"
/>
</template>
</el-table-column>
@ -572,7 +574,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 +592,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,
@ -1373,6 +1377,9 @@ const submit = () => {
//
dataInfo.value = removeDuplicates(dataInfo.value);
dataInfo.value.forEach(item=>{
item.Plannedquantity = item.reservationNum
})
console.log(dataInfo.value, ' dataInfo.value');
//
@ -1530,7 +1537,7 @@ const MaxSUM = computed(() => {
// let max = dataInfo.value[dataId.value].handQuantity - sum;
console.log(dataId.value, 'dataId.value');
console.log(dataInfo.value, ' dataInfo.value[');
let max = dataInfo.value[dataId.value].reservationNum;
let max = dataInfo.value[dataId.value].Plannedquantity;
return max;
});
const toggleSelection = options => {
@ -1711,12 +1718,11 @@ const Entering = val => {
//
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 +1746,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 +1757,7 @@ const QuantityEntry = async val => {
}
});
}
editLoading.value=false;
editLoading.value = false;
};
//
const ModifyLCL = () => {
@ -1796,6 +1802,7 @@ const SubmitLoad = () => {
});
let max = dataInfo.value[dataId.value].handQuantity - sum;
console.log(dataInfo.value, ' dataInfo.value[');
if (Numberoperations > max) {
ElMessage({
message: '操作数量总和不能大于冻结数量总和',
@ -1848,7 +1855,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