|
|
|
@ -472,8 +472,14 @@
|
|
|
|
|
|
|
|
|
|
<div class="dialog-footer"> |
|
|
|
|
<el-button @click="Indexdialog = false">取消</el-button> |
|
|
|
|
<el-button type="primary" @click="ConfirmForm"> 提交 </el-button> |
|
|
|
|
<el-button type="primary" @click="Arbitrationcompleted"> 客服仲裁完结 </el-button> |
|
|
|
|
<el-button type="primary" @click="ConfirmForm" v-if="RouterState == 'Infoedit'"> |
|
|
|
|
提交 |
|
|
|
|
</el-button> |
|
|
|
|
<!--编辑提交--> |
|
|
|
|
<el-button type="primary" @click="Arbitrationcompleted" v-if="RouterState == 'Kfend'"> |
|
|
|
|
提交 |
|
|
|
|
</el-button> |
|
|
|
|
<!--客服仲裁完结 --> |
|
|
|
|
</div> |
|
|
|
|
</el-card> |
|
|
|
|
|
|
|
|
@ -627,7 +633,7 @@ const HistorIndex = ref(0); //历史包件索引
|
|
|
|
|
const ProcessingResults = ref([]); //处理结果列表选项 |
|
|
|
|
const TotalClaimAmount = ref(0); //理赔总金额 |
|
|
|
|
const TransportlossList = ref([]); |
|
|
|
|
const RouterState = ref(null); //编辑信息 |
|
|
|
|
const RouterState = ref(); //编辑信息 |
|
|
|
|
const oldData = ref(); //旧数据 |
|
|
|
|
const unPackageInfo = ref(); //旧包件信息 |
|
|
|
|
const unProcessorEntityList = ref([]); //取消的责任方 |
|
|
|
@ -636,6 +642,7 @@ const unDecreaseImageEntityList = ref([]); //移除的货损图片
|
|
|
|
|
const NewImageAddress = ref([]); //旧的片地址 |
|
|
|
|
const InitialresponsibleParty = ref(); //初始的责任方 |
|
|
|
|
const ProcessingParty = ref(); //拷贝一份处理方 |
|
|
|
|
const CopyingInfo = ref({}); //拷贝的信息 |
|
|
|
|
const CompensationParty = ref([ |
|
|
|
|
{ name: '', state: 0, num: null, reason: '', cld: 1, explains: '' }, //赔款方 |
|
|
|
|
{ name: '', state: 1, num: null, reason: '', cld: 1, explains: '' }, //收款方 |
|
|
|
@ -1336,83 +1343,71 @@ const ConfirmForm = () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// // 完结信息修改 |
|
|
|
|
// console.log(CompensationParty.value); |
|
|
|
|
// // 异常工单完结赔款方 |
|
|
|
|
// DataSubmit['completionRecordEntities'] = CompensationParty.value |
|
|
|
|
// .filter(item => item.state === 0) // 先筛选出状态为 0 的项 |
|
|
|
|
// .map(item => { |
|
|
|
|
// return { |
|
|
|
|
// indemnitor: item.name, // 赔款方 |
|
|
|
|
// reason: item.reason, // 原因 |
|
|
|
|
// money: Number(item.num), // 金额 |
|
|
|
|
// reasonArbitration: item.reason, // 说明 |
|
|
|
|
// workOrderId: $route.query.id, // 异常工单 |
|
|
|
|
// warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
// }; |
|
|
|
|
// }); |
|
|
|
|
// // 异常工单完结收款方 |
|
|
|
|
// DataSubmit['completionRecipientEntities'] = CompensationParty.value |
|
|
|
|
// .filter(item => item.state === 1) // 先筛选出状态为 1 的项 |
|
|
|
|
// .map(item => { |
|
|
|
|
// return { |
|
|
|
|
// recipient: item.name, // 收款方 |
|
|
|
|
// reasonReceivingPayment: item.reason, // 原因 |
|
|
|
|
// money: Number(item.num), // 金额 |
|
|
|
|
// workOrderNumber: $route.query.workOrderNumber, // 工单号 |
|
|
|
|
// responsibleParty: FangAddList.value |
|
|
|
|
// .map(aItem => |
|
|
|
|
// warehouseData.value |
|
|
|
|
// .filter(bItem => bItem.value === aItem.businessName) |
|
|
|
|
// .map(match => match.label) |
|
|
|
|
// .join(',') |
|
|
|
|
// ) |
|
|
|
|
// .join(','), |
|
|
|
|
// warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
// workOrderId: $route.query.id, //异常工单 |
|
|
|
|
// }; |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// // 支付方式 |
|
|
|
|
// DataSubmit.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value |
|
|
|
|
// .map(item => item.text) |
|
|
|
|
// .join(','); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// DataSubmit.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, //处理结果名字 |
|
|
|
|
// }; |
|
|
|
|
// } else { |
|
|
|
|
// return null; |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// .filter(item => item !== null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// // 完结信息修改 |
|
|
|
|
// console.log(CompensationParty.value); |
|
|
|
|
// // 异常工单完结赔款方 |
|
|
|
|
// DataSubmit['completionRecordEntities'] = CompensationParty.value |
|
|
|
|
// .filter(item => item.state === 0) // 先筛选出状态为 0 的项 |
|
|
|
|
// .map(item => { |
|
|
|
|
// return { |
|
|
|
|
// indemnitor: item.name, // 赔款方 |
|
|
|
|
// reason: item.reason, // 原因 |
|
|
|
|
// money: Number(item.num), // 金额 |
|
|
|
|
// reasonArbitration: item.reason, // 说明 |
|
|
|
|
// workOrderId: $route.query.id, // 异常工单 |
|
|
|
|
// warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
// }; |
|
|
|
|
// }); |
|
|
|
|
// // 异常工单完结收款方 |
|
|
|
|
// DataSubmit['completionRecipientEntities'] = CompensationParty.value |
|
|
|
|
// .filter(item => item.state === 1) // 先筛选出状态为 1 的项 |
|
|
|
|
// .map(item => { |
|
|
|
|
// return { |
|
|
|
|
// recipient: item.name, // 收款方 |
|
|
|
|
// reasonReceivingPayment: item.reason, // 原因 |
|
|
|
|
// money: Number(item.num), // 金额 |
|
|
|
|
// workOrderNumber: $route.query.workOrderNumber, // 工单号 |
|
|
|
|
// responsibleParty: FangAddList.value |
|
|
|
|
// .map(aItem => |
|
|
|
|
// warehouseData.value |
|
|
|
|
// .filter(bItem => bItem.value === aItem.businessName) |
|
|
|
|
// .map(match => match.label) |
|
|
|
|
// .join(',') |
|
|
|
|
// ) |
|
|
|
|
// .join(','), |
|
|
|
|
// warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
// workOrderId: $route.query.id, //异常工单 |
|
|
|
|
// }; |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
// // 支付方式 |
|
|
|
|
// DataSubmit.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value |
|
|
|
|
// .map(item => item.text) |
|
|
|
|
// .join(','); |
|
|
|
|
|
|
|
|
|
// DataSubmit.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, //处理结果名字 |
|
|
|
|
// }; |
|
|
|
|
// } else { |
|
|
|
|
// return null; |
|
|
|
|
// } |
|
|
|
|
// }) |
|
|
|
|
// .filter(item => item !== null); |
|
|
|
|
|
|
|
|
|
//移除的货损图片 |
|
|
|
|
console.log(DataSubmit, '处理好的数据'); |
|
|
|
@ -1435,39 +1430,38 @@ const Arbitrationcompleted = () => {
|
|
|
|
|
data.aftersalesProcessingResultsDTO.workOrderId = $route.query.id; //异常工单ID |
|
|
|
|
|
|
|
|
|
DataSubmit['completionRecordEntities'] = CompensationParty.value |
|
|
|
|
.filter(item => item.state === 0) // 先筛选出状态为 0 的项 |
|
|
|
|
.map(item => { |
|
|
|
|
return { |
|
|
|
|
indemnitor: item.name, // 赔款方 |
|
|
|
|
reason: item.reason, // 原因 |
|
|
|
|
money: Number(item.num), // 金额 |
|
|
|
|
reasonArbitration: item.reason, // 说明 |
|
|
|
|
workOrderId: $route.query.id, // 异常工单 |
|
|
|
|
warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
DataSubmit['completionRecipientEntities'] = CompensationParty.value |
|
|
|
|
.filter(item => item.state === 1) // 先筛选出状态为 1 的项 |
|
|
|
|
.map(item => { |
|
|
|
|
return { |
|
|
|
|
recipient: item.name, // 收款方 |
|
|
|
|
reasonReceivingPayment: item.reason, // 原因 |
|
|
|
|
money: Number(item.num), // 金额 |
|
|
|
|
workOrderNumber: $route.query.workOrderNumber, // 工单号 |
|
|
|
|
responsibleParty: FangAddList.value |
|
|
|
|
.map(aItem => |
|
|
|
|
warehouseData.value |
|
|
|
|
.filter(bItem => bItem.value === aItem.businessName) |
|
|
|
|
.map(match => match.label) |
|
|
|
|
.join(',') |
|
|
|
|
) |
|
|
|
|
.join(','), |
|
|
|
|
warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
workOrderId: $route.query.id, //异常工单 |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
.filter(item => item.state === 0) // 先筛选出状态为 0 的项 |
|
|
|
|
.map(item => { |
|
|
|
|
return { |
|
|
|
|
indemnitor: item.name, // 赔款方 |
|
|
|
|
reason: item.reason, // 原因 |
|
|
|
|
money: Number(item.num), // 金额 |
|
|
|
|
reasonArbitration: item.reason, // 说明 |
|
|
|
|
workOrderId: $route.query.id, // 异常工单 |
|
|
|
|
warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
DataSubmit['completionRecipientEntities'] = CompensationParty.value |
|
|
|
|
.filter(item => item.state === 1) // 先筛选出状态为 1 的项 |
|
|
|
|
.map(item => { |
|
|
|
|
return { |
|
|
|
|
recipient: item.name, // 收款方 |
|
|
|
|
reasonReceivingPayment: item.reason, // 原因 |
|
|
|
|
money: Number(item.num), // 金额 |
|
|
|
|
workOrderNumber: $route.query.workOrderNumber, // 工单号 |
|
|
|
|
responsibleParty: FangAddList.value |
|
|
|
|
.map(aItem => |
|
|
|
|
warehouseData.value |
|
|
|
|
.filter(bItem => bItem.value === aItem.businessName) |
|
|
|
|
.map(match => match.label) |
|
|
|
|
.join(',') |
|
|
|
|
) |
|
|
|
|
.join(','), |
|
|
|
|
warehouseId: $route.query.warehouseId, // 仓库ID |
|
|
|
|
workOrderId: $route.query.id, //异常工单 |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
// 处理结果 |
|
|
|
|
|
|
|
|
|