<script lang="ts" setup>
|
import type { ErpFinancePaymentApi } from '#/api/erp/finance/payment';
|
import type { ErpPurchaseInApi } from '#/api/erp/purchase/in';
|
import type { ErpPurchaseReturnApi } from '#/api/erp/purchase/return';
|
|
import { computed, nextTick, ref, watch } from 'vue';
|
|
import { ErpBizType } from '../../../../../packages/constants/src';
|
import { erpPriceInputFormatter } from '../../../../../packages/utils/src';
|
|
import { Input, InputNumber, message } from 'ant-design-vue';
|
|
import { TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { useFormItemColumns } from '../data';
|
import PurchaseInSelect from './purchase-in-select.vue';
|
import SaleReturnSelect from './sale-return-select.vue';
|
|
interface Props {
|
items?: ErpFinancePaymentApi.FinancePaymentItem[];
|
supplierId?: number;
|
disabled?: boolean;
|
discountPrice?: number;
|
}
|
|
const props = withDefaults(defineProps<Props>(), {
|
items: () => [],
|
supplierId: undefined,
|
disabled: false,
|
discountPrice: 0,
|
});
|
|
const emit = defineEmits([
|
'update:items',
|
'update:totalPrice',
|
'update:paymentPrice',
|
]);
|
|
const tableData = ref<ErpFinancePaymentApi.FinancePaymentItem[]>([]); // 表格数据
|
|
/** 获取表格合计数据 */
|
const summaries = computed(() => {
|
return {
|
totalPrice: tableData.value.reduce(
|
(sum, item) => sum + (item.totalPrice || 0),
|
0,
|
),
|
paidPrice: tableData.value.reduce(
|
(sum, item) => sum + (item.paidPrice || 0),
|
0,
|
),
|
paymentPrice: tableData.value.reduce(
|
(sum, item) => sum + (item.paymentPrice || 0),
|
0,
|
),
|
};
|
});
|
|
/** 表格配置 */
|
const [Grid, gridApi] = useVbenVxeGrid({
|
gridOptions: {
|
columns: useFormItemColumns(props.disabled),
|
data: tableData.value,
|
minHeight: 250,
|
autoResize: true,
|
border: true,
|
rowConfig: {
|
keyField: 'seq',
|
isHover: true,
|
},
|
pagerConfig: {
|
enabled: false,
|
},
|
toolbarConfig: {
|
enabled: false,
|
},
|
},
|
});
|
|
/** 监听外部传入的列数据 */
|
watch(
|
() => props.items,
|
async (items) => {
|
if (!items) {
|
return;
|
}
|
tableData.value = [...items];
|
await nextTick(); // 特殊:保证 gridApi 已经初始化
|
await gridApi.grid.reloadData(tableData.value);
|
},
|
{
|
immediate: true,
|
},
|
);
|
|
/** 计算 totalPrice、paymentPrice 价格 */
|
watch(
|
() => [tableData.value, props.discountPrice],
|
() => {
|
if (!tableData.value || tableData.value.length === 0) {
|
return;
|
}
|
const totalPrice = tableData.value.reduce(
|
(prev, curr) => prev + (curr.totalPrice || 0),
|
0,
|
);
|
const paymentPrice = tableData.value.reduce(
|
(prev, curr) => prev + (curr.paymentPrice || 0),
|
0,
|
);
|
const finalPaymentPrice = paymentPrice - (props.discountPrice || 0);
|
// 通知父组件更新
|
emit('update:totalPrice', totalPrice);
|
emit('update:paymentPrice', finalPaymentPrice);
|
},
|
{ deep: true },
|
);
|
|
/** 添加采购入库单 */
|
const purchaseInSelectRef = ref();
|
const handleOpenPurchaseIn = () => {
|
if (!props.supplierId) {
|
message.error('请选择供应商');
|
return;
|
}
|
purchaseInSelectRef.value?.open(props.supplierId);
|
};
|
|
const handleAddPurchaseIn = (rows: ErpPurchaseInApi.PurchaseIn[]) => {
|
rows.forEach((row) => {
|
const totalPrice = row.totalPrice ?? 0;
|
const paidPrice = row.paymentPrice ?? 0;
|
const newItem: ErpFinancePaymentApi.FinancePaymentItem = {
|
bizId: row.id ?? 0,
|
bizType: ErpBizType.PURCHASE_IN,
|
bizNo: row.no ?? '',
|
totalPrice,
|
paidPrice,
|
paymentPrice: totalPrice - paidPrice,
|
remark: undefined,
|
};
|
tableData.value.push(newItem);
|
});
|
emit('update:items', [...tableData.value]);
|
};
|
|
/** 添加采购退货单 */
|
const saleReturnSelectRef = ref();
|
const handleOpenSaleReturn = () => {
|
if (!props.supplierId) {
|
message.error('请选择供应商');
|
return;
|
}
|
saleReturnSelectRef.value?.open(props.supplierId);
|
};
|
|
const handleAddSaleReturn = (rows: ErpPurchaseReturnApi.PurchaseReturn[]) => {
|
rows.forEach((row) => {
|
const totalPrice = row.totalPrice ?? 0;
|
const refundPrice = row.refundPrice ?? 0;
|
const newItem: ErpFinancePaymentApi.FinancePaymentItem = {
|
bizId: row.id ?? 0,
|
bizType: ErpBizType.PURCHASE_RETURN,
|
bizNo: row.no ?? '',
|
totalPrice: -totalPrice,
|
paidPrice: -refundPrice,
|
paymentPrice: -totalPrice + refundPrice,
|
remark: undefined,
|
};
|
tableData.value.push(newItem);
|
});
|
emit('update:items', [...tableData.value]);
|
};
|
|
/** 删除行 */
|
const handleDelete = async (row: any) => {
|
const index = tableData.value.findIndex(
|
(item) => item.bizId === row.bizId && item.bizType === row.bizType,
|
);
|
if (index !== -1) {
|
tableData.value.splice(index, 1);
|
}
|
// 通知父组件更新
|
emit('update:items', [...tableData.value]);
|
};
|
|
/** 处理行数据变更 */
|
const handleRowChange = (row: any) => {
|
const index = tableData.value.findIndex(
|
(item) => item.bizId === row.bizId && item.bizType === row.bizType,
|
);
|
if (index === -1) {
|
tableData.value.push(row);
|
} else {
|
tableData.value[index] = row;
|
}
|
emit('update:items', [...tableData.value]);
|
};
|
|
/** 表单校验 */
|
const validate = () => {
|
// 检查是否有明细
|
if (tableData.value.length === 0) {
|
throw new Error('请添加付款明细');
|
}
|
// 检查每行的付款金额
|
for (let i = 0; i < tableData.value.length; i++) {
|
const item = tableData.value[i];
|
if (!item?.paymentPrice || item.paymentPrice <= 0) {
|
throw new Error(`第 ${i + 1} 行:本次付款必须大于0`);
|
}
|
}
|
};
|
|
defineExpose({ validate });
|
</script>
|
|
<template>
|
<div>
|
<Grid class="w-full">
|
<template #paymentPrice="{ row }">
|
<InputNumber
|
v-model:value="row.paymentPrice"
|
:precision="2"
|
:disabled="disabled"
|
:formatter="erpPriceInputFormatter"
|
placeholder="请输入本次付款"
|
@change="handleRowChange(row)"
|
/>
|
</template>
|
<template #remark="{ row }">
|
<Input
|
v-model:value="row.remark"
|
:disabled="disabled"
|
placeholder="请输入备注"
|
@change="handleRowChange(row)"
|
/>
|
</template>
|
<template #actions="{ row }">
|
<TableAction
|
:actions="[
|
{
|
label: '删除',
|
type: 'link',
|
danger: true,
|
popConfirm: {
|
title: '确认删除该付款明细吗?',
|
confirm: handleDelete.bind(null, row),
|
},
|
},
|
]"
|
/>
|
</template>
|
|
<template #bottom>
|
<div class="mt-2 rounded border border-border bg-muted p-2">
|
<div class="flex justify-between text-sm text-muted-foreground">
|
<span class="font-medium text-foreground">合计:</span>
|
<div class="flex space-x-4">
|
<span>
|
合计付款:{{ erpPriceInputFormatter(summaries.totalPrice) }}
|
</span>
|
<span>
|
已付金额:{{ erpPriceInputFormatter(summaries.paidPrice) }}
|
</span>
|
<span>
|
本次付款:
|
{{ erpPriceInputFormatter(summaries.paymentPrice) }}
|
</span>
|
</div>
|
</div>
|
</div>
|
<TableAction
|
v-if="!disabled"
|
class="mt-2 flex justify-center"
|
:actions="[
|
{
|
label: '添加采购入库单',
|
type: 'default',
|
onClick: handleOpenPurchaseIn,
|
},
|
{
|
label: '添加采购退货单',
|
type: 'default',
|
onClick: handleOpenSaleReturn,
|
},
|
]"
|
/>
|
</template>
|
</Grid>
|
|
<!-- 采购入库单选择组件 -->
|
<PurchaseInSelect
|
ref="purchaseInSelectRef"
|
@success="handleAddPurchaseIn"
|
/>
|
<!-- 采购退货单选择组件 -->
|
<SaleReturnSelect
|
ref="saleReturnSelectRef"
|
@success="handleAddSaleReturn"
|
/>
|
</div>
|
</template>
|