Browse Source

修复已知bug

pre-production
马远东 11 months ago
parent
commit
9957dd00d8
  1. 426
      src/views/aftersales/aftersalesWorkOrderAddTemp.vue
  2. 42
      src/views/distribution/inventory/distrilbutionBillLadingList.vue

426
src/views/aftersales/aftersalesWorkOrderAddTemp.vue

@ -73,12 +73,6 @@
v-loading="form.Packageloading"
>
<el-tab-pane label="包件信息" name="0">
<div class="el_top">
<div class="el_Package_num">
<span>共计包件:{{ form.PackageList.length }}</span>
</div>
</div>
<template v-for="(item, index) in form.PackageList" :key="index">
<div class="el_Package">
<div class="Package">
@ -166,6 +160,11 @@
<!-- 按钮 -->
</div>
</template>
<!-- <div class="el_top">
<div class="el_Package_num">
<span>共计包件:{{ form.PackageList.length }}</span>
</div>
</div> -->
</el-tab-pane>
</el-tabs>
@ -359,12 +358,6 @@
v-loading="form.Packageloading"
>
<el-tab-pane label="内部责任划分" name="0">
<div class="el_top">
<div class="el_Package_num">
<span>公司占比:{{ form.Proportion }}%</span>
</div>
</div>
<div class="el_responsibilities">
<template v-for="(item, index) in form.responsibilitiesList" :key="index">
<div class="el_responsibilities_box">
@ -494,6 +487,11 @@
<div></div>
</template>
</div>
<div class="el_top">
<div class="el_Package_num">
<span>公司占比:{{ form.Proportion }}(%)</span>
</div>
</div>
</el-tab-pane>
</el-tabs>
@ -539,6 +537,7 @@
:max="9999999"
:controls="false"
:value-on-clear="0"
@change="Totalamount"
/>
</el-form-item>
@ -585,6 +584,22 @@
</div>
</div>
</template>
<!-- resultDescription -->
</div>
<el-form-item label="处理结果说明">
<el-input
v-model="form.basis.resultDescription"
placeholder="请输入处理结果说明"
type="textarea"
:autosize="{ minRows: 1, maxRows: 4 }"
clearable
/>
</el-form-item>
<div class="el_top">
<div class="el_Package_num">
<span>总计金额:{{ form.Totalamount }}()</span>
</div>
</div>
</el-tab-pane>
</el-tabs>
@ -648,6 +663,8 @@
import { ref, reactive, computed } from 'vue';
import { ElMessage, ElMessageBox } from 'element-plus';
import { getDictionaryBiz } from '@/api/system/dict'; //
import { useStore } from 'vuex';
const $store = useStore();
import {
$_getList,
$_submit,
@ -661,12 +678,12 @@ import { useRouter, useRoute } from 'vue-router';
import { getDetailWarehouse, getDeptWarehouse } from '@/api/basicdata/basicdataWarehouse'; //
import { deepClone } from '@/utils/util';
import { getToken } from '@/utils/auth';
import error from '@/error';
const $router = useRouter();
const formCopy = ref({}); //
const form = ref({
basis: {
workOrderType: null,
}, //
basis: {}, //
Totalamount: 0, //
TabactiveName: '0', //
activPackage: '0', //
responsibilities: '0', //
@ -797,12 +814,8 @@ const Handling = async () => {
}
});
};
//
const PageState = () => {
if (localStorage.getItem('my_data')) {
myData.value = JSON.parse(localStorage.getItem('my_data')); //
}
//
const responsibilities = () => {
//
form.value.responsibilitiesList = [
{
@ -826,6 +839,15 @@ const PageState = () => {
id: 1,
},
];
};
//
const PageState = () => {
if (localStorage.getItem('my_data')) {
myData.value = JSON.parse(localStorage.getItem('my_data')); //
}
//
responsibilities();
//
form.value.PackageList = [
{
@ -891,7 +913,13 @@ const DiscoveringNodesChange = value => {
workOrderType: form.value.basis.workOrderType,
discoveryNode: form.value.basis.discoveryNode,
workOrderNumber: form.value.basis.workOrderNumber,
typeServiceName: form.value.basis.typeServiceName,
waybillMall: form.value.basis.waybillMall,
};
//
form.value.Proportion = 0;
//
responsibilities();
ruleFormRef.value.clearValidate();
};
//
@ -1016,6 +1044,16 @@ const CompanyProportionInput = value => {
calculateMaxValues();
};
//
const Totalamount = () => {
console.log(form.value.Claimamount);
form.value.Totalamount = form.value.Claimamount.map(res => res.money).reduce(
(accumulator, currentValue) => accumulator + currentValue,
0
);
};
const Claimssettlement = value => {
console.log(value, '理赔金额');
console.log(Processingresultsoptions.value, '参数列表');
@ -1126,73 +1164,80 @@ const ChangePackageInfo = async item => {
let data = {
packageCode: item.packageCode, //
};
$_getAbnormalPackage(data).then(async res => {
console.log(res, '查询包条');
let packageData = {};
if (res.data.code == 200 && res.data && res.data.data.length) {
packageData = res.data.data[0]; //,
//
let state = await form.value.PackageList.find(res => res.orderCode || res.brandName);
if (state) {
if (state.orderCode != packageData.orderCode || state.brandName != packageData.brandName) {
ElMessage({
message: '请选择相同订单自编号和品牌的包条码!',
type: 'warning',
});
return;
}
}
ElMessage({
message: '查询成功',
type: 'success',
});
item.waybillNumber = packageData.waybillNumber || ''; //
item.orderCode = packageData.orderCode || ''; //
item.first = packageData.firsts || ''; //
item.secondary = packageData.second || ''; //
item.brandName = packageData.brandName || ''; //
form.value.basis.waybillMall = packageData.mallName || ''; //
form.value.basis.typeServiceName = packageData.typeServiceName || ''; //
// ,
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
//
if (results.length) {
item.history = true;
item.HistoricalPackageList = results;
} else {
item.history = false;
}
} else {
ElMessage({
message: '暂无查询内容,请检查参数是否正确!',
type: 'warning',
});
}
// (线线)
if (form.value.discoveryNode == '3') {
let addedTrainNumbers = []; //
res.data.data.forEach(item => {
item.trunklines.forEach(itemChid => {
if (!addedTrainNumbers.includes(itemChid.trainNumber)) {
form.value.Trainoptions.push({
trainNumber: itemChid.trainNumber, //
vehicleRoute: itemChid.vehicleRoute, // 线
form.value.Pageloading = true; //
$_getAbnormalPackage(data)
.then(async res => {
console.log(res, '查询包条');
let packageData = {};
if (res.data.code == 200 && res.data && res.data.data.length) {
form.value.Pageloading = false; //
packageData = res.data.data[0]; //,
//
let state = await form.value.PackageList.find(res => res.orderCode || res.brandName);
if (state) {
if (
state.orderCode != packageData.orderCode ||
state.brandName != packageData.brandName
) {
ElMessage({
message: '请选择相同订单自编号和品牌!',
type: 'warning',
});
addedTrainNumbers.push(itemChid.trainNumber);
return;
}
}
ElMessage({
message: '查询成功',
type: 'success',
});
});
}
// item.mallName = packageData.mallName; //
item.waybillNumber = packageData.waybillNumber || ''; //
item.orderCode = packageData.orderCode || ''; //
item.first = packageData.firsts || ''; //
item.secondary = packageData.second || ''; //
item.brandName = packageData.brandName || ''; //
form.value.basis.waybillMall = packageData.mallName || ''; //
form.value.basis.typeServiceName = packageData.typeServiceName || ''; //
// ,
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
//
if (results.length) {
item.history = true;
item.HistoricalPackageList = results;
} else {
item.history = false;
}
// Indexform.value.waybillMall = packageData.mallName; //
// Indexform.value.typeServiceName = packageData.typeServiceName
// ? packageData.typeServiceName
// : ''; //
});
// (线线)
if (form.value.discoveryNode == '3') {
let addedTrainNumbers = []; //
res.data.data.forEach(item => {
if (item.trunklines && item.trunklines.length) {
item.trunklines.forEach(itemChid => {
if (!addedTrainNumbers.includes(itemChid.trainNumber)) {
form.value.Trainoptions.push({
trainNumber: itemChid.trainNumber, //
vehicleRoute: itemChid.vehicleRoute, // 线
});
addedTrainNumbers.push(itemChid.trainNumber);
}
});
}
});
}
} else {
form.value.Pageloading = false; //
ElMessage({
message: '暂无查询内容,请检查参数是否正确!',
type: 'warning',
});
}
})
.catch(error => {
console.log(error, 'error');
form.value.Pageloading = false; //
});
};
//
const Viewdetails = value => {
@ -1254,7 +1299,6 @@ const DeliveryTrainnumber = value => {
};
//
const onSubmit = () => {
console.log(form.value.fileList);
console.log(form.value);
ruleFormRef.value.validate(valid => {
if (!valid) {
@ -1264,6 +1308,26 @@ const onSubmit = () => {
});
return;
}
//
if (form.value.groundlineType == '1') {
if (form.value.fileList.length < 2) {
ElMessage({
message: '请上传最低2张图片附件',
type: 'warning',
});
return;
}
}
//
if (form.value.groundlineType == '3') {
if (!form.value.fileList.length) {
ElMessage({
message: '请上传图片附件',
type: 'warning',
});
return;
}
}
const message = `注意信息填写正确!点击确定将<span style="color: red;">提交工单</span>是否继续?`;
ElMessageBox.confirm(message, '提示', {
@ -1275,66 +1339,7 @@ const onSubmit = () => {
form.value.Pageloading = true; //
let submitData = {
//
// packageEntityList: [
// {
// packageCode: '', //
// waybillNumber: '', //
// orderCode: '', //
// first: '', //
// secondary: '', //
// brandName: '', //
// },
// ],
//
...form.value.basis,
//
// personResponsibleDTO: [
// {
// businessName: '', //
// businessId: '', //id
// personResponsibleName: '', //
// personResponsibleId: '', //ID
// responsibilityRatio: 0, //
// tripartite: '', //
// description: '', //
// },
// ],
// OR
// processorEntityList: [
// {
// businessName: '', //
// businessId: '', //ID
// conditions: 1, //
// typesOf: '', //1 2
// },
// ],
//
// aftersalesProcessingResultsDTO: {
// compensationMethod: '', // ,
// money: 0, //
// resultType: '', // ,/
// processingMoneyEntityList: [
// {
// compensationMethodName: '', //
// compensationMethod: '2', //value
// compensationTime: '', //
// money: 0, //
// paymentUnit: '', //
// resultName: '', //
// resultType: '', // value
// typesOf: 1, //
// },
// ],
// },
//
// decreaseImageEntityList: [
// {
// imageName: '', //
// imagePath: '', //
// imageType: '', //
// },
// ],
};
//
if (form.value.PackageList.length) {
@ -1382,17 +1387,10 @@ const onSubmit = () => {
form.value.responsibilitiesList.forEach(item => {
console.log(item);
let data = {
// businessName: item.Responsibleoptions.find(res => res.id == item.businessId).label || '', //
// businessId: item.businessId, //id
// personResponsibleName: item.ResponsibleoNameptions.find(
// res => res.id == item.personResponsibleId
// ).name, //
// personResponsibleId: item.personResponsibleId, //ID
responsibilityRatio: item.responsibilityRatio, //
tripartite: item.tripartite, //
description: item.description, //
};
if (form.value.groundlineType == '1') {
data.personResponsibleName = item.personResponsibleId; //
data.businessName = item.Processingoptions.find(
@ -1429,33 +1427,78 @@ const onSubmit = () => {
});
}
console.log(submitData, '处理好的参数');
//
if (form.value.basis.result.length) {
submitData.aftersalesProcessingResultsDTO = {
money: 0, //
resultType: [], //
processingMoneyEntityList: [],
};
let PlayName = []; //
form.value.Claimamount.forEach(item => {
PlayName.push(item.Paymentmethod.find(res => res.value == item.compensationMethod).label);
submitData.aftersalesProcessingResultsDTO['processingMoneyEntityList'].push({
compensationMethodName: item.Paymentmethod.find(
res => res.value == item.compensationMethod
).label, //
compensationMethod: item.compensationMethod, //value
compensationTime: item.compensationTime, //
money: item.money, //
paymentUnit: item.paymentUnit, //
resultName: item.title, //
resultType: Processingresultsoptions.value.find(res => res.label == item.title).value, // value
typesOf: 1, //
});
});
submitData.aftersalesProcessingResultsDTO.resultType = form.value.Claimamount.map(
res => res.title
).join(','); //
$_submit(submitData).then(res => {
console.log(res, '提交成功');
});
//
let _time = setTimeout(() => {
form.value.Pageloading = false; //
clearTimeout(_time);
}, 300);
let filteredArray = form.value.Claimamount.map(res => res.money); //
// console.log(valid, '');
// console.log(form.value, 'form');
// if (!form.value.fileList || !form.value.fileList.length) {
// console.log('');
// return;
// } else if (form.value.fileList || form.value.fileList.length) {
// let state = form.value.fileList.every(
// item => item.response && item.response.data && item.response.data.link
// );
// if (!state) {
// ElMessage({
// message: '',
// type: 'warning',
// });
// }
// }
submitData.aftersalesProcessingResultsDTO.money = filteredArray.reduce(
(accumulator, currentValue) => accumulator + currentValue,
0
);
//
submitData.aftersalesProcessingResultsDTO.compensationMethod = PlayName.join(',');
submitData.aftersalesProcessingResultsDTO.resultDescription =
form.value.basis.resultDescription; //
delete form.value.basis.resultDescription; //
}
console.log(submitData, '处理好的参数');
form.value.Pageloading = true; //
$_submit(submitData)
.then(res => {
ElMessage({
message: res.data.msg || '创建成功',
type: 'success',
});
if (res.data.code == 200) {
form.value.Pageloading = false; //
ElMessageBox.confirm('当前工单创建成功,是否继续创建?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '返回',
type: 'warning',
})
.then(async () => {
form.value = await deepClone(formCopy.value); //
await PageState();
await ruleFormRef.value.resetFields();
})
.catch(() => {
$store.commit('DEL_TAG_CURRENT'); //
$router.push({
path: '/aftersales/aftersalesWorkOrder',
});
});
}
})
.catch(error => {
console.log(error, 'error');
form.value.Pageloading = false; //
});
});
});
};
@ -1583,7 +1626,7 @@ const TabactiveClick = (a, b) => {
}
}
.Basicinformation {
width: 80%;
width: 100%;
display: flex;
flex-wrap: wrap;
:deep(.el-form-item) {
@ -1604,9 +1647,9 @@ const TabactiveClick = (a, b) => {
.el_Basic {
flex: 1;
display: flex;
min-width: 20%;
min-width: 38%;
.el_Processing {
min-width: 430px;
min-width: 50%;
}
:deep(.el_Investigation) {
flex: 1;
@ -1692,6 +1735,29 @@ const TabactiveClick = (a, b) => {
.is-active {
font-weight: bold;
}
.el_top {
display: flex;
align-items: center;
margin-bottom: 10px;
height: 40px;
.el_addPackage {
border: none;
}
.el_Package_num {
font-size: 14px;
height: 80%;
border-bottom: 1px solid #409eff;
display: flex;
align-items: center;
justify-content: center;
padding: 2px;
box-sizing: border-box;
span {
color: #666;
font-weight: 500;
}
}
}
.el_Processingresults {
display: flex;
flex-wrap: wrap;
@ -1747,6 +1813,6 @@ const TabactiveClick = (a, b) => {
:deep(.el-loading-mask) {
position: fixed;
left: 12%;
top: 11%;
top: 10%;
}
</style>

42
src/views/distribution/inventory/distrilbutionBillLadingList.vue

@ -302,6 +302,26 @@ export default {
fixed: false,
sortable: true,
},
{
prop: 'pickUpTime',
label: '提货时间',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'consignee',
label: '提货人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'consigneeUnit',
label: '收货单位',
@ -470,16 +490,7 @@ export default {
fixed: false,
sortable: false,
},
{
prop: 'consignee',
label: '提货人',
type: 2,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'pickUpPlate',
label: '提货车牌',
@ -490,16 +501,7 @@ export default {
fixed: false,
sortable: false,
},
{
prop: 'pickUpTime',
label: '提货时间',
type: 2,
values: '',
width: '140',
checkarr: [],
fixed: false,
sortable: false,
},
{
prop: 'deliveryDocument',
label: '提货证件',

Loading…
Cancel
Save