1.1.64 分款信息添加未分款的数据修改、删除功能。。

dev
yinq 12 hours ago
parent f994d6856f
commit 919d065708

@ -119,13 +119,28 @@
</template>
</el-table-column>
<el-table-column label="客户经理" align="center" prop="managerNickNames" min-width="120" show-overflow-tooltip />
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width" width="80">
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width" width="120">
<template #default="{ row }">
<el-tooltip
v-if="row.installmentStatus === INSTALLMENT_STATUS_NOT_ALLOCATED"
content="派发客户经理"
placement="top"
>
<template v-if="row.installmentStatus === INSTALLMENT_STATUS_NOT_ALLOCATED">
<el-tooltip content="修改" placement="top">
<el-button
link
type="primary"
icon="Edit"
@click.stop="handleUpdate(row)"
v-hasPermi="['oa/erp:finAccountInstallment:edit']"
/>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button
link
type="danger"
icon="Delete"
@click.stop="handleDelete(row)"
v-hasPermi="['oa/erp:finAccountInstallment:remove']"
/>
</el-tooltip>
<el-tooltip content="派发客户经理" placement="top">
<el-button
link
type="warning"
@ -134,8 +149,9 @@
v-hasPermi="['oa/erp:finAccountInstallment:dispatch']"
/>
</el-tooltip>
</template>
<el-tooltip
v-if="row.installmentStatus !== INSTALLMENT_STATUS_NOT_ALLOCATED"
v-else
content="查看详情"
placement="top"
>
@ -325,9 +341,21 @@
</template>
</el-dialog>
<!-- 新增回款 -->
<el-dialog title="新增回款" v-model="installmentDialog.visible" width="480px" append-to-body>
<el-form ref="installmentFormRef" :model="installmentForm" :rules="installmentRules" label-width="100px">
<!-- 新增/修改回款 -->
<el-dialog
:title="installmentDialog.title"
v-model="installmentDialog.visible"
width="480px"
append-to-body
@closed="resetInstallmentForm"
>
<el-form
:key="installmentFormKey"
ref="installmentFormRef"
:model="installmentForm"
:rules="installmentRules"
label-width="100px"
>
<el-form-item label="客户名称" prop="customerName">
<el-select v-model="installmentForm.customerName" placeholder="请选择客户名称" filterable clearable style="width: 100%">
<el-option
@ -398,6 +426,8 @@
import {
listFinAccountInstallment,
addFinAccountInstallment,
updateFinAccountInstallment,
delFinAccountInstallment,
dispatchFinAccountInstallment
} from '@/api/oa/erp/finAccountInstallment';
import { getErpFinAccountInstallmentDetailList } from '@/api/oa/erp/finAccountInstallmentDetail';
@ -483,15 +513,18 @@ const canDispatchSelection = computed(
() => selectedInstallmentRows.value.length > 0 && selectedInstallmentRows.value.every(isNotAllocated)
);
const installmentDialog = reactive({ visible: false, loading: false });
const installmentDialog = reactive({ visible: false, loading: false, title: '新增回款' });
const installmentFormRef = ref<ElFormInstance>();
const installmentForm = reactive<FinAccountInstallmentForm>({
const installmentFormKey = ref(0);
const getDefaultInstallmentForm = (): FinAccountInstallmentForm => ({
accountInstallmentId: undefined,
customerName: undefined,
paymentAmount: undefined,
paymentDate: undefined,
remark: undefined,
currency: 'CNY'
});
const installmentForm = reactive<FinAccountInstallmentForm>(getDefaultInstallmentForm());
/** 客户下拉(选项值存客户名称) */
const customerInfoList = ref<any[]>([]);
const getCustomerInfoListSelect = async () => {
@ -523,29 +556,87 @@ const handleInstallmentSelectionChange = (rows: FinAccountInstallmentVO[]) => {
selectedInstallmentRows.value = rows;
};
const handleAddInstallment = () => {
installmentForm.customerName = undefined;
installmentForm.paymentAmount = undefined;
installmentForm.paymentDate = undefined;
installmentForm.remark = undefined;
installmentForm.currency = 'CNY';
const resetInstallmentForm = () => {
Object.assign(installmentForm, getDefaultInstallmentForm());
};
const handleAddInstallment = async () => {
resetInstallmentForm();
installmentFormKey.value++;
installmentDialog.title = '新增回款';
installmentDialog.visible = true;
await nextTick();
installmentFormRef.value?.clearValidate();
};
/** 修改未分款回款 */
const handleUpdate = async (row: FinAccountInstallmentVO) => {
if (!isNotAllocated(row)) {
proxy?.$modal.msgWarning('仅未分款状态的回款可修改');
return;
}
resetInstallmentForm();
Object.assign(installmentForm, {
accountInstallmentId: row.accountInstallmentId,
customerName: row.customerName,
paymentAmount: row.paymentAmount,
paymentDate: row.paymentDate,
remark: row.remark,
currency: row.currency || 'CNY'
});
installmentDialog.title = '修改回款';
installmentDialog.visible = true;
await nextTick();
installmentFormRef.value?.clearValidate();
};
const submitInstallmentForm = async () => {
const valid = await installmentFormRef.value?.validate();
if (!valid) return;
installmentDialog.loading = true;
const isEdit = !!installmentForm.accountInstallmentId;
try {
if (isEdit) {
await updateFinAccountInstallment(installmentForm);
proxy?.$modal.msgSuccess('修改成功');
} else {
await addFinAccountInstallment(installmentForm);
proxy?.$modal.msgSuccess('新增成功');
}
installmentDialog.visible = false;
const selectedId = selectedInstallment.value?.accountInstallmentId;
await getList();
if (isEdit && selectedId === installmentForm.accountInstallmentId) {
const updated = finAccountInstallmentList.value.find((item) => item.accountInstallmentId === selectedId);
if (updated) {
selectedInstallment.value = updated;
await getDetailList();
}
}
} finally {
installmentDialog.loading = false;
}
};
/** 删除单条未分款回款 */
const handleDelete = async (row: FinAccountInstallmentVO) => {
if (!isNotAllocated(row)) {
proxy?.$modal.msgWarning('仅未分款状态的回款可删除');
return;
}
await proxy?.$modal.confirm(`是否确认删除回款编号为「${row.installmentCode}」的数据?`);
await delFinAccountInstallment(row.accountInstallmentId);
proxy?.$modal.msgSuccess('删除成功');
if (selectedInstallment.value?.accountInstallmentId === row.accountInstallmentId) {
selectedInstallment.value = null;
finAccountInstallmentDetailList.value = [];
}
selectedInstallmentRows.value = selectedInstallmentRows.value.filter(
(item) => item.accountInstallmentId !== row.accountInstallmentId
);
await getList();
};
/** 打开派发弹窗(批量勾选或操作列单条) */
const openDispatchDialog = async (rows?: FinAccountInstallmentVO[]) => {
const targetRows = rows ?? selectedInstallmentRows.value;

@ -1,357 +0,0 @@
<template>
<div class="p-2">
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
<div v-show="showSearch" class="mb-[10px]">
<el-card shadow="hover">
<el-form ref="queryFormRef" :model="queryParams" :inline="true" label-width='100px'>
<el-form-item label="分款编号" prop="installmentCode">
<el-input v-model="queryParams.installmentCode" placeholder="请输入分款编号" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="客户ID关联crm_customer_info" prop="customerId">
<el-input v-model="queryParams.customerId" placeholder="请输入客户ID关联crm_customer_info" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="客户名称,冗余" prop="customerName">
<el-input v-model="queryParams.customerName" placeholder="请输入客户名称,冗余" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="货币类型(CNY/USD/EUR)默认CNY" prop="currency">
<el-input v-model="queryParams.currency" placeholder="请输入货币类型(CNY/USD/EUR)默认CNY" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="回款金额" prop="paymentAmount">
<el-input v-model="queryParams.paymentAmount" placeholder="请输入回款金额" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="回款日期" prop="paymentDate">
<el-date-picker clearable
v-model="queryParams.paymentDate"
type="date"
value-format="YYYY-MM-DD"
placeholder="请选择回款日期"
/>
</el-form-item>
<el-form-item label="发出人员" prop="dispatchUserId">
<el-input v-model="queryParams.dispatchUserId" placeholder="请输入发出人员" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="发出部门" prop="dispatchDeptId">
<el-input v-model="queryParams.dispatchDeptId" placeholder="请输入发出部门" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="发出日期" prop="dispatchDate">
<el-date-picker clearable
v-model="queryParams.dispatchDate"
type="date"
value-format="YYYY-MM-DD"
placeholder="请选择发出日期"
/>
</el-form-item>
<el-form-item label="客户经理" prop="accountManageId">
<el-input v-model="queryParams.accountManageId" placeholder="请输入客户经理" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery"></el-button>
<el-button icon="Refresh" @click="resetQuery"></el-button>
</el-form-item>
</el-form>
</el-card>
</div>
</transition>
<el-card shadow="never">
<template #header>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['oa/erp:finAccountInstallment:add']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['oa/erp:finAccountInstallment:edit']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['oa/erp:finAccountInstallment:remove']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/erp:finAccountInstallment:export']"></el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>
</el-row>
</template>
<el-table v-loading="loading" border :data="finAccountInstallmentList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="分款ID" align="center" prop="accountInstallmentId" v-if="columns[0].visible"/>
<el-table-column label="分款编号" align="center" prop="installmentCode" v-if="columns[2].visible"/>
<el-table-column label="客户ID关联crm_customer_info" align="center" prop="customerId" v-if="columns[3].visible"/>
<el-table-column label="客户名称,冗余" align="center" prop="customerName" v-if="columns[4].visible"/>
<el-table-column label="货币类型(CNY/USD/EUR)默认CNY" align="center" prop="currency" v-if="columns[5].visible"/>
<el-table-column label="回款金额" align="center" prop="paymentAmount" v-if="columns[6].visible"/>
<el-table-column label="回款日期" align="center" prop="paymentDate" width="180" v-if="columns[7].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.paymentDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" prop="remark" v-if="columns[8].visible"/>
<el-table-column label="发出人员" align="center" prop="dispatchUserId" v-if="columns[9].visible"/>
<el-table-column label="发出部门" align="center" prop="dispatchDeptId" v-if="columns[10].visible"/>
<el-table-column label="发出日期" align="center" prop="dispatchDate" width="180" v-if="columns[11].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.dispatchDate, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="分款状态" align="center" prop="installmentStatus" v-if="columns[12].visible"/>
<el-table-column label="客户经理" align="center" prop="accountManageId" v-if="columns[13].visible"/>
<el-table-column label="操作" align="center" fixed="right" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip content="修改" placement="top">
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['oa/erp:finAccountInstallment:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['oa/erp:finAccountInstallment:remove']"></el-button>
</el-tooltip>
</template>
</el-table-column>
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
</el-card>
<!-- 添加或修改分款信息对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
<el-form ref="finAccountInstallmentFormRef" :model="form" :rules="rules" label-width="120px">
<el-form-item label="分款编号" prop="installmentCode">
<el-input v-model="form.installmentCode" placeholder="请输入分款编号" />
</el-form-item>
<el-form-item label="客户ID关联crm_customer_info" prop="customerId">
<el-input v-model="form.customerId" placeholder="请输入客户ID关联crm_customer_info" />
</el-form-item>
<el-form-item label="客户名称,冗余" prop="customerName">
<el-input v-model="form.customerName" placeholder="请输入客户名称,冗余" />
</el-form-item>
<el-form-item label="货币类型(CNY/USD/EUR)默认CNY" prop="currency">
<el-input v-model="form.currency" placeholder="请输入货币类型(CNY/USD/EUR)默认CNY" />
</el-form-item>
<el-form-item label="回款金额" prop="paymentAmount">
<el-input v-model="form.paymentAmount" placeholder="请输入回款金额" />
</el-form-item>
<el-form-item label="回款日期" prop="paymentDate">
<el-date-picker clearable
v-model="form.paymentDate"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择回款日期">
</el-date-picker>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
<el-form-item label="发出人员" prop="dispatchUserId">
<el-input v-model="form.dispatchUserId" placeholder="请输入发出人员" />
</el-form-item>
<el-form-item label="发出部门" prop="dispatchDeptId">
<el-input v-model="form.dispatchDeptId" placeholder="请输入发出部门" />
</el-form-item>
<el-form-item label="发出日期" prop="dispatchDate">
<el-date-picker clearable
v-model="form.dispatchDate"
type="datetime"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择发出日期">
</el-date-picker>
</el-form-item>
<el-form-item label="客户经理" prop="accountManageId">
<el-input v-model="form.accountManageId" placeholder="请输入客户经理" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup name="FinAccountInstallment" lang="ts">
import { listFinAccountInstallment, getFinAccountInstallment, delFinAccountInstallment, addFinAccountInstallment, updateFinAccountInstallment } from '@/api/oa/erp/finAccountInstallment';
import { FinAccountInstallmentVO, FinAccountInstallmentQuery, FinAccountInstallmentForm } from '@/api/oa/erp/finAccountInstallment/types';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const finAccountInstallmentList = ref<FinAccountInstallmentVO[]>([]);
const buttonLoading = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref<Array<string | number>>([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const queryFormRef = ref<ElFormInstance>();
const finAccountInstallmentFormRef = ref<ElFormInstance>();
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
//
const columns = ref<FieldOption[]>([
{ key: 0, label: `分款ID`, visible: true },
{ key: 1, label: `租户编号`, visible: true },
{ key: 2, label: `分款编号`, visible: true },
{ key: 3, label: `客户ID关联crm_customer_info`, visible: true },
{ key: 4, label: `客户名称,冗余`, visible: true },
{ key: 5, label: `货币类型(CNY/USD/EUR)默认CNY`, visible: true },
{ key: 6, label: `回款金额`, visible: true },
{ key: 7, label: `回款日期`, visible: true },
{ key: 8, label: `备注`, visible: true },
{ key: 9, label: `发出人员`, visible: true },
{ key: 10, label: `发出部门`, visible: true },
{ key: 11, label: `发出日期`, visible: true },
{ key: 12, label: `分款状态`, visible: true },
{ key: 13, label: `客户经理`, visible: true },
{ key: 14, label: `创建部门`, visible: true },
{ key: 15, label: `创建人`, visible: true },
{ key: 16, label: `创建时间`, visible: true },
{ key: 17, label: `更新人`, visible: true },
{ key: 18, label: `更新时间`, visible: true },
]);
const initFormData: FinAccountInstallmentForm = {
accountInstallmentId: undefined,
installmentCode: undefined,
customerId: undefined,
customerName: undefined,
currency: undefined,
paymentAmount: undefined,
paymentDate: undefined,
remark: undefined,
dispatchUserId: undefined,
dispatchDeptId: undefined,
dispatchDate: undefined,
installmentStatus: undefined,
accountManageId: undefined,
}
const data = reactive<PageData<FinAccountInstallmentForm, FinAccountInstallmentQuery>>({
form: {...initFormData},
queryParams: {
pageNum: 1,
pageSize: 10,
installmentCode: undefined,
customerId: undefined,
customerName: undefined,
currency: undefined,
paymentAmount: undefined,
paymentDate: undefined,
dispatchUserId: undefined,
dispatchDeptId: undefined,
dispatchDate: undefined,
installmentStatus: undefined,
accountManageId: undefined,
params: {
}
},
rules: {
accountInstallmentId: [
{ required: true, message: "分款ID不能为空", trigger: "blur" }
],
currency: [
{ required: true, message: "货币类型(CNY/USD/EUR)默认CNY不能为空", trigger: "blur" }
],
installmentStatus: [
{ required: true, message: "分款状态不能为空", trigger: "change" }
],
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询分款信息列表 */
const getList = async () => {
loading.value = true;
const res = await listFinAccountInstallment(queryParams.value);
finAccountInstallmentList.value = res.rows;
total.value = res.total;
loading.value = false;
}
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
}
/** 表单重置 */
const reset = () => {
form.value = {...initFormData};
finAccountInstallmentFormRef.value?.resetFields();
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
handleQuery();
}
/** 多选框选中数据 */
const handleSelectionChange = (selection: FinAccountInstallmentVO[]) => {
ids.value = selection.map(item => item.accountInstallmentId);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = "添加分款信息";
}
/** 修改按钮操作 */
const handleUpdate = async (row?: FinAccountInstallmentVO) => {
reset();
const _accountInstallmentId = row?.accountInstallmentId || ids.value[0]
const res = await getFinAccountInstallment(_accountInstallmentId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = "修改分款信息";
}
/** 提交按钮 */
const submitForm = () => {
finAccountInstallmentFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.accountInstallmentId) {
await updateFinAccountInstallment(form.value).finally(() => buttonLoading.value = false);
} else {
await addFinAccountInstallment(form.value).finally(() => buttonLoading.value = false);
}
proxy?.$modal.msgSuccess("操作成功");
dialog.visible = false;
await getList();
}
});
}
/** 删除按钮操作 */
const handleDelete = async (row?: FinAccountInstallmentVO) => {
const _accountInstallmentIds = row?.accountInstallmentId || ids.value;
await proxy?.$modal.confirm('是否确认删除分款信息编号为"' + _accountInstallmentIds + '"的数据项?').finally(() => loading.value = false);
await delFinAccountInstallment(_accountInstallmentIds);
proxy?.$modal.msgSuccess("删除成功");
await getList();
}
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download('oa/erp/finAccountInstallment/export', {
...queryParams.value
}, `finAccountInstallment_${new Date().getTime()}.xlsx`)
}
onMounted(() => {
getList();
});
</script>
Loading…
Cancel
Save