1.0.55 添加客户付款账户信息维护、我方公司付款账户维护
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,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…
Reference in New Issue