Browse Source

修复客服已知bug

pre-production
马远东 1 year ago
parent
commit
fe4d5719f7
  1. 11
      src/api/aftersales/aftersalesWorkOrder.js
  2. 5
      src/views/aftersales/aftersalesWorkOrder.vue
  3. 84
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  4. 195
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  5. 26
      src/views/aftersales/aftersalesWorkOrderend.vue

11
src/api/aftersales/aftersalesWorkOrder.js

@ -425,4 +425,15 @@ export const $_updateCompletionEnd = (data) => {
method: 'post',
data
})
}
// 取消处理方 ID
export const $_updateProcessingParty = (data) => {
return request({
url: '/api/logpm-aftersales/aftersalesProcessor/updateProcessingParty',
method: 'put',
data
})
}

5
src/views/aftersales/aftersalesWorkOrder.vue

@ -1794,8 +1794,9 @@ const searchChangeS = () => {
item.values = '';
});
details.search = false; //
tabValue.value = 0;
IndexTable(); //
// tabValue.value = 0;
// IndexTable(); //
tabChenge(TabPermissions.value)
};
//
const searchReset = () => {

84
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -82,7 +82,11 @@
:content="item.waybillNumber ? item.waybillNumber : '运单号'"
placement="top"
>
<el-input v-model="item.waybillNumber" placeholder="请输入运单号" @change="ChangePackageInfo(item.packageCode, index)" />
<el-input
v-model="item.waybillNumber"
placeholder="请输入运单号"
@change="ChangePackageInfo(item.packageCode, index)"
/>
</el-tooltip>
</el-form-item>
</div>
@ -258,6 +262,7 @@
filterable
multiple
placeholder="请选择处理方"
@change="Processingrelease"
>
<el-option
v-for="item in warehouseData"
@ -390,7 +395,7 @@
</el-tab-pane>
</el-tabs>
</el-form>
<el-tabs type="border-card" class="el_Processingresults">
<el-tabs type="border-card" class="el_Processingresults" v-if="ProcessingreleaseState">
<el-tab-pane label="处理结果">
<div class="selector">
<el-select
@ -583,8 +588,7 @@
</template>
<script setup>
import { ElMessage } from 'element-plus';
import { ElMessageBox } from 'element-plus';
import { ElMessage, ElMessageBox } from 'element-plus';
import { useRouter, useRoute } from 'vue-router';
import { useStore } from 'vuex';
const $store = useStore();
@ -628,6 +632,7 @@ const fleeingState = ref(false); //窜货件数弹窗
const ShortageList = ref([]); //
const fleeingList = ref([]); //
const valueStrictly = ref();
const ProcessingreleaseState=ref(false)//
const routerID = ref(null); //ID
const routerState = ref(''); //
const personResponsibleList = ref([]); //
@ -643,7 +648,7 @@ const amplifyurl = ref(''); //当前点击的图片
const amplifysrcList = ref([]); //
const ProcessingList = ref([]); //
const Paymentmethod = ref([]); //
const Mydata=ref();//
const PackageInfo = ref([
//
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },
@ -759,6 +764,8 @@ const onLoad = () => {
// DeliveryTrainnumber(); //
console.log($route.query.id, '页面初始化');
routerState.value = $route.query.routerState;
Mydata.value=JSON.parse(localStorage.getItem('my_data'));//
console.log(Mydata.value,'记录本地登录');
updateDictionary(IndexException.value, 'pc_work_order'); //
updateDictionary(DiscoveringNodes.value, 'pc_discovery_node'); //
handle(); //
@ -987,9 +994,11 @@ const ResponsibilityRemoval = val => {
};
//
const TopChange = val => {
PackageInfo.value=[{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },]//
Indexform.value={};//
PackageInfo.value = [
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },
]; //
Indexform.value = {}; //
if (val == 0) {
identifying.value = 1;
} else {
@ -1152,6 +1161,8 @@ const ConfirmForm = () => {
brandName: item.brandName ? item.brandName : null, //
});
});
//
DataSubmit.waybillNumber = PackageInfo.value.map(item => item.waybillNumber).join(',');
}
// DataSubmit['packageEntityList'].push({
@ -1300,7 +1311,7 @@ const ConfirmForm = () => {
console.log(DataSubmit, '处理好的数据');
// stringify
$_submit(DataSubmit)
.then(res => {
@ -1418,6 +1429,18 @@ const moneyBtnB = () => {
}
fleeingState.value = true; //
};
//
const Processingrelease = ()=>{
if(Indexform.value.processor.length ==1 && Mydata.value.id==Indexform.value.processor[0] ){
ProcessingreleaseState.value = true;//
}else{
ProcessingreleaseState.value = false;//
}
}
//
const Statistics = () => {
//
@ -1428,7 +1451,7 @@ const Statistics = () => {
NumberPackages.value++;
}
});
}else{
} else {
//
NumberPackages.value = 0;
PackageInfo.value.map(res => {
@ -1442,14 +1465,13 @@ const Statistics = () => {
//
const ChangePackageInfo = (val, index) => {
if(identifying.value == '2'){
if (identifying.value == '2') {
Statistics(); //
return
return;
}
if (!val) {
if (NumberPackages.value > 1) {
if (!val) {
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //
@ -1462,7 +1484,11 @@ const ChangePackageInfo = (val, index) => {
return;
//
}
}
if(!val){
return
}
Statistics(); //
let data = {
packageCode: val,
@ -1470,8 +1496,29 @@ const ChangePackageInfo = (val, index) => {
$_getAbnormalPackage(data).then(res => {
console.log(res, '包件信息');
console.log(res.data.data, '包件信息');
if (res.data.data.length) {
const packageData = res.data.data[0];
if (NumberPackages.value > 1) {
let mallName = PackageInfo.value.find(item => item.mallName);
if (mallName != packageData.mallName) {
ElMessageBox.confirm('请选择运单商场一致的包条码!', 'Warning', {
confirmButtonText: '确定',
type: 'warning',
})
.then(() => {
return;
})
.catch(() => {
ElMessage({
type: 'info',
message: '请重新输入新包条码',
});
});
return;
}
}
//
console.log(packageData, '获取的第一个参数');
PackageInfo.value[index].orderCode = packageData.orderCode; //
PackageInfo.value[index].waybillNumber = packageData.waybillNumber; //
@ -1479,9 +1526,6 @@ const ChangePackageInfo = (val, index) => {
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].state = false; //
console.log(packageData, '处理的包件参数');
console.log(Indexform.value.firsts, '一级品');
console.log(Indexform.value.second, '二 级品');
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
@ -1496,7 +1540,9 @@ const ChangePackageInfo = (val, index) => {
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: '暂未查询到'; //
}
// packageCode; //
// //

195
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -387,7 +387,10 @@
disabled
/>
</div>
<div class="maxBox">
<span class="title">三方责任人:</span>
<el-input v-model="item.tripartite" placeholder="请输入三方责任人" disabled/>
</div>
<div class="maxBox">
<span class="title">说明:</span>
<el-input
@ -406,7 +409,86 @@
</div>
</el-tab-pane>
</el-tabs>
<!-- 完结信息 -->
<el-tabs type="border-card" class="demo-tabs el-endtabs" v-if="UserPermissions!='仓库客服'">
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
<el-icon><calendar /></el-icon>
<span>完结信息</span>
</span>
</template>
<div class="payanindemnity" v-for="(item, index) in CompensationParty" :key="index">
<div class="el_pklab">
<span class="title" :style="{ color: item.state != 0 ? '#000' : '#F56C6C' }"
>{{ item.state == 0 ? '赔款方' : '受款方' }}{{ item.cld }}</span
>
</div>
<div class="el_pkLi">
<div class="sk_input">
<el-input
v-model="item.name"
:placeholder="item.state == 0 ? '暂无赔款方' : '暂无受款方'"
disabled
/>
</div>
<div class="sk_input">
<el-input v-model="item.reason" placeholder="暂无原因" disabled />
</div>
<div class="sk_input">
<el-input
@input="amountMoney"
:min="0"
v-model="item.num"
placeholder="金额"
disabled
/>
</div>
<!-- 赔款方是那个仓库的 -->
<div class="sk_input" v-if="item.state == 0">
<el-select v-model="item.warehouseId" disabled filterable placeholder="暂无仓库">
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</div>
<div class="sk_input" v-if="item.state == 1">
</div>
<!-- 责任人 -->
<div class="sk_input" v-if="item.state == 0">
<el-input
v-model="item.personResponsibleList"
placeholder="暂无责任人"
clearable
:rows="2"
disabled
/>
</div>
<div class="sk_input" v-if="item.state == 1">
</div>
</div>
</div>
<div class="paySum">
<span>
<el-icon><Coin /></el-icon>:<b>{{
TotalamountCompensation
}}</b></span
>
<span>
<el-icon><Coin /></el-icon>:<b>{{ TotalamountReceived }}</b></span
>
</div>
</el-tab-pane>
</el-tabs>
<!-- 照片 -->
<div class="Transport_damage_photos" v-if="SelectType == 1 || SelectType == 3 || StateType">
<span class="title">{{
SelectType == 1 ? '运损照片' : SelectType == 3 ? '窜货照片' : '照片'
@ -537,6 +619,8 @@ const BatchFrom = ref({}); //打回内容
const StateType = ref(true); //
const HistoricalPackageinput = ref(''); //
const dialogImageUrl = ref(null); //
const TotalamountCompensation=ref(0);//
const TotalamountReceived=ref(0);//
const dialogVisible = ref(null); //
const ProcessingList = ref([]); //
const groundlineSet = ref(true); //线
@ -570,13 +654,38 @@ const $useStore = useStore();
const appeal = ref(false); //
const AppealReview = ref(false); //
const accessControl = $useStore.getters.permission;
const CompensationParty = ref([
{
name: '',
state: 0,
num: null,
reason: '',
cld: 1,
warehouseId: null,
personResponsibleList: '',
}, //
// explains: ''
{
name: '',
state: 1,
num: null,
reason: '',
cld: 1,
warehouseId: null,
personResponsibleList: '',
}, //
// explains: ''
]); ///
const PackageInfo = ref([
//
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '' },
]);
//
const FangAddList = ref([
{ businessName: '', personResponsibleName: '', responsibilityRatio: '', description: '' },
{ businessName: '', personResponsibleName: '', responsibilityRatio: '', description: '',tripartite:'' },
]);
//
const responsible = ref([
@ -948,6 +1057,7 @@ const onLoad = () => {
personResponsibleName: res.personResponsibleName, //
responsibilityRatio: res.responsibilityRatio + '%', //
description: res.description, //
tripartite:res.tripartite,//
};
});
console.log(FangAddList.value, '责任方回显问题');
@ -995,6 +1105,42 @@ const onLoad = () => {
Indexform.value.compensationTime = res.data.data.processingResultsVO.compensationTime;
//
Indexform.value.resultDescription = res.data.data.processingResultsVO.resultDescription;
if (res.data.data.completionRecipientEntityList.length > 0) {
CompensationParty.value = [];
res.data.data.completionRecipientEntityList.forEach((item, index) => {
TotalamountReceived.value += Number(item.money);
CompensationParty.value.push({
state: 1, //
num: item.money, //
name: item.recipient, //
reason: item.reasonReceivingPayment, //
// explains: item.explains, //
cld: index + 1,
id: item.id,
});
});
}
//
if (res.data.data.completionRecordEntities.length) {
res.data.data.completionRecordEntities.forEach((item, index) => {
TotalamountCompensation.value += Number(item.money);
CompensationParty.value.push({
state: 0, //
num: item.money, //
name: item.indemnitor, //
reason: item.reason, //
// explains: item.explains, //
cld: index + 1,
id: item.id,
accounting: item.accounting ? item.accounting : '',
});
});
}
});
};
onLoad(); //
@ -1544,7 +1690,7 @@ const AppealEstablished = () => {
width: 30%;
margin-right: 16px;
.title {
width: 80px;
width: 130px;
font-size: 14px;
color: #606266;
}
@ -1749,4 +1895,47 @@ const AppealEstablished = () => {
width: 150px;
}
}
.el-endtabs {
margin-top: 26px;
}
.payanindemnity {
display: flex;
align-items: center;
margin-top: 20px;
justify-content: space-between;
.title {
width: 126px;
height: 100%;
display: flex;
display: block;
align-items: center;
}
.sk_input {
margin: 0 5px;
margin-left: 20px;
width: 20%;
}
.el-button {
border: none;
}
.el_pkLi{
display: flex;
width: 100%;
}
}
:deep(.custom-tabs-label) {
display: flex;
align-items: center;
}
.paySum {
margin-top: 36px;
font-size: 14px;
display: flex;
span {
margin-right: 30px;
display: flex;
align-items: center;
}
}
</style>

26
src/views/aftersales/aftersalesWorkOrderend.vue

@ -728,7 +728,7 @@
<div class="felltis" v-if="KFfeel.length">上传成功</div>
</template>
</el-upload>
<el-select
v-model="separateMessageResponsibility"
multiple
@ -852,6 +852,7 @@ import {
$_getProcessor,
$_updateWorkOrderStatus,
$_updateManagerConfirmed,
$_updateProcessingParty,
} from '@/api/aftersales/aftersalesWorkOrder';
import { columnList, recordList } from '@/option/aftersales/vueTvemp.js';
import { getToken } from '@/utils/auth';
@ -926,7 +927,7 @@ const viodUrl = ref({});
const videoUrl = ref(null); //
const VideoPreviewStatus = ref(false); //
const warehouseData = ref([]); //
const MessageContent = ref([{}, {}, {}, {}, {}, {}, {}, {}, {}]);
const MessageContent = ref([]);
const CompensationParty = ref([
{
name: '',
@ -1151,8 +1152,11 @@ const onLoad = () => {
//
let sum = 0;
FangAddList.value.forEach(item => {
item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum;
if(item.responsibilityRatio){
item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum;
}
});
FangAddList.value.forEach(item => {
item.responsibilityRatio = item.responsibilityRatio + '%';
@ -1969,6 +1973,15 @@ const replyMessage = () => {
console.log(MessageContent.value, '当前的聊天记录');
console.log(warehouseData.value, '参数1212312312312312');
console.log(MessageResponsibility, '责任方');
console.log(MessageResponsibility.value,'当前处理方信息');
console.log(separateMessageResponsibility.value);
if(!MessageResponsibility.value.length && !separateMessageResponsibility.value.length){
ElMessage({
message: '请选择至少一个处理方',
type: 'warning',
})
return
}
let msgData = {
processorEntityList: [],
}; //
@ -2000,6 +2013,11 @@ const replyMessage = () => {
message: res.data.msg,
type: 'success',
});
//
// $_updateProcessingParty({id:}).then(res=>{
// console.log(res,'');
// })
}
});
};

Loading…
Cancel
Save