|
|
|
@ -152,7 +152,7 @@ import dayjs from 'dayjs';
|
|
|
|
|
import { mapGetters } from 'vuex'; |
|
|
|
|
/** 获取字典 */ |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { postPageList, postCheckBalance, postReal,postOrderInfoListExport } from '@/api/finance/ReconciliationDepositSlip'; |
|
|
|
|
import { postPageList, postCheckBalance, postReal,postOrderInfoListExport, postCreateReconciliationOrder } from '@/api/finance/ReconciliationDepositSlip'; |
|
|
|
|
import { |
|
|
|
|
downloadXls, |
|
|
|
|
setNodeHeight, |
|
|
|
@ -163,7 +163,7 @@ import {
|
|
|
|
|
handleTranslationDataSeclect, |
|
|
|
|
getObjType |
|
|
|
|
} from '@/utils/util'; |
|
|
|
|
import { columnListByToB, columnListByToC,confirmColumnList } from '@/option/finance/ReconciliationDepositSlip'; |
|
|
|
|
import { columnList, confirmColumnList } from '@/option/finance/ReconciliationDepositSlip'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import { deepClone } from '@/utils/util'; |
|
|
|
|
import { ElMessage, ElMessageBox } from 'element-plus'; |
|
|
|
@ -176,19 +176,21 @@ const details = reactive<any>({
|
|
|
|
|
search: true, |
|
|
|
|
pageInfo: [ |
|
|
|
|
{ |
|
|
|
|
title: 'toB', |
|
|
|
|
columnList: deepClone(columnListByToB), |
|
|
|
|
// 标题 |
|
|
|
|
title: 'toB订单对账', |
|
|
|
|
// 表头 |
|
|
|
|
columnList: deepClone(columnList), |
|
|
|
|
// 查询对象 |
|
|
|
|
query: {}, |
|
|
|
|
name: 1 |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: 'toC', |
|
|
|
|
columnList: deepClone(columnListByToC), |
|
|
|
|
title: 'toC订单对账', |
|
|
|
|
columnList: deepClone(columnList), |
|
|
|
|
query: {}, |
|
|
|
|
name: 2 |
|
|
|
|
} |
|
|
|
|
], |
|
|
|
|
/** 表格搜索条件 */ |
|
|
|
|
/** 时间快捷选择设置 */ |
|
|
|
|
shortcuts: [ |
|
|
|
|
{ |
|
|
|
@ -287,6 +289,7 @@ const onLoad = async () => {
|
|
|
|
|
if (code !== 200) return; |
|
|
|
|
details.data = data.records; |
|
|
|
|
details.page.total = data.total; |
|
|
|
|
console.log('columnList :>> ', columnList); |
|
|
|
|
handleTranslationDataSeclect( |
|
|
|
|
details.data, |
|
|
|
|
columnList |
|
|
|
@ -300,13 +303,65 @@ const onLoad = async () => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const handleData = (key, res) => { |
|
|
|
|
const { code, data } = res.data; |
|
|
|
|
if (code !== 200) return; |
|
|
|
|
for (let i = 0; i < details.pageInfo[0].columnList.length; i++) { |
|
|
|
|
const value = details.pageInfo[0].columnList[i]; |
|
|
|
|
|
|
|
|
|
if (value.label === key) |
|
|
|
|
return (value.checkarr = |
|
|
|
|
getObjType(data) === 'array' |
|
|
|
|
? data.map(val => { |
|
|
|
|
val.label = val.dictValue; |
|
|
|
|
val.value = val.dictKey; |
|
|
|
|
return val; |
|
|
|
|
}) |
|
|
|
|
: []); |
|
|
|
|
} |
|
|
|
|
for (let i = 0; i < details.pageInfo[1].columnList.length; i++) { |
|
|
|
|
const value = details.pageInfo[1].columnList[i]; |
|
|
|
|
|
|
|
|
|
if (value.label === key) |
|
|
|
|
return (value.checkarr = |
|
|
|
|
getObjType(data) === 'array' |
|
|
|
|
? data.map(val => { |
|
|
|
|
val.label = val.dictValue; |
|
|
|
|
val.value = val.dictKey; |
|
|
|
|
return val; |
|
|
|
|
}) |
|
|
|
|
: []); |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const initData = async ()=>{ |
|
|
|
|
await Promise.all([ |
|
|
|
|
// 服务类型 |
|
|
|
|
getDictionaryBiz('distribution_type').then(res => handleData('订单类型', res)), |
|
|
|
|
// 支付方式 |
|
|
|
|
getDictionaryBiz('open_order_pay_type').then(res => handleData('支付方式', res)), |
|
|
|
|
// 付款方式 |
|
|
|
|
getDictionaryBiz('open_order_pay_way').then(res => handleData('付款方式', res)), |
|
|
|
|
initOnLoad() |
|
|
|
|
]) |
|
|
|
|
|
|
|
|
|
await nextTick(); |
|
|
|
|
const {columnList} = ( details.pageStatus === 1 ?details.pageInfo[0]: details.pageInfo[1]) |
|
|
|
|
|
|
|
|
|
handleTranslationDataSeclect( |
|
|
|
|
details.data, |
|
|
|
|
columnList |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** 初始化请求 */ |
|
|
|
|
const initOnLoad = () => { |
|
|
|
|
details.page.pageNum = 1; |
|
|
|
|
details.page.total = 0; |
|
|
|
|
onLoad(); |
|
|
|
|
return onLoad() |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
initOnLoad(); |
|
|
|
|
initData(); |
|
|
|
|
|
|
|
|
|
/** 搜索 */ |
|
|
|
|
const searchChange = () => { |
|
|
|
@ -421,18 +476,24 @@ const handleConfirm = async () => {
|
|
|
|
|
if (details.selectionList.length === 0) return ElMessage.warning('请选择需要确认的数据'); |
|
|
|
|
|
|
|
|
|
const _errorArr = []; |
|
|
|
|
const _arr = []; |
|
|
|
|
|
|
|
|
|
// 目的仓 |
|
|
|
|
let _destinationWarehouseName = '' |
|
|
|
|
// 收货单位 |
|
|
|
|
let _consignee = '' |
|
|
|
|
|
|
|
|
|
for (let index = 0; index < details.selectionList.length; index++) { |
|
|
|
|
const value = details.selectionList[index]; |
|
|
|
|
if (index === 0) { |
|
|
|
|
_destinationWarehouseName = value.destinationWarehouseName |
|
|
|
|
_consignee = value.consignee |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (Number(value.confirmStatisticsOrder) === 1) _errorArr.push(value.orderNo); |
|
|
|
|
_arr.push(value.orderInfoId); |
|
|
|
|
if (value.consignee !== _consignee) return ElMessage.warning(`收货单位不一致,请移除不一致数据`) |
|
|
|
|
if (value.destinationWarehouseName !== _destinationWarehouseName) return ElMessage.warning(`目的仓不一致,请移除不一致数据`) |
|
|
|
|
if (Number(value.signStatus) !== 2) return ElMessage.warning(`存在未签收完成的数据`) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (_errorArr.length > 0) |
|
|
|
|
return ElMessage.warning(`订单【 ${_errorArr.join('、')} 】-- 已确认,请勿重复确认`); |
|
|
|
|
|
|
|
|
|
details.popUpShow.confirmVisited = true |
|
|
|
|
await nextTick() |
|
|
|
|
const _node = document.querySelector(`.confirmVisited .maboxhi`); |
|
|
|
@ -445,6 +506,7 @@ const handleSubmitConfrim= ()=>{
|
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
type: 'warning', |
|
|
|
|
}).then(async () => { |
|
|
|
|
details.popUpShow.confirmVisited = false |
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
@ -452,7 +514,7 @@ const handleSubmitConfrim= ()=>{
|
|
|
|
|
orderInfoIds: details.selectionList.map(val => val.orderInfoId), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const res = await postCheckBalance(submitData); |
|
|
|
|
const res = await postCreateReconciliationOrder(submitData); |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return msg && ElMessage.warning(msg); |
|
|
|
|