1.0.55 添加客户付款账户信息维护、我方公司付款账户维护

dev
yinq 1 week ago
parent ea069db412
commit 3a7c351a97

@ -0,0 +1,76 @@
import request from '@/utils/request';
import { AxiosPromise } from 'axios';
import { PaymentAccountVO, PaymentAccountForm, PaymentAccountQuery } from '@/api/oa/crm/paymentAccount/types';
/**
*
* @param query
* @returns {*}
*/
export const listPaymentAccount = (query?: PaymentAccountQuery): AxiosPromise<PaymentAccountVO[]> => {
return request({
url: '/oa/crm/paymentAccount/list',
method: 'get',
params: query
});
};
/**
*
* @param paymentAccountId
*/
export const getPaymentAccount = (paymentAccountId: string | number): AxiosPromise<PaymentAccountVO> => {
return request({
url: '/oa/crm/paymentAccount/' + paymentAccountId,
method: 'get'
});
};
/**
*
* @param data
*/
export const addPaymentAccount = (data: PaymentAccountForm) => {
return request({
url: '/oa/crm/paymentAccount',
method: 'post',
data: data
});
};
/**
*
* @param data
*/
export const updatePaymentAccount = (data: PaymentAccountForm) => {
return request({
url: '/oa/crm/paymentAccount',
method: 'put',
data: data
});
};
/**
*
* @param paymentAccountId
*/
export const delPaymentAccount = (paymentAccountId: string | number | Array<string | number>) => {
return request({
url: '/oa/crm/paymentAccount/' + paymentAccountId,
method: 'delete'
});
};
/**
*
* @param query
* @returns {*}
*/
export function getCrmPaymentAccountList (query) {
return request({
url: '/oa/crm/paymentAccount/getCrmPaymentAccountList',
method: 'get',
params: query
});
};

@ -0,0 +1,186 @@
export interface PaymentAccountVO {
/**
* ID
*/
paymentAccountId: string | number;
/**
* ID
*/
customerId: string | number;
/**
* (////)
*/
accountType: string;
/**
*
*/
accountName: string;
/**
*
*/
accountNumber: string;
/**
*
*/
bankName: string;
/**
*
*/
bankCode: string;
/**
* SWIFT
*/
swiftCode: string;
/**
* (CNY/USD/EUR)
*/
currency: string;
/**
*
*/
sortOrder: number;
/**
*
*/
remark: string;
/**
* 1 0
*/
activeFlag: string;
}
export interface PaymentAccountForm extends BaseEntity {
/**
* ID
*/
paymentAccountId?: string | number;
/**
* ID
*/
customerId?: string | number;
/**
* (////)
*/
accountType?: string;
/**
*
*/
accountName?: string;
/**
*
*/
accountNumber?: string;
/**
*
*/
bankName?: string;
/**
*
*/
bankCode?: string;
/**
* SWIFT
*/
swiftCode?: string;
/**
* (CNY/USD/EUR)
*/
currency?: string;
/**
*
*/
sortOrder?: number;
/**
*
*/
remark?: string;
/**
* 1 0
*/
activeFlag?: string;
}
export interface PaymentAccountQuery extends PageQuery {
/**
* ID
*/
customerId?: string | number;
/**
* (////)
*/
accountType?: string;
/**
*
*/
accountName?: string;
/**
*
*/
accountNumber?: string;
/**
*
*/
bankName?: string;
/**
*
*/
bankCode?: string;
/**
* SWIFT
*/
swiftCode?: string;
/**
* (CNY/USD/EUR)
*/
currency?: string;
/**
*
*/
sortOrder?: number;
/**
* 1 0
*/
activeFlag?: string;
/**
*
*/
params?: any;
}

@ -50,23 +50,9 @@
</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/crm:customerInfo:add']"></el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['oa/crm:customerInfo:edit']"></el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['oa/crm:customerInfo:remove']"></el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/crm:customerInfo:export']"></el-button>-->
<!-- </el-col>-->
<!-- <right-toolbar v-model:showSearch="showSearch" :columns="columns" :search="true" @queryTable="getList"></right-toolbar>-->
<!-- </el-row>-->
<!-- </template>-->
<template #header>
<div style="font-size: 16px; font-weight: bold; color: #303133">公司信息</div>
</template>
<el-table v-loading="loading" border :data="customerInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
@ -143,6 +129,60 @@
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
</el-card>
<!-- 付款账户表格 -->
<el-card shadow="never" style="margin-top: 20px">
<template #header>
<div style="display: flex; align-items: center; justify-content: space-between">
<div style="font-size: 16px; font-weight: bold; color: #303133">付款账户</div>
<!-- <el-row :gutter="10" class="mb8">-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="primary" plain icon="Plus" @click="handleAddPaymentAccount" v-hasPermi="['oa/crm:paymentAccount:add']"></el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="success" plain icon="Edit" :disabled="paymentAccountSingle" @click="handleUpdatePaymentAccount()" v-hasPermi="['oa/crm:paymentAccount:edit']"></el-button>-->
<!-- </el-col>-->
<!-- <el-col :span="1.5">-->
<!-- <el-button type="danger" plain icon="Delete" :disabled="paymentAccountMultiple" @click="handleDeletePaymentAccount()" v-hasPermi="['oa/crm:paymentAccount:remove']"></el-button>-->
<!-- </el-col>-->
<!-- </el-row>-->
</div>
</template>
<el-table v-loading="paymentAccountLoading" border :data="paymentAccountList" @selection-change="handlePaymentAccountSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="账户类型" align="center" prop="accountType" width="150">
<template #default="scope">
<dict-tag :options="account_type" :value="scope.row.accountType" />
</template>
</el-table-column>
<el-table-column label="账户名称" align="center" prop="accountName" width="200" show-overflow-tooltip />
<el-table-column label="账户号码" align="center" prop="accountNumber" width="200" show-overflow-tooltip />
<el-table-column label="开户行名称" align="center" prop="bankName" width="200" show-overflow-tooltip />
<el-table-column label="开户银行代码" align="center" prop="bankCode" width="150" show-overflow-tooltip />
<el-table-column label="SWIFT代码" align="center" prop="swiftCode" width="150" show-overflow-tooltip />
<el-table-column label="货币类型" align="center" prop="currency" width="120">
<template #default="scope">
<dict-tag :options="currency_type" :value="scope.row.currency" />
</template>
</el-table-column>
<el-table-column label="排序顺序" align="center" prop="sortOrder" width="100" />
<el-table-column label="备注" align="center" prop="remark" width="200" show-overflow-tooltip />
<el-table-column label="操作" align="center" fixed="right" width="150" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip content="修改" placement="top">
<el-button link type="primary" icon="Edit" @click="handleUpdatePaymentAccount(scope.row)" v-hasPermi="['oa/crm:paymentAccount:edit']"></el-button>
</el-tooltip>
<!-- <el-tooltip content="删除" placement="top">-->
<!-- <el-button link type="primary" icon="Delete" @click="handleDeletePaymentAccount(scope.row)" v-hasPermi="['oa/crm:paymentAccount:remove']"></el-button>-->
<!-- </el-tooltip>-->
</template>
</el-table-column>
</el-table>
<pagination v-show="paymentAccountTotal > 0" :total="paymentAccountTotal" v-model:page="paymentAccountQueryParams.pageNum" v-model:limit="paymentAccountQueryParams.pageSize" @pagination="getPaymentAccountList" />
</el-card>
<!-- 添加或修改公司信息对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="900px" append-to-body>
<el-form ref="customerInfoFormRef" :model="form" :rules="rules" label-width="120px">
@ -453,6 +493,49 @@
</div>
</template>
</el-dialog>
<!-- 添加或修改付款账户信息对话框 -->
<el-dialog :title="paymentAccountDialog.title" v-model="paymentAccountDialog.visible" width="500px" append-to-body>
<el-form ref="paymentAccountFormRef" :model="paymentAccountForm" :rules="paymentAccountRules" label-width="120px">
<el-form-item label="账户类型" prop="accountType">
<el-select v-model="paymentAccountForm.accountType" placeholder="请选择账户类型" style="width: 100%">
<el-option v-for="dict in account_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="账户名称" prop="accountName">
<el-input v-model="paymentAccountForm.accountName" placeholder="请输入账户名称" />
</el-form-item>
<el-form-item label="账户号码" prop="accountNumber">
<el-input v-model="paymentAccountForm.accountNumber" placeholder="请输入账户号码" />
</el-form-item>
<el-form-item label="开户行名称" prop="bankName">
<el-input v-model="paymentAccountForm.bankName" placeholder="请输入开户行名称" />
</el-form-item>
<el-form-item label="开户银行代码" prop="bankCode">
<el-input v-model="paymentAccountForm.bankCode" placeholder="请输入开户银行代码" />
</el-form-item>
<el-form-item label="SWIFT代码" prop="swiftCode">
<el-input v-model="paymentAccountForm.swiftCode" placeholder="请输入SWIFT代码" />
</el-form-item>
<el-form-item label="货币类型" prop="currency">
<el-select v-model="paymentAccountForm.currency" placeholder="请选择货币类型" style="width: 100%">
<el-option v-for="dict in currency_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="排序顺序" prop="sortOrder">
<el-input-number v-model="paymentAccountForm.sortOrder" placeholder="请输入排序顺序" :min="0" style="width: 100%" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="paymentAccountForm.remark" type="textarea" :rows="3" placeholder="请输入备注" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button :loading="paymentAccountButtonLoading" type="primary" @click="submitPaymentAccountForm"> </el-button>
<el-button @click="cancelPaymentAccount"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
@ -469,10 +552,12 @@ import { CustomerInfoVO, CustomerInfoQuery, CustomerInfoForm } from '@/api/oa/cr
import { listUser, optionSelect } from '@/api/system/user';
import { UserVO } from '@/api/system/user/types';
import FileUpload from '@/components/FileUpload/index.vue';
import { listPaymentAccount, getPaymentAccount, delPaymentAccount, addPaymentAccount, updatePaymentAccount } from '@/api/oa/crm/paymentAccount';
import { PaymentAccountVO, PaymentAccountQuery, PaymentAccountForm } from '@/api/oa/crm/paymentAccount/types';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { customer_type, active_flag, industry_id, customer_source, customer_scale, customer_status, customer_level } = toRefs<any>(
proxy?.useDict('customer_type', 'active_flag', 'industry_id', 'customer_source', 'customer_scale', 'customer_status', 'customer_level')
const { customer_type, active_flag, industry_id, customer_source, customer_scale, customer_status, customer_level, currency_type, account_type } = toRefs<any>(
proxy?.useDict('customer_type', 'active_flag', 'industry_id', 'customer_source', 'customer_scale', 'customer_status', 'customer_level', 'currency_type', 'account_type')
);
const customerInfoList = ref<CustomerInfoVO[]>([]);
@ -494,6 +579,55 @@ const currentCustomer = ref<CustomerInfoVO>({} as CustomerInfoVO);
const queryFormRef = ref<ElFormInstance>();
const customerInfoFormRef = ref<ElFormInstance>();
const paymentAccountFormRef = ref<ElFormInstance>();
//
const paymentAccountList = ref<PaymentAccountVO[]>([]);
const paymentAccountLoading = ref(false);
const paymentAccountButtonLoading = ref(false);
const paymentAccountIds = ref<Array<string | number>>([]);
const paymentAccountSingle = ref(true);
const paymentAccountMultiple = ref(true);
const paymentAccountTotal = ref(0);
const paymentAccountDialog = reactive<DialogOption>({
visible: false,
title: ''
});
const initPaymentAccountFormData: PaymentAccountForm = {
paymentAccountId: undefined,
customerId: 1, // customer_id 1
accountType: undefined,
accountName: undefined,
accountNumber: undefined,
bankName: undefined,
bankCode: undefined,
swiftCode: undefined,
currency: undefined,
sortOrder: undefined,
remark: undefined,
activeFlag: undefined
};
const paymentAccountData = reactive<PageData<PaymentAccountForm, PaymentAccountQuery>>({
form: { ...initPaymentAccountFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
customerId: 1, // customer_id 1
accountType: undefined,
currency: undefined,
params: {}
},
rules: {
accountType: [{ required: true, message: '账户类型不能为空', trigger: 'change' }],
accountName: [{ required: true, message: '账户名称不能为空', trigger: 'blur' }],
accountNumber: [{ required: true, message: '账户号码不能为空', trigger: 'blur' }]
}
});
const { queryParams: paymentAccountQueryParams, form: paymentAccountForm, rules: paymentAccountRules } = toRefs(paymentAccountData);
// IDFileUpload
const ossIdString = computed({
@ -818,7 +952,93 @@ const handleViewRelation = async (row: CustomerInfoVO) => {
}
};
/** 查询付款账户信息列表 */
const getPaymentAccountList = async () => {
paymentAccountLoading.value = true;
try {
const res = await listPaymentAccount(paymentAccountQueryParams.value);
paymentAccountList.value = res.rows;
paymentAccountTotal.value = res.total;
} catch (error) {
console.error('查询付款账户列表失败:', error);
} finally {
paymentAccountLoading.value = false;
}
};
/** 付款账户多选框选中数据 */
const handlePaymentAccountSelectionChange = (selection: PaymentAccountVO[]) => {
paymentAccountIds.value = selection.map((item) => item.paymentAccountId);
paymentAccountSingle.value = selection.length != 1;
paymentAccountMultiple.value = !selection.length;
};
/** 新增付款账户按钮操作 */
const handleAddPaymentAccount = () => {
resetPaymentAccount();
paymentAccountForm.value.customerId = 1; // customer_id 1
paymentAccountDialog.visible = true;
paymentAccountDialog.title = '添加付款账户信息';
};
/** 修改付款账户按钮操作 */
const handleUpdatePaymentAccount = async (row?: PaymentAccountVO) => {
resetPaymentAccount();
const _paymentAccountId = row?.paymentAccountId || paymentAccountIds.value[0];
const res = await getPaymentAccount(_paymentAccountId);
Object.assign(paymentAccountForm.value, res.data);
paymentAccountDialog.visible = true;
paymentAccountDialog.title = '修改付款账户信息';
};
/** 付款账户表单重置 */
const resetPaymentAccount = () => {
paymentAccountForm.value = { ...initPaymentAccountFormData };
paymentAccountFormRef.value?.resetFields();
};
/** 取消付款账户按钮 */
const cancelPaymentAccount = () => {
resetPaymentAccount();
paymentAccountDialog.visible = false;
};
/** 提交付款账户表单 */
const submitPaymentAccountForm = () => {
paymentAccountFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
paymentAccountButtonLoading.value = true;
try {
// customer_id 1
paymentAccountForm.value.customerId = 1;
if (paymentAccountForm.value.paymentAccountId) {
await updatePaymentAccount(paymentAccountForm.value);
} else {
await addPaymentAccount(paymentAccountForm.value);
}
proxy?.$modal.msgSuccess('操作成功');
paymentAccountDialog.visible = false;
await getPaymentAccountList();
} catch (error) {
console.error('提交付款账户失败:', error);
} finally {
paymentAccountButtonLoading.value = false;
}
}
});
};
/** 删除付款账户按钮操作 */
const handleDeletePaymentAccount = async (row?: PaymentAccountVO) => {
const _paymentAccountIds = row?.paymentAccountId || paymentAccountIds.value;
await proxy?.$modal.confirm('是否确认删除付款账户信息编号为"' + _paymentAccountIds + '"的数据项?').finally(() => (paymentAccountLoading.value = false));
await delPaymentAccount(_paymentAccountIds);
proxy?.$modal.msgSuccess('删除成功');
await getPaymentAccountList();
};
onMounted(() => {
getList();
getPaymentAccountList();
});
</script>

@ -0,0 +1,322 @@
<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="accountType">
<el-select v-model="queryParams.accountType" placeholder="请选择账户类型" clearable>
<el-option v-for="dict in account_type" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>
<el-form-item label="货币类型" prop="currency">
<el-select v-model="queryParams.currency" placeholder="请选择货币类型" clearable>
<el-option v-for="dict in currency_type" :key="dict.value" :label="dict.label" :value="dict.value" />
</el-select>
</el-form-item>
<!-- <el-form-item label="激活标识" prop="activeFlag">-->
<!-- <el-input v-model="queryParams.activeFlag" 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/crm:paymentAccount:add']"> </el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['oa/crm:paymentAccount:edit']"
>修改
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['oa/crm:paymentAccount:remove']"
>删除
</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/crm:paymentAccount: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="paymentAccountList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="付款账户ID" align="center" prop="paymentAccountId" v-if="columns[0].visible" />
<el-table-column label="客户ID" align="center" prop="customerId" v-if="columns[1].visible" />
<el-table-column label="账户类型" align="center" prop="accountType" v-if="columns[2].visible">
<template #default="scope">
<dict-tag :options="account_type" :value="scope.row.accountType" />
</template>
</el-table-column>
<el-table-column label="账户名称" align="center" prop="accountName" v-if="columns[3].visible" />
<el-table-column label="账户号码" align="center" prop="accountNumber" v-if="columns[4].visible" />
<el-table-column label="开户行名称" align="center" prop="bankName" v-if="columns[5].visible" />
<el-table-column label="开户银行代码" align="center" prop="bankCode" v-if="columns[6].visible" />
<el-table-column label="SWIFT代码" align="center" prop="swiftCode" v-if="columns[7].visible" />
<el-table-column label="货币类型" align="center" prop="currency" v-if="columns[8].visible">
<template #default="scope">
<dict-tag :options="currency_type" :value="scope.row.currency" />
</template>
</el-table-column>
<el-table-column label="排序顺序" align="center" prop="sortOrder" v-if="columns[9].visible" />
<el-table-column label="备注" align="center" prop="remark" v-if="columns[10].visible" />
<el-table-column label="激活标识" align="center" prop="activeFlag" v-if="columns[11].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/crm:paymentAccount:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['oa/crm:paymentAccount: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="paymentAccountFormRef" :model="form" :rules="rules" label-width="120px">
<el-form-item label="客户ID" prop="customerId">
<el-input v-model="form.customerId" placeholder="请输入客户ID" />
</el-form-item>
<el-form-item label="账户类型" prop="accountType">
<el-select v-model="form.accountType" placeholder="请选择账户类型">
<el-option v-for="dict in account_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="账户名称" prop="accountName">
<el-input v-model="form.accountName" placeholder="请输入账户名称" />
</el-form-item>
<el-form-item label="账户号码" prop="accountNumber">
<el-input v-model="form.accountNumber" placeholder="请输入账户号码" />
</el-form-item>
<el-form-item label="开户行名称" prop="bankName">
<el-input v-model="form.bankName" placeholder="请输入开户行名称" />
</el-form-item>
<el-form-item label="开户银行代码" prop="bankCode">
<el-input v-model="form.bankCode" placeholder="请输入开户银行代码" />
</el-form-item>
<el-form-item label="SWIFT代码" prop="swiftCode">
<el-input v-model="form.swiftCode" placeholder="请输入SWIFT代码" />
</el-form-item>
<el-form-item label="货币类型" prop="currency">
<el-select v-model="form.currency" placeholder="请选择货币类型">
<el-option v-for="dict in currency_type" :key="dict.value" :label="dict.label" :value="dict.value"></el-option>
</el-select>
</el-form-item>
<el-form-item label="排序顺序" prop="sortOrder">
<el-input v-model="form.sortOrder" placeholder="请输入排序顺序" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
<el-form-item label="激活标识" prop="activeFlag">
<el-input v-model="form.activeFlag" 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="PaymentAccount" lang="ts">
import { listPaymentAccount, getPaymentAccount, delPaymentAccount, addPaymentAccount, updatePaymentAccount } from '@/api/oa/crm/paymentAccount';
import { PaymentAccountVO, PaymentAccountQuery, PaymentAccountForm } from '@/api/oa/crm/paymentAccount/types';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { currency_type, account_type } = toRefs<any>(proxy?.useDict('currency_type', 'account_type'));
const paymentAccountList = ref<PaymentAccountVO[]>([]);
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 paymentAccountFormRef = ref<ElFormInstance>();
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
//
const columns = ref<FieldOption[]>([
{ key: 0, label: `付款账户ID`, visible: true },
{ key: 1, label: `客户ID`, visible: true },
{ key: 2, label: `账户类型`, visible: true },
{ key: 3, label: `账户名称`, visible: true },
{ key: 4, label: `账户号码`, visible: true },
{ key: 5, label: `开户行名称`, visible: true },
{ key: 6, label: `开户银行代码`, visible: true },
{ key: 7, label: `SWIFT代码`, 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 }
]);
const initFormData: PaymentAccountForm = {
paymentAccountId: undefined,
customerId: undefined,
accountType: undefined,
accountName: undefined,
accountNumber: undefined,
bankName: undefined,
bankCode: undefined,
swiftCode: undefined,
currency: undefined,
sortOrder: undefined,
remark: undefined,
activeFlag: undefined
};
const data = reactive<PageData<PaymentAccountForm, PaymentAccountQuery>>({
form: { ...initFormData },
queryParams: {
pageNum: 1,
pageSize: 10,
customerId: undefined,
accountType: undefined,
accountName: undefined,
accountNumber: undefined,
bankName: undefined,
bankCode: undefined,
swiftCode: undefined,
currency: undefined,
sortOrder: undefined,
activeFlag: undefined,
params: {}
},
rules: {
accountType: [{ required: true, message: '账户类型不能为空', trigger: 'change' }],
accountName: [{ required: true, message: '账户名称不能为空', trigger: 'blur' }],
accountNumber: [{ required: true, message: '账户号码不能为空', trigger: 'blur' }]
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询付款账户信息列表 */
const getList = async () => {
loading.value = true;
const res = await listPaymentAccount(queryParams.value);
paymentAccountList.value = res.rows;
total.value = res.total;
loading.value = false;
};
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
};
/** 表单重置 */
const reset = () => {
form.value = { ...initFormData };
paymentAccountFormRef.value?.resetFields();
};
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
};
/** 重置按钮操作 */
const resetQuery = () => {
queryFormRef.value?.resetFields();
handleQuery();
};
/** 多选框选中数据 */
const handleSelectionChange = (selection: PaymentAccountVO[]) => {
ids.value = selection.map((item) => item.paymentAccountId);
single.value = selection.length != 1;
multiple.value = !selection.length;
};
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = '添加付款账户信息';
};
/** 修改按钮操作 */
const handleUpdate = async (row?: PaymentAccountVO) => {
reset();
const _paymentAccountId = row?.paymentAccountId || ids.value[0];
const res = await getPaymentAccount(_paymentAccountId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = '修改付款账户信息';
};
/** 提交按钮 */
const submitForm = () => {
paymentAccountFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.paymentAccountId) {
await updatePaymentAccount(form.value).finally(() => (buttonLoading.value = false));
} else {
await addPaymentAccount(form.value).finally(() => (buttonLoading.value = false));
}
proxy?.$modal.msgSuccess('操作成功');
dialog.visible = false;
await getList();
}
});
};
/** 删除按钮操作 */
const handleDelete = async (row?: PaymentAccountVO) => {
const _paymentAccountIds = row?.paymentAccountId || ids.value;
await proxy?.$modal.confirm('是否确认删除付款账户信息编号为"' + _paymentAccountIds + '"的数据项?').finally(() => (loading.value = false));
await delPaymentAccount(_paymentAccountIds);
proxy?.$modal.msgSuccess('删除成功');
await getList();
};
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download(
'oa/crm/paymentAccount/export',
{
...queryParams.value
},
`paymentAccount_${new Date().getTime()}.xlsx`
);
};
onMounted(() => {
getList();
});
</script>
Loading…
Cancel
Save