Browse Source

Merge branch 'dev' of http://47.108.105.48:3000/java_project/logpm_page into dev

pre-production
pref_mail@163.com 1 year ago
parent
commit
9757599397
  1. 8
      src/api/aftersales/aftersalesWorkOrder.js
  2. 21
      src/option/aftersales/vueTvemp.js
  3. 17
      src/router/views/index.js
  4. 180
      src/views/aftersales/aftersalesWorkOrder.vue
  5. 290
      src/views/aftersales/aftersalesWorkOrderAdd.vue
  6. 33
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  7. 2418
      src/views/aftersales/aftersalesWorkOrderInfoTemp.vue
  8. 298
      src/views/aftersales/aftersalesWorkOrderend.vue
  9. 283
      src/views/aftersales/aftersalesWorkOrdermodify.vue
  10. 80
      src/views/basicdata/driverArtery/basicdataDriverArtery.vue
  11. 2
      src/views/distribution/inventory/distrilbutionBillLadingList.vue

8
src/api/aftersales/aftersalesWorkOrder.js

@ -436,4 +436,12 @@ export const $_updateProcessingParty = (data) => {
method: 'put',
data
})
}
export const $_settlementUpdate = (data) => {
return request({
url: '/api/logpm-aftersales/aftersalesWorkOrder/update',
method: 'post',
data
})
}

21
src/option/aftersales/vueTvemp.js

@ -407,7 +407,7 @@ export const Claimsfield = [
{
prop: 'workOrderNumber',
label: '异常工单号',
type: 2,
type:13,
values: '',
width: '130',
checkarr: [],
@ -486,7 +486,7 @@ export const Claimsfield = [
label: '异常类型名称',
type: 3,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -508,7 +508,7 @@ export const Claimsfield = [
label: '处理结果名称',
type: 3,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -538,10 +538,10 @@ export const Claimsfield = [
// },
{
prop: 'discoveryNodeName',
label: '发现环节名称',
label: '发现环节',
type: 3,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -552,7 +552,7 @@ export const Claimsfield = [
label: '处理结果说明',
type: 2,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -618,7 +618,7 @@ export const Claimsfield = [
label: '钉钉流程号',
type: 2,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -637,10 +637,10 @@ export const Claimsfield = [
// },
{
prop: 'workOrderStatusName',
label: '工单状态名称',
label: '工单状态',
type: 3,
values: '',
width: '100',
width: '120',
checkarr: [],
fixed: false,
sortable: true,
@ -651,14 +651,13 @@ export const Claimsfield = [
label: '操作',
type: 6,
values: '',
width: '80',
width: '170',
checkarr: [],
fixed: 'right',
sortable: false,
},
]
// 申诉列表
export const AppealList = [

17
src/router/views/index.js

@ -1265,6 +1265,23 @@ export default [
],
},
{
path: '/aftersales/aftersalesWorkOrderInfoTemp',
component: Layout,
redirect: '/aftersales/aftersalesWorkOrderInfoTemp',
children: [
{
meta: {
i18n: 'dict',
keepAlive: false,
},
path: '/aftersales/aftersalesWorkOrderInfoTemp',
name: '重构详情',
component: () => import('@/views/aftersales/aftersalesWorkOrderInfoTemp.vue'),
},
],
},
{
path: '/aftersales/aftersalesWorkOrderend',
component: Layout,

180
src/views/aftersales/aftersalesWorkOrder.vue

@ -179,23 +179,21 @@
<!-- <el-button @click="addingRecord(slotProps.scope)">新增记录</el-button> -->
<el-button
v-if="
(TabPermissions !== '4' && !AppealStatusT && TabPermissions != '8') ||
(AppealStatusT &&
UserPermissions !== '仓库客服' &&
slotProps.scope.row.typesOf != '2')
(!AppealStatusT && TabPermissions != '8') || (AppealStatusT && UserPermissions !== '仓库客服' && slotProps.scope.row.typesOf != '2')
"
@click="view(slotProps.scope)"
>查看</el-button
>
<!-- 处理结果确定和完结确定 -->
<!-- 处理结果确定和处理完毕 -->
<el-button
v-if="
TabPermissions == '2' && slotProps.scope.row.workOrderStatus != '30'
TabPermissions == '1' && slotProps.scope.row.workOrderStatus!='30'
"
@click="DetermineStorage(slotProps.scope)"
>确定</el-button
>
<el-button
v-if="
TabPermissions == '6' &&
@ -208,14 +206,28 @@
>
<el-button
v-if="
AppealStatusT &&
slotProps.scope.row.typesOf == '0' &&
v-if="AppealStatusT && slotProps.scope.row.typesOf == '0' && UserPermissions == '仓库客服' "
@click="appeal(slotProps.scope, 'edit')"
>编辑</el-button
>
<!-- 处理结果编辑 -->
<el-button
v-if="TabPermissions=='4' &&
UserPermissions == '仓库客服'
"
@click="appeal(slotProps.scope, 'edit')"
@click="Resultediting(slotProps.scope)"
>编辑</el-button
>
<!-- 理赔金额确定 -->
<el-button
v-if="TabPermissions=='4' &&
UserPermissions == '仓库客服'
"
@click="DetermineClaims(slotProps.scope)"
>确定理赔金额</el-button
>
<el-button
v-if="AppealStatusT && slotProps.scope.row.typesOf == '3'"
@click="Deleteappeal(slotProps.scope, 'Delete')"
@ -634,6 +646,7 @@ import {
$_AppealDetails,
$_Cancelappeal,
$_getDetails,
$_settlementUpdate,
} from '@/api/aftersales/aftersalesWorkOrder';
import { getToken } from '@/utils/auth';
import { getDictionaryBiz } from '@/api/system/dict'; //
@ -1112,11 +1125,10 @@ const IndexTable = val => {
columnList[2].checkarr = []; //
columnList[3].checkarr = [];
columnList[10].checkarr=[]
updateDictionary(columnList[2].checkarr, 'pc_work_order'); //
updateDictionary(columnList[3].checkarr, 'pc_discovery_node'); //
updateDictionary(columnList[17].checkarr, 'work_order_status'); //
//
updateDictionary(columnList[10].checkarr, 'work_order_status'); //
getDictionaryBiz('after_sales_visits').then(res => {
console.log(res, '角色字典');
const matchingItem = res.data.data.find(
@ -1146,7 +1158,7 @@ const IndexTable = val => {
Tableheaderswitching(columnList);
console.log(res, '初始化返回值');
details.loadingObj.list = false; //
console.log(columnList[17].checkarr,'工单状态12312421');
if (res.data.data) {
page.value.total = res.data.data.total; //
@ -1190,23 +1202,27 @@ const IndexTable = val => {
item.discoveryNodeNameS = columnList[3].checkarr[7].label; //
}
if (item.workOrderStatus == 10) {
item.workOrderStatusNameS = columnList[17].checkarr[0].label; //
item.workOrderStatusNameS = columnList[10].checkarr[0].label; //
} else if (item.workOrderStatus == 20) {
item.workOrderStatusNameS = columnList[17].checkarr[1].label; //
item.workOrderStatusNameS = columnList[10].checkarr[1].label; //
} else if (item.workOrderStatus == 30) {
item.workOrderStatusNameS = columnList[17].checkarr[2].label; //
item.workOrderStatusNameS = columnList[10].checkarr[2].label; //
} else if (item.workOrderStatus == 40) {
item.workOrderStatusNameS = columnList[17].checkarr[4].label; //
item.workOrderStatusNameS = columnList[10].checkarr[4].label; //
} else if (item.workOrderStatus == 50) {
item.workOrderStatusNameS = columnList[17].checkarr[5].label; //
item.workOrderStatusNameS = columnList[10].checkarr[5].label; //
} else if (item.workOrderStatus == 60) {
item.workOrderStatusNameS = columnList[17].checkarr[3].label; //
item.workOrderStatusNameS = columnList[10].checkarr[3].label; //
} else if (item.workOrderStatus == 70) {
item.workOrderStatusNameS = columnList[17].checkarr[6].label; //
item.workOrderStatusNameS = columnList[10].checkarr[6].label; //
} else if (item.workOrderStatus == 80) {
item.workOrderStatusNameS = columnList[17].checkarr[7].label; //
item.workOrderStatusNameS = columnList[10].checkarr[7].label; //
} else if (item.workOrderStatus == 90) {
item.workOrderStatusNameS = columnList[17].checkarr[8].label; //
item.workOrderStatusNameS = columnList[10].checkarr[8].label; //
}else if (item.workOrderStatus == 21) {
item.workOrderStatusNameS = columnList[10].checkarr[9].label; //
}else if (item.workOrderStatus == 100) {
item.workOrderStatusNameS = columnList[10].checkarr[10].label; //
}
});
details.data = res.data.data.records;
@ -1367,6 +1383,7 @@ const searchHide = () => {
//
const InformationViewing = val => {
console.log(val,'当前行数据');
if (AppealStatusT.value) {
//
$router.push({
@ -1387,7 +1404,27 @@ const InformationViewing = val => {
});
return;
}
//
if(TabPermissions.value==4){
$router.push({
// AppealStatusT
path: '/aftersales/aftersalesWorkOrderInfo',
query: {
id: val.row.lawoId,
appealID: val.row.id, //
name: val.row.workOrderNumber + '-信息查看',
warehouseId: val.row.warehouseId,
workOrderNumber: val.row.workOrderNumber, //
businessId: val.row.businessId,
ProcessType: TabPermissions.value == 2 ? '2' : TabPermissions.value == 3 ? '1' : '', // 1 2
RouteIndexs: TabPermissions.value, //
Routstate: '', //
AppealReview: val.row.typesOf ? (val.row.typesOf == '0' ? 'true' : 'false') : 'true', //
workOrderStatus: val.row.workOrderStatus, //
},
});
return
}
$router.push({
path: '/aftersales/aftersalesWorkOrderInfo',
query: {
@ -1403,7 +1440,29 @@ const InformationViewing = val => {
};
//
const view = val => {
console.log(val.row.id);
console.log(val.row);
//
if(TabPermissions.value==4){
$router.push({
// AppealStatusT
path: '/aftersales/aftersalesWorkOrderInfo',
query: {
id: val.row.lawoId,
appealID: val.row.id, //
name: val.row.workOrderNumber + '-信息查看',
warehouseId: val.row.warehouseId,
workOrderNumber: val.row.workOrderNumber, //
businessId: val.row.businessId,
ProcessType: TabPermissions.value == 2 ? '2' : TabPermissions.value == 3 ? '1' : '', // 1 2
RouteIndexs: TabPermissions.value, //
Routstate: '', //
AppealReview: val.row.typesOf ? (val.row.typesOf == '0' ? 'true' : 'false') : 'true', //
workOrderStatus: val.row.workOrderStatus, //
},
});
return
}
$router.push({
// AppealStatusT
path: '/aftersales/aftersalesWorkOrderInfo',
@ -1418,6 +1477,7 @@ const view = val => {
RouteIndexs: TabPermissions.value, //
Routstate: '', //
AppealReview: val.row.typesOf ? (val.row.typesOf == '0' ? 'true' : 'false') : 'true', //
workOrderStatus: val.row.workOrderStatus, //
},
});
};
@ -1615,6 +1675,47 @@ const appeal = (val, state) => {
dialogappeal.value = true; //
}
};
//
const DetermineClaims=(val)=>{
console.log(val.row);
let data={
id:val.row.lawoId,
workOrderStatus:30
}
details.loadingObj.list = true; //
console.log(data,'处理好的值');
$_settlementUpdate(data).then(res=>{
console.log(res);
details.loadingObj.list = false; //
if(res.data.code==200){
tabChenge(TabPermissions.value);
}
}).catch(res=>{
details.loadingObj.list = false; //
})
}
//
const Resultediting=(val)=>{
console.log(val.row,'参数');
// return
console.log(val.row,'理赔金额未出');
$router.push({
path: '/aftersales/aftersalesWorkOrdermodify',
query: {
id: val.row.lawoId,
subId:val.row.laprId,
name: val.row.workOrderNumber + '-理赔金额未出编辑',
businessId:val.row.businessId,
warehouseId: val.row.warehouseId,
workOrderNumber:val.row.workOrderNumber,
RouterState:'Kfend',
Processingresults:true,//
index: '1',
},
});
}
//
const Appealbutton = state => {
if (UserPermissions.value == '仓库客服') {
@ -2020,8 +2121,16 @@ const settlementclaim = val => {
$_listSettlement(data).then(res => {
details.loadingObj.list = false; //
console.log(res, '查询理赔数据');
details.data = res.data.data.records; //
page.value.total = res.data.data.total;
if(res.data.data){
if(res.data.data.records.length){
details.data = res.data.data.records; //
}else{
details.data=[]
}
page.value.total = res.data.data.total;
}
}).catch(res=>{
details.loadingObj.list = false; //
});
};
//
@ -2051,6 +2160,8 @@ const appealFn = val => {
details.data = [];
}
page.value.total = res.data.data.total;
}).catch(res=>{
details.loadingObj.list = false; //
});
};
@ -2488,8 +2599,7 @@ const fellSuccess = (response, uploadFile) => {
KFfeel.value = response.data.link;
}
};
//
//
const DetermineStorage = val => {
let data = {
assignList: [],
@ -2498,7 +2608,7 @@ const DetermineStorage = val => {
ID = val.row.id;
data['assignList'].push(ID);
details.loadingObj.list = true; //
if (TabPermissions.value == '6') {
if(UserPermissions.value =='总部客服经理' && TabPermissions.value == '2'){
$_updateManagerConfirmed(data)
.then(res => {
if (res.data.code == 200) {
@ -2507,7 +2617,7 @@ const DetermineStorage = val => {
type: 'success',
});
}
console.log(res, '完结确定');
console.log(res, '处理完毕确定');
tabChenge(TabPermissions.value);
})
.catch(res => {
@ -2515,8 +2625,12 @@ const DetermineStorage = val => {
});
//
console.log(data, '处理好的值');
return
}
if (TabPermissions.value == '2') {
//
if (TabPermissions.value == '2' && UserPermissions.value=='仓库客服' && val.row.workOrderStatus != '30') {
console.log(data, '处理好的数据');
$_updateWorkOrderStatus(data)
.then(res => {

290
src/views/aftersales/aftersalesWorkOrderAdd.vue

@ -97,7 +97,13 @@
:content="item.orderCode ? item.orderCode : '订单自编号'"
placement="top"
>
<el-input v-model="item.orderCode" :disabled="identifying != '2'" :placeholder="identifying != '2'?'订单自编号(自动带出)':'请输入订单自编号'" />
<el-input
v-model="item.orderCode"
:disabled="identifying != '2'"
:placeholder="
identifying != '2' ? '订单自编号(自动带出)' : '请输入订单自编号'
"
/>
</el-tooltip>
</el-form-item>
</div>
@ -105,7 +111,11 @@
<div class="maxBox">
<el-form-item label="品牌">
<el-tooltip :content="item.brandName ? item.brandName : '品牌'" placement="top">
<el-input v-model="item.brandName" :disabled="identifying != '2'" :placeholder="identifying != '2'?'品牌(自动带出)':'请输入品牌'" />
<el-input
v-model="item.brandName"
:disabled="identifying != '2'"
:placeholder="identifying != '2' ? '品牌(自动带出)' : '请输入品牌'"
/>
</el-tooltip>
</el-form-item>
</div>
@ -344,7 +354,7 @@
placeholder="请选责任人"
>
<el-option
v-for="item in personResponsibleList"
v-for="item in item.personResponsibleList"
:key="item.id"
:label="item.name"
:value="item.id"
@ -632,7 +642,7 @@ const fleeingState = ref(false); //窜货件数弹窗
const ShortageList = ref([]); //
const fleeingList = ref([]); //
const valueStrictly = ref();
const ProcessingreleaseState=ref(false)//
const ProcessingreleaseState = ref(false); //
const routerID = ref(null); //ID
const routerState = ref(''); //
const personResponsibleList = ref([]); //
@ -648,7 +658,7 @@ const amplifyurl = ref(''); //当前点击的图片
const amplifysrcList = ref([]); //
const ProcessingList = ref([]); //
const Paymentmethod = ref([]); //
const Mydata=ref();//
const Mydata = ref(); //
const PackageInfo = ref([
//
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },
@ -757,15 +767,15 @@ const ResponsiblePartychange = (val, index) => {
warehouseId: val,
}).then(res => {
console.log(res, '获取责任人列表');
personResponsibleList.value = res.data.data;
FangAddList.value[index].personResponsibleList = res.data.data;
});
};
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,'记录本地登录');
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(); //
@ -959,6 +969,7 @@ const AddPackage = () => {
waybillNumber: '',
brandName: '',
state: false,
mallName: '',
});
};
//
@ -995,7 +1006,14 @@ const ResponsibilityRemoval = val => {
//
const TopChange = val => {
PackageInfo.value = [
{ packageCode: '', orderCode: '', waybillNumber: '', brandName: '', state: false },
{
packageCode: '',
orderCode: '',
waybillNumber: '',
brandName: '',
state: false,
mallName: '',
},
]; //
Indexform.value = {}; //
@ -1130,19 +1148,6 @@ const ConfirmForm = () => {
let processorEntityList = [];
//
if (Indexform.value.processor.length) {
Indexform.value.processor.forEach(item => {
let found = warehouseData.value.find(element => element.value == item.toString());
processorEntityList.push({
businessName: found ? found.label : '',
businessId: item,
conditions: 1,
typesOf: 2,
});
});
}
DataSubmit.processorEntityList = processorEntityList;
DataSubmit.decreaseImageEntityList = JSON.parse(
JSON.stringify(Indexform.value['decreaseImageEntityList'])
@ -1153,18 +1158,28 @@ const ConfirmForm = () => {
//
if (PackageInfo.value.length) {
PackageInfo.value.forEach(item => {
DataSubmit['packageEntityList'].push({
number: PackageInfo.value.length, //
packageCode: item.packageCode ? item.packageCode : null, //
waybillNumber: item.waybillNumber ? item.waybillNumber : null, //
orderCode: item.orderCode ? item.orderCode : null, //
brandName: item.brandName ? item.brandName : null, //
});
if (item.packageCode) {
DataSubmit['packageEntityList'].push({
number: PackageInfo.value.length, //
packageCode: item.packageCode ? item.packageCode : null, //
waybillNumber: item.waybillNumber ? item.waybillNumber : null, //
orderCode: item.orderCode ? item.orderCode : null, //
brandName: item.brandName ? item.brandName : null, //
});
}
});
DataSubmit.packageCode = [...new Set(PackageInfo.value.map(item => item.packageCode))].join(','); //
DataSubmit.waybillNumber = [...new Set(PackageInfo.value.map(item => item.waybillNumber))].join(','); //
DataSubmit.brandName = [...new Set(PackageInfo.value.map(item => item.brandName))].join(','); //
DataSubmit.orderCode = [...new Set(PackageInfo.value.map(item => item.orderCode))].join(','); //
DataSubmit.packageCode = [...new Set(PackageInfo.value.map(item => item.packageCode))].join(
','
); //
DataSubmit.waybillNumber = [
...new Set(PackageInfo.value.map(item => item.waybillNumber)),
].join(','); //
DataSubmit.brandName = [...new Set(PackageInfo.value.map(item => item.brandName))].join(
','
); //
DataSubmit.orderCode = [...new Set(PackageInfo.value.map(item => item.orderCode))].join(
','
); //
}
// DataSubmit['packageEntityList'].push({
@ -1176,7 +1191,7 @@ const ConfirmForm = () => {
// waybillNumber: PackageInfo.value.map(item => item.waybillNumber).join(','), //
// orderCode: PackageInfo.value.map(item => item.orderCode).join(','), //
// });
//
Indexform.value.number = PackageInfo.value.length;
console.log(DataSubmit['packageEntityList'], '包件信息');
@ -1214,10 +1229,10 @@ const ConfirmForm = () => {
wordOrderId: Indexform.value.workOrderNumber, //ID
description: item.description ? item.description : null, //
personResponsibleId:
personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)?.id ||
item.personResponsibleList.find(obj => obj.id == item.personResponsibleName)?.id ||
null, //ID
personResponsibleName:
personResponsibleList.value.find(obj => obj.id == item.personResponsibleName)
item.personResponsibleList.find(obj => obj.id == item.personResponsibleName)
?.name || null, //
responsibilityRatio: item.responsibilityRatio ? item.responsibilityRatio : null, //
tripartite: item.tripartite ? item.tripartite : null, //
@ -1248,6 +1263,19 @@ const ConfirmForm = () => {
console.log(DataSubmit['personResponsibleDTO'], '新责任方处理的数据');
//console.log(Indexform.value.duty.length);
//
//
if (Indexform.value.processor.length) {
Indexform.value.processor.forEach(item => {
let found = warehouseData.value.find(element => element.value == item.toString());
processorEntityList.push({
businessName: found ? found.label : '',
businessId: item,
conditions: 1,
typesOf: 2,
});
});
}
if (FangAddList.value.length) {
FangAddList.value.forEach(item => {
console.log(item, 'item');
@ -1312,9 +1340,6 @@ const ConfirmForm = () => {
delete DataSubmit.processor; //
console.log(DataSubmit, '处理好的数据');
// stringify
$_submit(DataSubmit)
.then(res => {
if (res.data.code == 200) {
@ -1433,15 +1458,13 @@ const moneyBtnB = () => {
};
//
const Processingrelease = ()=>{
if(Indexform.value.processor.length ==1 && Mydata.value.id==Indexform.value.processor[0] ){
ProcessingreleaseState.value = true;//
}else{
ProcessingreleaseState.value = false;//
const Processingrelease = () => {
if (Indexform.value.processor.length == 1 && Mydata.value.id == Indexform.value.processor[0]) {
ProcessingreleaseState.value = true; //
} else {
ProcessingreleaseState.value = false; //
}
}
};
//
const Statistics = () => {
@ -1467,93 +1490,116 @@ const Statistics = () => {
//
const ChangePackageInfo = (val, index) => {
//
if (identifying.value == '2') {
Statistics(); //
return;
}
if (NumberPackages.value > 1) {
} else {
if (!val) {
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //
PackageInfo.value[index].brandName = ''; //
Indexform.value.first = ''; //
Indexform.value.secondary = ''; //
Indexform.value.waybillMall = ''; //
Indexform.value.typeServiceName = ''; //
return;
}
Statistics(); //
if (!NumberPackages.value) {
if (!val) {
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //
PackageInfo.value[index].brandName = ''; //
Indexform.value.first = ''; //
Indexform.value.secondary = ''; //
Indexform.value.waybillMall = ''; //
Indexform.value.typeServiceName = ''; //
return;
//
}
}
return;
//
}
}
// if (NumberPackages.value > 1) {
// const found = PackageInfo.value
// .filter(item => item.packageCode !== val)
// .some(item => item.packageCode === val);
// if (found) {
// console.log('false');
// ElMessage({
// message: '',
// type: 'warning',
// });
// return;
// }
// }
if(!val){
return
}
Statistics(); //
let data = {
packageCode: val,
};
$_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;
Statistics(); //
let data = {
packageCode: val,
};
$_getAbnormalPackage(data).then(res => {
console.log(res, '包件信息');
console.log(res.data.data, '包件信息');
if (res.data.data.length) {
console.log(NumberPackages.value, 'NumberPackages.value ');
console.log(PackageInfo.value, 'PackageInfo.value');
const packageData = res.data.data[0];
if (NumberPackages.value > 1) {
let mallName = PackageInfo.value.find(item => item.mallName).mallName;
console.log(mallName, '筛选出来的值');
if (mallName != packageData.mallName) {
ElMessageBox.confirm('请选择运单商场一致的包条码!', 'Warning', {
confirmButtonText: '确定',
type: 'warning',
})
.catch(() => {
ElMessage({
type: 'info',
message: '请重新输入新包条码',
.then(() => {
return;
})
.catch(() => {
ElMessage({
type: 'info',
message: '请重新输入新包条码',
});
});
});
return;
return;
}
}
}
//
console.log(packageData, '获取的第一个参数');
PackageInfo.value[index].orderCode = packageData.orderCode; //
PackageInfo.value[index].waybillNumber = packageData.waybillNumber; //
PackageInfo.value[index].orderId = packageData.orderId; //
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].state = false; //
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
console.log(results, '筛选后的结果');
if (results.length > 0) {
HistoricalPackageList.value = results;
PackageInfo.value[index].state = true; //
} else {
console.log('跑到这里来了');
//
console.log(packageData, '获取的第一个参数');
PackageInfo.value[index].orderCode = packageData.orderCode; //
PackageInfo.value[index].waybillNumber = packageData.waybillNumber; //
PackageInfo.value[index].orderId = packageData.orderId; //
PackageInfo.value[index].brandName = packageData.brandName; //
PackageInfo.value[index].mallName = packageData.mallName; //
PackageInfo.value[index].state = false; //
const results = res.data.data.filter(item => {
return item.workOrderId && item.workOrderNumber;
});
console.log(results, '筛选后的结果');
if (results.length > 0) {
HistoricalPackageList.value = results;
PackageInfo.value[index].state = true; //
} else {
PackageInfo.value[index].state = false; //
}
// HistoricalPackageList PackageInfo
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: null; //
}
// HistoricalPackageList PackageInfo
Indexform.value.first = packageData.firsts; //
Indexform.value.secondary = packageData.second; //
Indexform.value.waybillMall = packageData.mallName; //
Indexform.value.typeServiceName = packageData.typeServiceName
? packageData.typeServiceName
: null; //
}
// packageCode; //
// //
// orderCode: orderId; //
// workOrderId; //id
// workOrderNumber; //
// packageCode; //
// //
// orderCode: orderId; //
// workOrderId; //id
// workOrderNumber; //
console.log(PackageInfo.value, '处理好的参数');
});
console.log(PackageInfo.value, '处理好的参数');
});
}
};
//

33
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -530,7 +530,7 @@
v-if="PermissionButton.arbitration_completed"
v-if="PermissionButton.information_editing" -->
<el-button type="primary" @click="addireply">回复</el-button>
<el-button type="primary" @click="addingRecord">处理结果</el-button>
<el-button type="primary" @click="addingRecord" v-if="$route.query.workOrderStatus!='21'">处理结果</el-button>
<el-button type="primary" @click="EndJump">完结 </el-button>
<el-button type="primary" @click="BatchReturn">打回 </el-button>
<el-button type="primary" @click="CustomerServiceCompleted">客服仲裁完结 </el-button>
@ -690,33 +690,18 @@ const FangAddList = ref([
//
const responsible = ref([
{
value: '1',
value: 1,
label: '工厂',
},
{
value: '2',
value: 2,
label: '外包搬运',
},
{
value: '3',
value: 3,
label: '物流',
},
]);
const DeliveryDriver = ref([
{
value: '0',
label: '兰溪',
},
{
value: '1',
label: '李华',
},
{
value: '2',
label: '唐飞',
},
]);
//
const fileList = ref([]);
//
@ -1023,7 +1008,7 @@ const onLoad = () => {
$_getInfo({ id: $route.query.id }).then(res => {
console.log(res, '回显返回值参数');
Indexform.value = res.data.data;
Indexform.value['result'] = [];
Indexform.value['processor'] = [];
//
@ -1051,6 +1036,13 @@ const onLoad = () => {
res.data.data.personResponsibleVOS.forEach(item => {
sum = Number(item.responsibilityRatio) + sum;
});
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
return {
businessName: res.businessId, //ID
@ -1479,6 +1471,7 @@ const EndJump = () => {
name: $route.query.workOrderNumber + '-完结填写',
RouterState: 'end',
index: '2',
workOrderStatus: $route.query.workOrderStatus,//
},
});
};

2418
src/views/aftersales/aftersalesWorkOrderInfoTemp.vue

File diff suppressed because it is too large Load Diff

298
src/views/aftersales/aftersalesWorkOrderend.vue

@ -587,7 +587,7 @@
>客服仲裁完结</el-button
>
<el-button
v-if="$route.query.index == '0'"
v-if="$route.query.index == '0' && $route.query.workOrderStatus!='21'"
type="primary"
class="button"
@click="ElProcessingResults"
@ -716,39 +716,41 @@
<div class="inputMax" v-loading="Msgloadinga" element-loading-text="Loading...">
<div class="inputfell">
<div class="inputbtn">
<div class="inputleft">
<el-upload
ref="uploadRef"
class="upload-demo"
:action="doubledCount"
:headers="headers"
:on-success="fellSuccess"
>
<template #trigger>
<el-button type="primary" class="el-fil">上传附件</el-button>
<div class="felltis" v-if="KFfeel.length">上传成功</div>
</template>
</el-upload>
<el-select
v-model="separateMessageResponsibility"
multiple
filterable
default-first-option
:reserve-keyword="false"
placeholder="指定处理方"
@change="Msgresponsibility"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
:disabled="item.disabled"
/>
</el-select>
</div>
<el-button type="primary" class="el_next" @click="NextRecord()"> 下一条 </el-button>
<div class="inputleft">
<el-upload
ref="uploadRef"
class="upload-demo"
:action="doubledCount"
:headers="headers"
:on-success="fellSuccess"
>
<template #trigger>
<el-button type="primary" class="el-fil">上传附件</el-button>
<div class="felltis" v-if="KFfeel.length">上传成功</div>
</template>
</el-upload>
<el-select
v-model="separateMessageResponsibility"
multiple
filterable
default-first-option
:reserve-keyword="false"
placeholder="指定处理方"
@change="Msgresponsibility"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
:label="item.label"
:value="item.value"
:disabled="item.disabled"
/>
</el-select>
</div>
<el-button type="primary" class="el_next" @click="NextRecord()">
下一条
</el-button>
</div>
<el-input
@ -759,11 +761,9 @@
@input="appoint(Msgtextarea)"
/>
<div class="msgHf">
<el-button type="primary" @click="replyMessage()"> 回复 </el-button>
</div>
<el-button type="primary" @click="replyMessage()"> 回复 </el-button>
</div>
</div>
</div>
</div>
@ -900,7 +900,7 @@ const dialogImgList = ref(false); //图片预览弹窗
const amplifyurl = ref(''); //
const amplifysrcList = ref([]); //
const Replycopy = ref([]); //
const Mydata=ref();//
const Mydata = ref(); //
const PackageInfo = ref([
//
{ packageCode: '', orderCode: '', waybillNumber: '' },
@ -1067,7 +1067,7 @@ const TransportChange = val => {
//
const onLoad = () => {
Mydata.value=JSON.parse(localStorage.getItem('my_data'));//
Mydata.value = JSON.parse(localStorage.getItem('my_data')); //
//
getDictionaryBiz('after_sales_visits').then(res => {
console.log(res, '角色字典');
@ -1095,6 +1095,11 @@ const onLoad = () => {
endFrom.value.processor = [];
endFrom.value.packageImage = [];
//
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
res.data.data.decreaseImageVOList.forEach(res => {
amplifysrcList.value.push(res.imagePath);
endFrom.value['packageImage'].push({
@ -1111,7 +1116,10 @@ const onLoad = () => {
.map(item => {
return { businessName: item.businessId };
});
let factorydata = res.data.data.personResponsibleVOS.find(item => item.typesOf);
if (factorydata.typesOf) {
groundlineType.value = true; //
}
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
console.log(groundlineType.value, '当前责任方状态');
return {
@ -1121,6 +1129,7 @@ const onLoad = () => {
description: res.description, //
};
});
//
res.data.data.processorVOList.forEach(item => {
if (item) {
@ -1157,11 +1166,10 @@ const onLoad = () => {
//
let sum = 0;
FangAddList.value.forEach(item => {
if(item.responsibilityRatio){
if (item.responsibilityRatio) {
item.responsibilityRatio = item.responsibilityRatio.replace(/%/g, '');
sum = Number(item.responsibilityRatio) + sum;
}
});
FangAddList.value.forEach(item => {
item.responsibilityRatio = item.responsibilityRatio + '%';
@ -1288,81 +1296,81 @@ const Fileidentifier = val => {
}
return undefined; // undefined
};
//
const Chathistory = () => {
//
const Chathistory = res => {
Msgloading.value = true; //
MessageResponsibility.value = []; //
Msgtextarea.value = ''; //
$_getSurveyRecord({
id: $route.query.id,
}).then(res => {
let filetype = ''; //
MessageContent.value = []; //
Msgloading.value = false; //
console.log(res, '聊天记录');
res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl);
}
let filetype = ''; //
MessageContent.value = []; //
let resData = null; //
if (UserPermissions.value != '仓库客服') {
console.log(UserPermissions.value, '当前不是仓库客服');
$_getTrackRecord({
id: $route.query.id,
}).then(res => {
res.data.data.surveyRecordEntities.forEach(item => {
MessageContent.value.unshift({
time: item.createTime, //
content: item.processingResults, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: false, //
});
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
Msgloading.value = false; //
console.log(res, '聊天记录');
});
} else {
$_getSurveyRecord({
id: $route.query.id,
}).then(res => {
console.log(res, '聊天返回值');
console.log(resData, '处理记录返回值');
//
if (res.data.data.processorVOList) {
if (res.data.data.processorVOList.length) {
msgState.value = res.data.data.processorVOList[0].processingStatus; //
}
}
//
MessageContent.value.push({
time: item.createTime, //
content: item.content, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: true, //
});
});
console.log(MessageContent.value, '处理好的聊天记录');
if (UserPermissions.value != '仓库客服') {
console.log(UserPermissions.value, '当前不是仓库客服');
$_getTrackRecord({
id: $route.query.id,
}).then(res => {
console.log(res, '处理记录返回值');
res.data.data.surveyRecordEntities.forEach(item => {
MessageContent.value.unshift({
time: item.createTime, //
content: item.processingResults, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: false, //
});
res.data.data.surveyRecordEntities.forEach(item => {
if (item.pictureUrl) {
filetype = Fileidentifier(item.pictureUrl);
}
MessageContent.value.push({
time: item.createTime, //
content: item.content, //
name: item.addDepartment, //
username: item.addPeople, //
img: filetype == 'png' ? item.pictureUrl : '',
file: filetype == 'docx' ? item.pictureUrl : '',
mp4: filetype == 'mp4' ? item.pictureUrl : '',
imgList: [filetype == 'png' ? item.pictureUrl : ''],
difference: item.difference,
identifying: true, //
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
});
}
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
//
});
setTimeout(() => {
const container = scrollContainer.value;
if (container) {
container.scrollTop = container.scrollHeight;
}
}, 0);
Msgloading.value = false; //
console.log(res, '聊天记录');
});
}
};
onLoad();
@ -1886,7 +1894,8 @@ const submit = () => {
let info = JSON.parse(JSON.stringify(endFrom.value)); //
let data = {
aftersalesProcessingResultsDTO: {
...info,
// ...info,
},
processingMoneyEntityList: [], //
};
@ -1898,6 +1907,8 @@ const submit = () => {
sum = computeNumber(sum, '+', ProcessingList.value[i].input).result;
}
data.aftersalesProcessingResultsDTO.money = sum; //
// data.resultDescription=endFrom.value.resultDescription;//
data.aftersalesProcessingResultsDTO.resultDescription=endFrom.value.resultDescription;//
// data['compensationMethod'] = Paymentmethod.value.filter(
// item => item.dictKey == endFrom.value.compensationMethod
// )[0].dictValue; //
@ -1908,7 +1919,7 @@ const submit = () => {
data.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value
.map(item => item.text)
.join(',');
data['processingMoneyEntityList'] = ProcessingList.value
data.aftersalesProcessingResultsDTO.processingMoneyEntityList = ProcessingList.value
.map(item => {
console.log(item);
let match = ProcessingResults.value.find(element => element.dictValue == item.name);
@ -1934,8 +1945,12 @@ const submit = () => {
})
.filter(item => item !== null);
// data.aftersalesProcessingResultsDTO.paymentUnit = paymentUnit.value; //
data.aftersalesProcessingResultsDTO.processingMoneyEntityList =
data['processingMoneyEntityList'];
data.aftersalesProcessingResultsDTO.paymentUnit = ProcessingList.value
.map(item => item.paymentUnit)
.join(','); //
// data.aftersalesProcessingResultsDTO.processingMoneyEntityList = data['processingMoneyEntityList'];
console.log('走到了这一步');
data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //ID
data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
@ -1951,12 +1966,11 @@ const submit = () => {
} else {
data.aftersalesProcessingResultsDTO['annex'] = imgLink;
}
console.log(data, '处理好的数据');
delete data.aftersalesProcessingResultsDTO.id; //ID
data.aftersalesProcessingResultsDTO.warehouseId = info.warehouseId; //ID
console.log(data, '处理好的数据');
$_addProcessingResults(data)
.then(res => {
console.log(res, '提交后的参数');
@ -1975,34 +1989,31 @@ const submit = () => {
};
//
const replyMessage = () => {
if(!Msgtextarea.value){
if (!Msgtextarea.value) {
ElMessage({
message: '请输入回复内容',
type: 'warning',
})
return
message: '请输入回复内容',
type: 'warning',
});
return;
}
// if (endFrom.value.processor.includes()) {
// console.log(true);
// } else {
// console.log(false);
// }
// if (endFrom.value.processor.includes()) {
// console.log(true);
// } else {
// console.log(false);
// }
console.log(MessageContent.value, '当前的聊天记录');
console.log(warehouseData.value, '参数1212312312312312');
console.log(MessageResponsibility, '责任方');
console.log(MessageResponsibility.value,'当前处理方信息');
console.log(MessageResponsibility.value, '当前处理方信息');
console.log(separateMessageResponsibility.value);
if(!MessageResponsibility.value.length && !separateMessageResponsibility.value.length){
if (!MessageResponsibility.value.length && !separateMessageResponsibility.value.length) {
ElMessage({
message: '请选择至少一个处理方',
type: 'warning',
})
return
message: '请选择至少一个处理方',
type: 'warning',
});
return;
}
let msgData = {
processorEntityList: [],
@ -2524,8 +2535,8 @@ const CustomerServiceCompleted = () => {
align-items: flex-end;
justify-content: space-between;
position: absolute;
right: 0;
bottom: 0;
right: 0;
bottom: 0;
:deep(.el-button) {
margin-left: 20px;
}
@ -2594,23 +2605,22 @@ const CustomerServiceCompleted = () => {
justify-content: space-between;
align-items: center;
}
.inputleft{
display:flex;
:deep(.el-fil){
background-color: #afbdc3;
.inputleft {
display: flex;
:deep(.el-fil) {
background-color: #409eff;
border: none;
}
}
:deep(.el_next){
background-color: #afbdc3;
border: none;
:deep(.el_next) {
background-color: #409eff;
border: none;
}
:deep(.el_next:hover){
:deep(.el_next:hover) {
background-color: #409eff;
}
}
:deep(.el-textarea){
:deep(.el-textarea) {
margin-top: 6px;
}
}

283
src/views/aftersales/aftersalesWorkOrdermodify.vue

@ -1,14 +1,6 @@
<template>
<el-card class="box-card" v-loading="editloading"
element-loading-text="正在处理中...">
<!-- <el-tabs type="border-card" class="topClass" @tab-change="TopChange">
<el-tab-pane label="订单"></el-tab-pane>
<el-tab-pane label="零担"></el-tab-pane>
</el-tabs> -->
<!-- <el-divider content-position="left">
<span> {{ routerState ? '信息查看' : '工单新增' }}</span>
</el-divider> -->
<el-card class="box-card" v-loading="editloading" element-loading-text="正在处理中...">
<el-tabs type="border-card" class="PackageInformation">
<el-tab-pane label="包件信息">
<div class="ResponsibilityBoxS">
@ -129,6 +121,7 @@
v-model="Indexform.trainNumber"
placeholder="请输入车次号(干线卸车环节)"
clearable
@change="DeliveryTrainnumber"
/>
</el-form-item>
<!-- 必填 -->
@ -249,7 +242,7 @@
</el-form>
<el-tabs type="border-card">
<el-tab-pane label="责任方选择">
<el-tab-pane label="内部责任划分">
<div class="ResponsibilityBox">
<div>
<el-button type="primary" @click="responsibleParty" v-if="RouterState != 'Kfend'">
@ -268,6 +261,7 @@
clearable
placeholder="请选提货择责任方"
v-if="groundlineType == 1"
:disabled="RouterState == 'Kfend'"
>
<el-option
v-for="item in responsible"
@ -414,7 +408,6 @@
/>
</div>
<el-date-picker
disabled
v-model="item.compensationTime"
type="datetime"
format="YYYY-MM-DD"
@ -427,9 +420,20 @@
<div class="el_tool">
<span>总金额:{{ TotalClaimAmount }}</span>
</div>
</div>
<el-tabs type="border-card" class="demo-tabs">
</div>
<!-- 处理结果说明 -->
<el-form-item label="处理结果说明" class="el_resj">
<el-input
v-model="Indexform.resultDescription"
placeholder="请输入处理结果说明"
clearable
:autosize="{ minRows: 3, maxRows: 4 }"
type="textarea"
:disabled="Appealeditor == 'appeal'"
/>
</el-form-item>
<el-tabs type="border-card" class="demo-tabs" v-if="!Processingresults">
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
@ -455,21 +459,38 @@
<el-input
v-model="item.name"
:placeholder="item.state == 0 ? '请填写赔款方' : '请填写受款方'"
:disabled="Processingresults"
/>
<!-- Processingresults表示此刻只能编辑处理结果 -->
</div>
<div class="sk_input">
<el-form-item label="原因">
<el-input v-model="item.reason" placeholder="请填写原因" />
<el-input
v-model="item.reason"
:disabled="Processingresults"
placeholder="请填写原因"
/>
</el-form-item>
</div>
<div class="sk_input">
<el-form-item label="金额">
<el-input @input="amountMoney" :min="0" v-model="item.num" placeholder="金额" />
<el-input
@input="amountMoney"
:min="0"
v-model="item.num"
placeholder="金额"
:disabled="Processingresults"
/>
</el-form-item>
</div>
<div class="sk_input" v-if="item.state == 0">
<el-form-item label="仓库">
<el-select v-model="item.warehouseId" filterable placeholder="请选择仓库">
<el-select
v-model="item.warehouseId"
filterable
placeholder="请选择仓库"
:disabled="Processingresults"
>
<el-option
v-for="item in warehouseData"
:key="item.value"
@ -487,6 +508,7 @@
placeholder="请填写责任人"
clearable
:rows="2"
:disabled="Processingresults"
/>
</el-form-item>
</div>
@ -521,7 +543,7 @@
</el-tabs>
<!-- 仲裁原因 -->
<div class="arbitrate">
<div class="arbitrate" v-if="!Processingresults">
<el-tabs type="border-card" class="demo-tabs">
<el-tab-pane>
<template #label>
@ -536,6 +558,7 @@
type="textarea"
:autosize="{ minRows: 5, maxRows: 4 }"
placeholder="请输入仲裁原因"
:disabled="Processingresults"
/>
</el-tab-pane>
</el-tabs>
@ -578,7 +601,9 @@
<el-button
type="primary"
@click="Arbitrationcompleted"
v-if="(RouterState == 'Kfend' && !Appealeditor) || Appealeditor == 'appeal'"
v-if="
(RouterState == 'Kfend' && !Appealeditor) || Appealeditor == 'appeal' || Processingresults
"
>
提交
</el-button>
@ -696,6 +721,7 @@ import {
$_modifyData,
$_shippingInformation,
$_updateCompletionEnd,
$_addProcessingResults,
} from '@/api/aftersales/aftersalesWorkOrder';
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue';
import { AddressClosed } from '@/utils/util';
@ -714,7 +740,7 @@ const Indexform = ref({
decreaseImageEntityList: [], //
}); //
const IndexException = ref([]); //
const editloading=ref(false);//
const editloading = ref(false); //
const ProcessingList = ref([]); //
const DiscoveringNodes = ref([]); //
const warehouseData = ref([]); //
@ -766,6 +792,7 @@ const formData = ref({}); // 存储修改过的数据
const dialogImgList = ref(false); //
const amplifyurl = ref(''); //
const amplifysrcList = ref([]); //
const Processingresults = ref(false); //
// ref
//
@ -812,33 +839,20 @@ const FangAddList = ref([
//
const responsible = ref([
{
value: '1',
value: 1,
label: '工厂',
},
{
value: '2',
value: 2,
label: '外包搬运',
},
{
value: '3',
value: 3,
label: '物流',
},
]);
const DeliveryDriver = ref([
{
value: '0',
label: '兰溪',
},
{
value: '1',
label: '李华',
},
{
value: '2',
label: '唐飞',
},
]);
//
const DeliveryDriver = ref([]);
//
const fileList = ref([]);
//
@ -853,7 +867,33 @@ function updateDictionary(targetArray, dictionaryType) {
});
});
}
//
function DeliveryTrainnumber() {
if (!Indexform.value.trainNumber && !Indexform.value.deliveryTime) {
Indexform.value.deliveryTime = null;
Indexform.value.deliveryDriver = '';
DeliveryDriver.value = [];
}
if (!Indexform.value.trainNumber && !Indexform.value.deliveryTime) {
return;
}
let data = {
trainNumber: Indexform.value.trainNumber,
taskTime: Indexform.value.deliveryTime,
};
data.current = 1; //
data.size = 200; //
$_shippingInformation(data).then(res => {
console.log(res, '查询返回值');
DeliveryDriver.value = res.data.data.records; //
//
if (res.data.data.records.length == 1 && groundlineType.value != 3) {
Indexform.value.deliveryTime = res.data.data.records[0].taskTime; //
Indexform.value.deliveryDriver = res.data.data.records[0].id; //
// Indexform.value.trainNumber = res.data.data.records[0].trainNumber; //
}
});
}
// TOKEN
const headers = computed(() => {
return { 'Blade-Auth': 'Bearer ' + getToken() };
@ -923,7 +963,10 @@ const onLoad = () => {
Appealeditor.value = $route.query.Appealeditor; //
console.log(Appealeditor.value, '申诉编辑状态');
}
//
if ($route.query.Processingresults) {
Processingresults.value = true;
}
console.log(RouterState.value, '路由状态');
getDictionaryBiz('result_handling').then(res => {
console.log(res, '发现环节');
@ -945,6 +988,11 @@ const onLoad = () => {
handle(); //
$_getInfo({ id: $route.query.id }).then(res => {
if(res.data.data.discoveryNode=='1'){
groundlineType.value = '1'
}else{
groundlineType.value = 'null'
}
oldData.value = JSON.parse(JSON.stringify(res.data.data));
console.log(oldData.value, '旧数据');
console.log(res, '回显返回值参数');
@ -978,6 +1026,11 @@ const onLoad = () => {
unPackageInfo.value = JSON.parse(JSON.stringify(PackageInfo.value)); //
console.log(unPackageInfo.value, '包件信息');
let factorydata = res.data.data.personResponsibleVOS.find(item => item.typesOf);
// if (factorydata.typesOf) {
// groundlineType.value = true; //
// }
FangAddList.value = res.data.data.personResponsibleVOS.map(res => {
ResponsiblepartyData.value.push(res);
@ -1042,6 +1095,7 @@ const onLoad = () => {
text: item.compensationMethodName,
compensationTime: item.compensationTime,
paymentUnit: item.paymentUnit, //
id:item.id, //id
};
}
);
@ -1139,6 +1193,31 @@ const onLoad = () => {
});
};
onLoad(); //
//
const Statistics = () => {
//
if (identifying.value == 1) {
Indexform.value.number = 0;
PackageInfo.value.map(res => {
if (res.packageCode) {
Indexform.value.number++;
}
});
} else {
//
Indexform.value.number = 0;
PackageInfo.value.map(res => {
console.log(res);
if (res.waybillNumber) {
Indexform.value.number++;
}
});
}
};
//
const abnormalChange = val => {
console.log(val, '异常事件类型');
@ -1215,7 +1294,7 @@ const AddPackage = () => {
packageCode: '',
orderCode: '',
waybillNumber: '',
state: 1,
state: 0,
brandName: '',
});
};
@ -1263,21 +1342,25 @@ const TopChange = val => {
};
const changeProcessingResults = val => {
//
console.log(val,'当前点击的参数');
console.log(ProcessingList.value,'当前的列表');
//
console.log(val[val.length-1]);
ProcessingList.value = ProcessingList.value.filter(item => val.includes(item.state - 1));
//
val.forEach(num => {
let newItem = {
console.log(val,'当前状态');
console.log(num,'当前参数');
newItem = {
input: 0,
min: 0,
max: 9999999999999,
state: num + 1,
state: num,
payment: '',
text: '',
compensationTime: '',
paymentUnit: '',
};
// numnewItemname
switch (num) {
case '1':
@ -1309,8 +1392,8 @@ const changeProcessingResults = val => {
if (!ProcessingList.value.some(item => item.state === newItem.state)) {
ProcessingList.value.push(newItem);
console.log(`添加:${newItem.name}`);
}
});
}
};
//
@ -1354,6 +1437,10 @@ const PaymentConfirmation = val => {
//
const AddCompensation = () => {
if (!Processingresults.value) {
//
return;
}
console.log('添加赔款方');
let som = 1;
CompensationParty.value.forEach(item => {
@ -1365,6 +1452,10 @@ const AddCompensation = () => {
};
//
const AddPayee = () => {
if (!Processingresults.value) {
//
return;
}
let som = 1;
CompensationParty.value.forEach(item => {
if (item.state == 1) {
@ -1398,6 +1489,10 @@ const amountMoney = () => {
};
//
const payremove = (state, val, data) => {
if (!Processingresults.value) {
//
return;
}
console.log(state, '当前移除按钮的状态');
// const completionRecipientEntityListData=ref([]);//
// const completionRecordEntitiesData=ref([]);//
@ -1776,6 +1871,77 @@ const ConfirmForm = () => {
//
const Arbitrationcompleted = () => {
if (Processingresults.value) {
//
//
let data = {
id: $route.query.id,
// workOrderId: $route.query.id, //ID
resultDescription:Indexform.value.resultDescription,//
aftersalesProcessingResultsDTO: {
resultDescription:Indexform.value.resultDescription,//
id:$route.query.subId,
},
};
data.aftersalesProcessingResultsDTO['processingMoneyEntityList'] = ProcessingList.value
.map(item => {
console.log(item);
let match = ProcessingResults.value.find(element => element.dictValue == item.name);
if (match) {
let paymentMethodMatch = Paymentmethod.value.find(
paymentMethod => paymentMethod.dictKey == item.payment
);
return {
resultType: match.dictKey, //key
money: item.input, //
typesOf: 1, //
compensationMethod: paymentMethodMatch ? paymentMethodMatch.dictKey : '',
compensationMethodName: paymentMethodMatch ? paymentMethodMatch.dictValue : '',
resultName: item.name, //
paymentUnit: item.paymentUnit, //
id:item.id, //id
compensationTime:item.compensationTime,//
};
} else {
return null;
}
})
.filter(item => item !== null);
//
let sum = 0; //
for (let i = 0; i < ProcessingList.value.length; i++) {
sum = computeNumber(sum, '+', ProcessingList.value[i].input).result;
}
data.aftersalesProcessingResultsDTO.money = sum; //
data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
.map(item => item.name)
.join(','); //
data.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value
.map(item => item.text)
.join(',');
console.log(data, '编辑后的数据');
$_addProcessingResults(data).then(res=>{
console.log(res, '理赔编辑成功返回值');
ElMessage({
message: res.data.msg,
type: 'success',
});
if (res.data.code == 200) {
$router.push({
path: '/aftersales/aftersalesWorkOrder',
});
AddressClosed('/aftersales/aftersalesWorkOrdermodify'); //
}
}) .catch(error => {
ElMessage({
message: res.data.msg,
type: 'success',
});
});
return;
}
//
if (Appealeditor.value == 'appeal') {
// ,
let data = {
@ -1822,9 +1988,8 @@ const Arbitrationcompleted = () => {
};
});
console.log(data, '处理好的值');
editloading.value=true,//
$_updateCompletionEnd(data)
.then(res => {
editloading.value = true; //
$_updateCompletionEnd(data).then(res => {
console.log(res, '完结编辑');
if (res.data.code == 200) {
ElMessage({
@ -1832,14 +1997,15 @@ const Arbitrationcompleted = () => {
type: 'success',
});
$store.commit('DEL_TAG_CURRENT'); //
$router.push({//
$router.push({
//
path: '/aftersales/aftersalesWorkOrder',
});
editloading.value=false;//
editloading.value = false; //
}
})
.catch(res => {
editloading.value=false;//
editloading.value = false; //
});
return;
//
@ -1851,7 +2017,7 @@ const Arbitrationcompleted = () => {
completionRecordEntities: [], //
reasonArbitration: Indexform.value.arbitrate, //
aftersalesProcessingResultsDTO: {
workOrderId: '', //ID
workOrderId: $route.query.id, //ID
},
assignList: [],
};
@ -1866,7 +2032,6 @@ const Arbitrationcompleted = () => {
money: Number(item.num), //
reasonArbitration: item.reason, //
workOrderId: $route.query.id, //
//warehouseId: $route.query.warehouseId == '/' ? '' : $route.query.warehouseId, // ID
warehouseId: item.warehouseId, //ID
personResponsibleList: item.personResponsibleList, //
};
@ -1911,6 +2076,7 @@ const Arbitrationcompleted = () => {
compensationMethodName: paymentMethodMatch ? paymentMethodMatch.dictValue : '',
resultName: item.name, //
paymentUnit: item.paymentUnit, //
id:item.id,//id
};
} else {
return null;
@ -1933,7 +2099,7 @@ const Arbitrationcompleted = () => {
});
if (res.data.code == 200) {
$router.push('/aftersales/aftersalesWorkOrder'); //
AddressClosed('/aftersales/aftersalesWorkOrdermodify');
AddressClosed('/aftersales/aftersalesWorkOrdermodify');///
}
});
};
@ -2024,6 +2190,9 @@ const moneyBtnB = () => {
};
//
const ChangePackageInfo = (val, index) => {
if(!val){
return
}
PackageInfo.value[index].orderCode = ''; //
PackageInfo.value[index].waybillNumber = ''; //
PackageInfo.value[index].orderId = ''; //

80
src/views/basicdata/driverArtery/basicdataDriverArtery.vue

@ -30,11 +30,32 @@
@click="handleDelete"
>
</el-button>
<el-button type="danger" icon="el-icon-delete" plain @click="handleImport"
>
</el-button>
<!-- v-if="permission.basicMaterial_delete"-->
<el-button type="warning" plain icon="el-icon-download" @click="handleExport">
</el-button>
<!-- <el-button type="warning"-->
<!-- plain-->
<!-- icon="el-icon-download"-->
<!-- @click="handleExport"> -->
<!-- </el-button>-->
<el-dialog title="物料导入" append-to-body v-model="excelBox" width="555px">
<avue-form :option="excelOption" v-model="excelForm" :upload-after="uploadAfter">
<template #excelTemplate>
<el-button type="primary" @click="handleTemplate">
点击下载<i class="el-icon-download el-icon--right"></i>
</el-button>
</template>
</avue-form>
</el-dialog>
</template>
</avue-crud>
</basic-container>
@ -64,6 +85,33 @@ import { getDetail as getDetailDelineNode } from '@/api/basic/basicDelineNode';
export default {
data() {
return {
excelBox:false,
excelForm: {},
excelOption: {
submitBtn: false,
emptyBtn: false,
column: [
{
label: '文件上传',
prop: 'excelFile',
type: 'upload',
drag: true,
loadText: '文件上传,请稍等',
span: 24,
propsHttp: {
res: 'data',
},
tip: '请上传 .xls,.xlsx 标准格式文件',
action: '/api/logpm-basicdata/driverArtery/mport-stockArticle',
},
{
label: '模板下载',
prop: 'excelTemplate',
formslot: true,
span: 24,
},
],
},
form: {},
query: {},
search: {},
@ -640,6 +688,16 @@ export default {
},
},
methods: {
//
handleImport() {
this.excelBox = true;
},
uploadAfter(res, done, loading, column) {
window.console.log(column);
this.excelBox = false;
this.refreshChange();
done();
},
rowSave(row, done, loading) {
console.log(row, 'row信息');
if (Array.isArray(row.bindVehicles)) {
@ -732,16 +790,11 @@ export default {
});
},
handleExport() {
let downloadUrl = `/blade-basicdataDriverArtery/basicdataDriverArtery/export-basicdataDriverArtery?${
let downloadUrl = `/api/logpm-b1asicdata/driverArtery/export-basicdataDriverArteryMb?${
this.website.tokenHeader
}=${getToken()}`;
const { name, phone, type, jobType } = this.query;
let values = {
name_like: name,
phone_like: phone,
type_equal: type,
jobType_equal: jobType,
};
const {} = this.query;
let values = {};
this.$confirm('是否导出数据?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
@ -749,10 +802,19 @@ export default {
}).then(() => {
NProgress.start();
exportBlob(downloadUrl, values).then(res => {
downloadXls(res.data, `司机信息${dateNow()}.xlsx`);
downloadXls(res.data, `司机信息${dateNow()}.xlsx`);
NProgress.done();
});
});
},
//
handleTemplate() {
console.log('下载模板!!!');
exportBlob(
`/api/logpm/basicdata/driverArtery/export-basicdataDriverArteryMb?${this.website.tokenHeader}=${getToken()}`
).then(res => {
downloadXls(res.data, '物料数据模板.xlsx');
});
},
beforeOpen(done, type) {
if (['edit', 'view'].includes(type)) {

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

@ -120,7 +120,7 @@
@click="handleEdits(slotProps.scope, '1')"
v-if="
permission.distrilbutionBillLadingList_edit &&
Number(slotProps.scope.row.conditions) < 20
Number(slotProps.scope.row.conditions) < 30
"
>编辑提货信息</el-text
>

Loading…
Cancel
Save