|
|
|
@ -119,7 +119,7 @@
|
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<template v-if="item.name !== 1 && slotProps.scope.column.label === '操作'"> |
|
|
|
|
<el-text @click="() => handleComputedPrice(slotProps.scope)">计算费用</el-text> |
|
|
|
|
</template> |
|
|
|
|
</template> |
|
|
|
@ -224,6 +224,9 @@ import {
|
|
|
|
|
postReal, |
|
|
|
|
postOrderInfoListExport, |
|
|
|
|
postCreateReconciliationOrder, |
|
|
|
|
postCreateFinishWaybillId, |
|
|
|
|
postCreateReconciliationwWaybillId, |
|
|
|
|
postCalculateRealCostByWaybillId |
|
|
|
|
} from '@/api/finance/ReconciliationDepositSlip'; |
|
|
|
|
import { |
|
|
|
|
downloadXls, |
|
|
|
@ -636,7 +639,8 @@ const handleComputedPrice = ({ row }) => {
|
|
|
|
|
try { |
|
|
|
|
details.loadingObj.pageLoading = true; |
|
|
|
|
|
|
|
|
|
const res = await postReal(row.orderInfoId); |
|
|
|
|
// const res = await postReal(row.orderInfoId); |
|
|
|
|
const res = await postCalculateRealCostByWaybillId(row.waybillId); |
|
|
|
|
const { code, msg } = res.data; |
|
|
|
|
|
|
|
|
|
if (code !== 200) return msg && ElMessage.warning(msg); |
|
|
|
|