feat(wms): 添加供应商信息管理功能

- 新增供应商信息管理页面,包括供应商列表、搜索、新增、修改、删除等功能
- 添加供应商信息相关的数据结构和接口定义
- 实现供应商信息的查询、新增、修改和删除接口
- 优化供应商信息的展示和操作流程
master
zangch@mesnac.com 4 months ago
parent ab14e83595
commit e29b368c5c

@ -0,0 +1,341 @@
export interface BaseSupplierInfoVO {
/**
*
*/
supplierId: string | number;
/**
*
*/
tenantId: string | number;
/**
*
*/
supplierCode: string;
/**
*
*/
supplierName: string;
/**
*
*/
supplierShortName: string;
/**
*
*/
contactPerson: string;
/**
*
*/
contactPhone: string;
/**
*
*/
contactEmail: string;
/**
*
*/
contactAddress: string;
/**
*
*/
businessLicenseNo: string;
/**
* JSON
*/
qualificationFiles: string;
/**
*
*/
qualificationExpireDate: string;
/**
*
*/
bankAccountName: string;
/**
*
*/
bankName: string;
/**
*
*/
bankAccountNo: string;
/**
* 1 0
*/
cooperationStatus: string;
/**
* 1 0 2
*/
auditStatus: string;
/**
*
*/
auditRemark: string;
/**
* erp
*/
erpId: string | number;
/**
* 1 0
*/
supplierStatus: string;
/**
*
*/
auditDate: string;
/**
* erp
*/
erpModifyDate: string;
/**
*
*/
remark: string;
/**
*
*/
createDept: number;
/**
*
*/
createBy: number;
/**
*
*/
createTime: string;
/**
*
*/
updateBy: number;
/**
*
*/
updateTime: string;
}
export interface BaseSupplierInfoForm extends BaseEntity {
/**
*
*/
supplierId?: string | number;
/**
*
*/
supplierCode?: string;
/**
*
*/
supplierName?: string;
/**
*
*/
supplierShortName?: string;
/**
*
*/
contactPerson?: string;
/**
*
*/
contactPhone?: string;
/**
*
*/
contactEmail?: string;
/**
*
*/
contactAddress?: string;
/**
*
*/
businessLicenseNo?: string;
/**
* JSON
*/
qualificationFiles?: string;
/**
*
*/
qualificationExpireDate?: string;
/**
*
*/
bankAccountName?: string;
/**
*
*/
bankName?: string;
/**
*
*/
bankAccountNo?: string;
/**
* 1 0
*/
cooperationStatus?: string;
/**
* 1 0 2
*/
auditStatus?: string;
/**
*
*/
auditRemark?: string;
/**
* erp
*/
erpId?: string | number;
/**
* 1 0
*/
supplierStatus?: string;
/**
*
*/
auditDate?: string;
/**
* erp
*/
erpModifyDate?: string;
/**
*
*/
remark?: string;
}
export interface BaseSupplierInfoQuery extends PageQuery {
/**
*
*/
supplierId?: string | number;
/**
*
*/
supplierCode?: string;
/**
*
*/
supplierName?: string;
/**
*
*/
supplierShortName?: string;
/**
*
*/
contactPerson?: string;
/**
*
*/
contactPhone?: string;
/**
*
*/
contactEmail?: string;
/**
*
*/
businessLicenseNo?: string;
/**
* 1 0
*/
cooperationStatus?: string;
/**
* 1 0 2
*/
auditStatus?: string;
/**
* erp
*/
erpId?: string | number;
/**
* 1 0
*/
supplierStatus?: string;
/**
*
*/
auditDate?: string;
/**
*
*/
qualificationExpireDate?: string;
/**
* erp
*/
erpModifyDate?: string;
/**
*
*/
params?: any;
}

@ -0,0 +1,494 @@
<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">
<el-form-item label="供应商编码" prop="supplierCode">
<el-input v-model="queryParams.supplierCode" placeholder="请输入供应商编码" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="供应商名称" prop="supplierName">
<el-input v-model="queryParams.supplierName" placeholder="请输入供应商名称" clearable @keyup.enter="handleQuery" />
</el-form-item>
<!-- <el-form-item label="联系人" prop="contactPerson">-->
<!-- <el-input v-model="queryParams.contactPerson" placeholder="请输入联系人" clearable @keyup.enter="handleQuery" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="激活状态" prop="supplierStatus">-->
<!-- <el-select v-model="queryParams.supplierStatus" placeholder="请选择激活状态" clearable >-->
<!-- <el-option v-for="dict in active_flag" :key="dict.value" :label="dict.label" :value="dict.value"/>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item label="合作状态" prop="cooperationStatus">
<el-select v-model="queryParams.cooperationStatus" placeholder="请选择合作状态" clearable >
<el-option v-for="dict in cooperation_status" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
</el-form-item>
<!-- <el-form-item label="审核状态" prop="auditStatus">-->
<!-- <el-select v-model="queryParams.auditStatus" placeholder="请选择审核状态" clearable >-->
<!-- <el-option v-for="dict in audit_status" :key="dict.value" :label="dict.label" :value="dict.value"/>-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<!-- <el-form-item label="资质到期日期" style="width: 308px">-->
<!-- <el-date-picker-->
<!-- v-model="dateRangeQualificationExpireDate"-->
<!-- value-format="YYYY-MM-DD HH:mm:ss"-->
<!-- type="daterange"-->
<!-- range-separator="-"-->
<!-- start-placeholder="开始日期"-->
<!-- end-placeholder="结束日期"-->
<!-- :default-time="[new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 1, 1, 23, 59, 59)]"-->
<!-- />-->
<!-- </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="['mes:baseSupplierInfo:add']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()" v-hasPermi="['mes:baseSupplierInfo:edit']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['mes:baseSupplierInfo:remove']"></el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['mes:baseSupplierInfo: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" :data="baseSupplierInfoList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="供应商编码" align="center" prop="supplierCode" v-if="columns[0].visible"/>
<el-table-column label="供应商名称" align="center" prop="supplierName" v-if="columns[1].visible"/>
<el-table-column label="供应商简称" align="center" prop="supplierShortName" v-if="columns[2].visible"/>
<el-table-column label="联系人" align="center" prop="contactPerson" v-if="columns[3].visible"/>
<el-table-column label="联系电话" align="center" prop="contactPhone" v-if="columns[4].visible"/>
<el-table-column label="联系邮箱" align="center" prop="contactEmail" v-if="columns[5].visible"/>
<el-table-column label="营业执照编号" align="center" prop="businessLicenseNo" v-if="columns[6].visible"/>
<el-table-column label="激活状态" align="center" prop="supplierStatus" v-if="columns[7].visible">
<template #default="scope">
<dict-tag :options="active_flag" :value="scope.row.supplierStatus"/>
</template>
</el-table-column>
<el-table-column label="合作状态" align="center" prop="cooperationStatus" v-if="columns[8].visible">
<template #default="scope">
<dict-tag :options="cooperation_status" :value="scope.row.cooperationStatus"/>
</template>
</el-table-column>
<!-- <el-table-column label="审核状态" align="center" prop="auditStatus" v-if="columns[9].visible">-->
<!-- <template #default="scope">-->
<!-- <dict-tag :options="audit_status" :value="scope.row.auditStatus"/>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="资质到期日期" align="center" prop="qualificationExpireDate" width="120" v-if="columns[9].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.qualificationExpireDate, '{y}-{m}-{d}') }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="审核日期" align="center" prop="auditDate" width="120" v-if="columns[11].visible">-->
<!-- <template #default="scope">-->
<!-- <span>{{ parseTime(scope.row.auditDate, '{y}-{m}-{d}') }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="备注" align="center" prop="remark" v-if="columns[10].visible"/>
<!-- <el-table-column label="创建部门" align="center" prop="createDept" v-if="columns[9].visible"/>
<el-table-column label="创建人" align="center" prop="createBy" v-if="columns[10].visible"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="180" v-if="columns[11].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>
<el-table-column label="更新人" align="center" prop="updateBy" v-if="columns[12].visible"/>
<el-table-column label="更新时间" align="center" prop="updateTime" width="180" v-if="columns[13].visible">
<template #default="scope">
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
</template>
</el-table-column>-->
<el-table-column label="操作" align="center" 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="['mes:baseSupplierInfo:edit']"></el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['mes:baseSupplierInfo: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="800px" append-to-body>
<el-form ref="baseSupplierInfoFormRef" :model="form" :rules="rules" label-width="120px">
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="供应商编码" prop="supplierCode">
<el-input v-model="form.supplierCode" placeholder="请输入供应商编码" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="供应商名称" prop="supplierName">
<el-input v-model="form.supplierName" placeholder="请输入供应商名称" />
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="供应商简称" prop="supplierShortName">
<el-input v-model="form.supplierShortName" placeholder="请输入供应商简称" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="联系人" prop="contactPerson">
<el-input v-model="form.contactPerson" placeholder="请输入联系人" />
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="联系电话" prop="contactPhone">
<el-input v-model="form.contactPhone" placeholder="请输入联系电话" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="联系邮箱" prop="contactEmail">
<el-input v-model="form.contactEmail" placeholder="请输入联系邮箱" />
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="24">
<el-form-item label="联系地址" prop="contactAddress">
<el-input v-model="form.contactAddress" placeholder="请输入联系地址" />
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="营业执照编号" prop="businessLicenseNo">
<el-input v-model="form.businessLicenseNo" placeholder="请输入营业执照编号" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="资质到期日期" prop="qualificationExpireDate">
<el-date-picker clearable
v-model="form.qualificationExpireDate"
type="date"
value-format="YYYY-MM-DD"
placeholder="请选择资质到期日期">
</el-date-picker>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="银行账户名" prop="bankAccountName">
<el-input v-model="form.bankAccountName" placeholder="请输入银行账户名" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="开户行" prop="bankName">
<el-input v-model="form.bankName" placeholder="请输入开户行" />
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="银行账号" prop="bankAccountNo">
<el-input v-model="form.bankAccountNo" placeholder="请输入银行账号" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="激活状态" prop="supplierStatus">
<el-radio-group v-model="form.supplierStatus">
<el-radio
v-for="dict in active_flag"
:key="dict.value"
:value="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="12">
<el-form-item label="合作状态" prop="cooperationStatus">
<el-radio-group v-model="form.cooperationStatus">
<el-radio
v-for="dict in cooperation_status"
:key="dict.value"
:value="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
<!-- <el-col :span="12">-->
<!-- <el-form-item label="审核状态" prop="auditStatus">-->
<!-- <el-radio-group v-model="form.auditStatus">-->
<!-- <el-radio-->
<!-- v-for="dict in audit_status"-->
<!-- :key="dict.value"-->
<!-- :value="dict.value"-->
<!-- >{{dict.label}}</el-radio>-->
<!-- </el-radio-group>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
<!-- <el-row :gutter="20">-->
<!-- <el-col :span="12">-->
<!-- <el-form-item label="审核日期" prop="auditDate">-->
<!-- <el-date-picker clearable-->
<!-- v-model="form.auditDate"-->
<!-- type="date"-->
<!-- value-format="YYYY-MM-DD"-->
<!-- placeholder="请选择审核日期">-->
<!-- </el-date-picker>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :span="12">-->
<!-- <el-form-item label="审核备注" prop="auditRemark">-->
<!-- <el-input v-model="form.auditRemark" placeholder="请输入审核备注" />-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-row :gutter="20">
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入备注" />
</el-form-item>
</el-col>
</el-row>
</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="BaseSupplierInfo" lang="ts">
import { listBaseSupplierInfo, getBaseSupplierInfo, delBaseSupplierInfo, addBaseSupplierInfo, updateBaseSupplierInfo } from '@/api/wms/baseSupplierInfo';
import { BaseSupplierInfoVO, BaseSupplierInfoQuery, BaseSupplierInfoForm } from '@/api/wms/baseSupplierInfo/types';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
const { active_flag, cooperation_status, audit_status } = toRefs<any>(proxy?.useDict('active_flag', 'cooperation_status', 'audit_status'));
const baseSupplierInfoList = ref<BaseSupplierInfoVO[]>([]);
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 dateRangeAuditDate = ref<[DateModelType, DateModelType]>(['', '']);
const dateRangeQualificationExpireDate = ref<[DateModelType, DateModelType]>(['', '']);
const queryFormRef = ref<ElFormInstance>();
const baseSupplierInfoFormRef = ref<ElFormInstance>();
const dialog = reactive<DialogOption>({
visible: false,
title: ''
});
//
const columns = ref<FieldOption[]>([
{ key: 0, label: `供应商编码`, visible: true },
{ key: 1, label: `供应商名称`, visible: true },
{ key: 2, label: `供应商简称`, visible: false },
{ key: 3, label: `联系人`, visible: true },
{ key: 4, label: `联系电话`, visible: true },
{ key: 5, label: `联系邮箱`, visible: false },
{ key: 6, label: `营业执照编号`, visible: false },
{ key: 7, label: `激活状态`, visible: true },
{ key: 8, label: `合作状态`, visible: true },
// { key: 9, label: ``, visible: true },
{ key: 9, label: `资质到期日期`, visible: false },
// { key: 11, label: ``, visible: false },
{ key: 10, label: `备注`, visible: true },
]);
const initFormData: BaseSupplierInfoForm = {
supplierId: undefined,
supplierCode: undefined,
supplierName: undefined,
supplierShortName: undefined,
contactPerson: undefined,
contactPhone: undefined,
contactEmail: undefined,
contactAddress: undefined,
businessLicenseNo: undefined,
qualificationFiles: undefined,
qualificationExpireDate: undefined,
bankAccountName: undefined,
bankName: undefined,
bankAccountNo: undefined,
cooperationStatus: undefined,
auditStatus: undefined,
auditRemark: undefined,
erpId: undefined,
supplierStatus: undefined,
auditDate: undefined,
erpModifyDate: undefined,
remark: undefined,
}
const data = reactive<PageData<BaseSupplierInfoForm, BaseSupplierInfoQuery>>({
form: {...initFormData},
queryParams: {
pageNum: 1,
pageSize: 10,
supplierId: undefined,
supplierCode: undefined,
supplierName: undefined,
supplierShortName: undefined,
contactPerson: undefined,
contactPhone: undefined,
contactEmail: undefined,
businessLicenseNo: undefined,
cooperationStatus: undefined,
auditStatus: undefined,
erpId: undefined,
supplierStatus: undefined,
params: {
auditDate: undefined,
qualificationExpireDate: undefined,
}
},
rules: {
supplierCode: [
{ required: true, message: "供应商编号不能为空", trigger: "blur" }
],
supplierName: [
{ required: true, message: "供应商名称不能为空", trigger: "blur" }
],
// contactEmail: [
// { type: 'email', message: '', trigger: ['blur', 'change'] }
// ],
// contactPhone: [
// { pattern: /^1[3|4|5|6|7|8|9][0-9]\d{8}$/, message: '', trigger: 'blur' }
// ]
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询供应商信息列表 */
const getList = async () => {
loading.value = true;
queryParams.value.params = {};
proxy?.addDateRange(queryParams.value, dateRangeAuditDate.value, 'AuditDate');
proxy?.addDateRange(queryParams.value, dateRangeQualificationExpireDate.value, 'QualificationExpireDate');
const res = await listBaseSupplierInfo(queryParams.value);
baseSupplierInfoList.value = res.rows;
total.value = res.total;
loading.value = false;
}
/** 取消按钮 */
const cancel = () => {
reset();
dialog.visible = false;
}
/** 表单重置 */
const reset = () => {
form.value = {...initFormData};
baseSupplierInfoFormRef.value?.resetFields();
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
const resetQuery = () => {
dateRangeAuditDate.value = ['', ''];
dateRangeQualificationExpireDate.value = ['', ''];
queryFormRef.value?.resetFields();
handleQuery();
}
/** 多选框选中数据 */
const handleSelectionChange = (selection: BaseSupplierInfoVO[]) => {
ids.value = selection.map(item => item.supplierId);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
const handleAdd = () => {
reset();
dialog.visible = true;
dialog.title = "添加供应商信息";
}
/** 修改按钮操作 */
const handleUpdate = async (row?: BaseSupplierInfoVO) => {
reset();
const _supplierId = row?.supplierId || ids.value[0]
const res = await getBaseSupplierInfo(_supplierId);
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = "修改供应商信息";
}
/** 提交按钮 */
const submitForm = () => {
baseSupplierInfoFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
if (form.value.supplierId) {
await updateBaseSupplierInfo(form.value).finally(() => buttonLoading.value = false);
} else {
await addBaseSupplierInfo(form.value).finally(() => buttonLoading.value = false);
}
proxy?.$modal.msgSuccess("操作成功");
dialog.visible = false;
await getList();
}
});
}
/** 删除按钮操作 */
const handleDelete = async (row?: BaseSupplierInfoVO) => {
const _supplierIds = row?.supplierId || ids.value;
await proxy?.$modal.confirm('是否确认删除供应商信息编号为"' + _supplierIds + '"的数据项?').finally(() => loading.value = false);
await delBaseSupplierInfo(_supplierIds);
proxy?.$modal.msgSuccess("删除成功");
await getList();
}
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download('wms/baseSupplierInfo/export', {
...queryParams.value
}, `baseSupplierInfo_${new Date().getTime()}.xlsx`)
}
onMounted(() => {
getList();
});
</script>

@ -503,7 +503,7 @@ import {ElMessage, ElMessageBox} from 'element-plus'
import {getBaseWarehouseList} from "@/api/wms/baseWarehouse";
import {UserVO} from "@/api/system/user/types";
import {listUser} from "@/api/system/user";
import {getBaseSupplierInfoList} from '@/api/mes/baseSupplierInfo'
import {getBaseSupplierInfoList} from '@/api/wms/baseSupplierInfo'
import {
listWmsPurchaseOrderDetail,
getWmsPurchaseOrderDetail,

Loading…
Cancel
Save