feat(wms):增加 merchant 模块的迁移
parent
19b5f38e23
commit
4adce844d3
|
|
@ -0,0 +1,73 @@
|
|||
import type { PageParam, PageResult } from '@vben/request';
|
||||
|
||||
import { requestClient } from '#/api/request';
|
||||
|
||||
export namespace WmsMerchantApi {
|
||||
/** WMS 往来企业 */
|
||||
export interface Merchant {
|
||||
id?: number;
|
||||
code?: string;
|
||||
name?: string;
|
||||
type?: number;
|
||||
level?: string;
|
||||
bankName?: string;
|
||||
bankAccount?: string;
|
||||
address?: string;
|
||||
mobile?: string;
|
||||
telephone?: string;
|
||||
contact?: string;
|
||||
email?: string;
|
||||
remark?: string;
|
||||
createTime?: Date;
|
||||
}
|
||||
|
||||
/** WMS 往来企业精简列表请求 */
|
||||
export interface MerchantSimpleListReq {
|
||||
types?: number[];
|
||||
}
|
||||
}
|
||||
|
||||
/** 查询往来企业分页 */
|
||||
export function getMerchantPage(params: PageParam) {
|
||||
return requestClient.get<PageResult<WmsMerchantApi.Merchant>>(
|
||||
'/wms/merchant/page',
|
||||
{ params },
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业精简列表 */
|
||||
export function getMerchantSimpleList(
|
||||
params?: WmsMerchantApi.MerchantSimpleListReq,
|
||||
) {
|
||||
return requestClient.get<WmsMerchantApi.Merchant[]>(
|
||||
'/wms/merchant/simple-list',
|
||||
{ params },
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业详情 */
|
||||
export function getMerchant(id: number) {
|
||||
return requestClient.get<WmsMerchantApi.Merchant>(
|
||||
`/wms/merchant/get?id=${id}`,
|
||||
);
|
||||
}
|
||||
|
||||
/** 新增往来企业 */
|
||||
export function createMerchant(data: WmsMerchantApi.Merchant) {
|
||||
return requestClient.post('/wms/merchant/create', data);
|
||||
}
|
||||
|
||||
/** 修改往来企业 */
|
||||
export function updateMerchant(data: WmsMerchantApi.Merchant) {
|
||||
return requestClient.put('/wms/merchant/update', data);
|
||||
}
|
||||
|
||||
/** 删除往来企业 */
|
||||
export function deleteMerchant(id: number) {
|
||||
return requestClient.delete(`/wms/merchant/delete?id=${id}`);
|
||||
}
|
||||
|
||||
/** 导出往来企业 */
|
||||
export function exportMerchant(params: any) {
|
||||
return requestClient.download('/wms/merchant/export-excel', { params });
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
export { default as WmsMerchantSelect } from './merchant-select.vue';
|
||||
|
|
@ -0,0 +1,108 @@
|
|||
<script lang="ts" setup>
|
||||
import type { SelectValue } from 'ant-design-vue/es/select';
|
||||
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { computed, onMounted, ref, watch } from 'vue';
|
||||
|
||||
import { Select } from 'ant-design-vue';
|
||||
|
||||
import { getMerchantSimpleList } from '#/api/wms/md/merchant';
|
||||
import {
|
||||
CustomerMerchantTypeList,
|
||||
SupplierMerchantTypeList,
|
||||
} from '#/views/wms/utils/constants';
|
||||
|
||||
defineOptions({ name: 'WmsMerchantSelect', inheritAttrs: false });
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
allowClear?: boolean;
|
||||
customer?: boolean;
|
||||
disabled?: boolean;
|
||||
modelValue?: number;
|
||||
placeholder?: string;
|
||||
supplier?: boolean;
|
||||
}>(),
|
||||
{
|
||||
allowClear: true,
|
||||
customer: false,
|
||||
disabled: false,
|
||||
modelValue: undefined,
|
||||
placeholder: '请选择往来企业',
|
||||
supplier: false,
|
||||
},
|
||||
);
|
||||
|
||||
const emit = defineEmits<{
|
||||
change: [merchant: undefined | WmsMerchantApi.Merchant];
|
||||
'update:modelValue': [value: number | undefined];
|
||||
}>();
|
||||
|
||||
const loading = ref(false);
|
||||
const merchantList = ref<WmsMerchantApi.Merchant[]>([]);
|
||||
|
||||
const options = computed(() =>
|
||||
merchantList.value
|
||||
.filter((merchant) => merchant.id !== undefined)
|
||||
.map((merchant) => ({
|
||||
label: merchant.name,
|
||||
value: merchant.id,
|
||||
})),
|
||||
);
|
||||
|
||||
/** 选中变化 */
|
||||
function handleChange(value: SelectValue) {
|
||||
const merchantId = typeof value === 'number' ? value : undefined;
|
||||
emit('update:modelValue', merchantId);
|
||||
emit(
|
||||
'change',
|
||||
merchantList.value.find((merchant) => merchant.id === merchantId),
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业精简列表 */
|
||||
async function getList() {
|
||||
let types: number[] | undefined;
|
||||
if (props.supplier) {
|
||||
types = SupplierMerchantTypeList;
|
||||
} else if (props.customer) {
|
||||
types = CustomerMerchantTypeList;
|
||||
}
|
||||
loading.value = true;
|
||||
try {
|
||||
merchantList.value = await getMerchantSimpleList(
|
||||
types ? { types } : undefined,
|
||||
);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
}
|
||||
|
||||
watch(
|
||||
() => [props.supplier, props.customer],
|
||||
() => {
|
||||
getList();
|
||||
},
|
||||
);
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Select
|
||||
v-bind="$attrs"
|
||||
:allow-clear="allowClear"
|
||||
:disabled="disabled"
|
||||
:loading="loading"
|
||||
:options="options"
|
||||
:placeholder="placeholder"
|
||||
:value="modelValue"
|
||||
class="w-full"
|
||||
option-filter-prop="label"
|
||||
show-search
|
||||
@change="handleChange"
|
||||
/>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,232 @@
|
|||
import type { VbenFormSchema } from '#/adapter/form';
|
||||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||
|
||||
import { h } from 'vue';
|
||||
|
||||
import { DICT_TYPE } from '@vben/constants';
|
||||
import { getDictOptions } from '@vben/hooks';
|
||||
|
||||
import { Button } from 'ant-design-vue';
|
||||
|
||||
import { z } from '#/adapter/form';
|
||||
import { generateWmsCode } from '#/views/wms/utils/constants';
|
||||
|
||||
/** 新增/修改往来企业的表单 */
|
||||
export function useFormSchema(formApi?: any): VbenFormSchema[] {
|
||||
return [
|
||||
{
|
||||
component: 'Input',
|
||||
fieldName: 'id',
|
||||
dependencies: {
|
||||
triggerFields: [''],
|
||||
show: () => false,
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'code',
|
||||
label: '往来企业编号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 20,
|
||||
placeholder: '请输入往来企业编号',
|
||||
},
|
||||
rules: z.string().min(1, '往来企业编号不能为空').max(20),
|
||||
suffix: () => {
|
||||
return h(
|
||||
Button,
|
||||
{
|
||||
type: 'default',
|
||||
onClick: () => {
|
||||
formApi?.setFieldValue('code', generateWmsCode('M'));
|
||||
},
|
||||
},
|
||||
{ default: () => '生成' },
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'name',
|
||||
label: '往来企业名称',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 60,
|
||||
placeholder: '请输入往来企业名称',
|
||||
},
|
||||
rules: z.string().min(1, '往来企业名称不能为空').max(60),
|
||||
},
|
||||
{
|
||||
fieldName: 'type',
|
||||
label: '往来企业类型',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
allowClear: true,
|
||||
options: getDictOptions(DICT_TYPE.WMS_MERCHANT_TYPE, 'number'),
|
||||
placeholder: '请选择往来企业类型',
|
||||
},
|
||||
rules: 'required',
|
||||
},
|
||||
{
|
||||
fieldName: 'level',
|
||||
label: '级别',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 10,
|
||||
placeholder: '请输入级别',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'bankName',
|
||||
label: '开户行',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 255,
|
||||
placeholder: '请输入开户行',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'bankAccount',
|
||||
label: '银行账户',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 40,
|
||||
placeholder: '请输入银行账户',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'address',
|
||||
label: '地址',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 200,
|
||||
placeholder: '请输入地址',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'contact',
|
||||
label: '联系人',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 30,
|
||||
placeholder: '请输入联系人',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'mobile',
|
||||
label: '手机号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 13,
|
||||
placeholder: '请输入手机号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'telephone',
|
||||
label: '座机号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 13,
|
||||
placeholder: '请输入座机号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'email',
|
||||
label: 'Email',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 50,
|
||||
placeholder: '请输入 Email',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'remark',
|
||||
label: '备注',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 255,
|
||||
placeholder: '请输入备注',
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
/** 列表的搜索表单 */
|
||||
export function useGridFormSchema(): VbenFormSchema[] {
|
||||
return [
|
||||
{
|
||||
fieldName: 'code',
|
||||
label: '往来企业编号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
allowClear: true,
|
||||
placeholder: '请输入往来企业编号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'name',
|
||||
label: '往来企业名称',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
allowClear: true,
|
||||
placeholder: '请输入往来企业名称',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'type',
|
||||
label: '往来企业类型',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
allowClear: true,
|
||||
options: getDictOptions(DICT_TYPE.WMS_MERCHANT_TYPE, 'number'),
|
||||
placeholder: '请选择往来企业类型',
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
/** 列表的字段 */
|
||||
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
||||
return [
|
||||
{
|
||||
field: 'code',
|
||||
title: '往来企业编号',
|
||||
width: 160,
|
||||
},
|
||||
{
|
||||
field: 'name',
|
||||
title: '往来企业名称',
|
||||
minWidth: 160,
|
||||
},
|
||||
{
|
||||
field: 'type',
|
||||
title: '往来企业类型',
|
||||
width: 120,
|
||||
align: 'center',
|
||||
cellRender: {
|
||||
name: 'CellDict',
|
||||
props: { type: DICT_TYPE.WMS_MERCHANT_TYPE },
|
||||
},
|
||||
},
|
||||
{
|
||||
field: 'level',
|
||||
title: '级别',
|
||||
width: 100,
|
||||
align: 'center',
|
||||
},
|
||||
{
|
||||
field: 'contact',
|
||||
title: '联系人',
|
||||
width: 120,
|
||||
},
|
||||
{
|
||||
field: 'remark',
|
||||
title: '备注',
|
||||
minWidth: 160,
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
width: 160,
|
||||
fixed: 'right',
|
||||
slots: { default: 'actions' },
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
<script lang="ts" setup>
|
||||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
||||
import { downloadFileFromBlobPart } from '@vben/utils';
|
||||
|
||||
import { message } from 'ant-design-vue';
|
||||
|
||||
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||
import {
|
||||
deleteMerchant,
|
||||
exportMerchant,
|
||||
getMerchantPage,
|
||||
} from '#/api/wms/md/merchant';
|
||||
import { $t } from '#/locales';
|
||||
|
||||
import { useGridColumns, useGridFormSchema } from './data';
|
||||
import Form from './modules/form.vue';
|
||||
|
||||
defineOptions({ name: 'WmsMerchant' });
|
||||
|
||||
const [FormModal, formModalApi] = useVbenModal({
|
||||
connectedComponent: Form,
|
||||
destroyOnClose: true,
|
||||
});
|
||||
|
||||
/** 刷新表格 */
|
||||
function handleRefresh() {
|
||||
gridApi.query();
|
||||
}
|
||||
|
||||
/** 创建往来企业 */
|
||||
function handleCreate() {
|
||||
formModalApi.setData(null).open();
|
||||
}
|
||||
|
||||
/** 编辑往来企业 */
|
||||
function handleEdit(row: WmsMerchantApi.Merchant) {
|
||||
formModalApi.setData(row).open();
|
||||
}
|
||||
|
||||
/** 删除往来企业 */
|
||||
async function handleDelete(row: WmsMerchantApi.Merchant) {
|
||||
const hideLoading = message.loading({
|
||||
content: $t('ui.actionMessage.deleting', [row.name]),
|
||||
duration: 0,
|
||||
});
|
||||
try {
|
||||
await deleteMerchant(row.id!);
|
||||
message.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
||||
handleRefresh();
|
||||
} finally {
|
||||
hideLoading();
|
||||
}
|
||||
}
|
||||
|
||||
/** 导出往来企业 */
|
||||
async function handleExport() {
|
||||
const data = await exportMerchant(await gridApi.formApi.getValues());
|
||||
downloadFileFromBlobPart({ fileName: '往来企业.xls', source: data });
|
||||
}
|
||||
|
||||
const [Grid, gridApi] = useVbenVxeGrid({
|
||||
formOptions: {
|
||||
schema: useGridFormSchema(),
|
||||
},
|
||||
gridOptions: {
|
||||
columns: useGridColumns(),
|
||||
height: 'auto',
|
||||
keepSource: true,
|
||||
proxyConfig: {
|
||||
ajax: {
|
||||
query: async ({ page }, formValues) => {
|
||||
return await getMerchantPage({
|
||||
pageNo: page.currentPage,
|
||||
pageSize: page.pageSize,
|
||||
...formValues,
|
||||
});
|
||||
},
|
||||
},
|
||||
},
|
||||
rowConfig: {
|
||||
keyField: 'id',
|
||||
isHover: true,
|
||||
},
|
||||
toolbarConfig: {
|
||||
refresh: true,
|
||||
search: true,
|
||||
},
|
||||
} as VxeTableGridOptions<WmsMerchantApi.Merchant>,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Page auto-content-height>
|
||||
<template #doc>
|
||||
<DocAlert
|
||||
title="【基础】往来企业(供应商、客户)"
|
||||
url="https://doc.iocoder.cn/wms/md/merchant/"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<FormModal @success="handleRefresh" />
|
||||
<Grid table-title="往来企业列表">
|
||||
<template #toolbar-tools>
|
||||
<TableAction
|
||||
:actions="[
|
||||
{
|
||||
label: $t('ui.actionTitle.create', ['往来企业']),
|
||||
type: 'primary',
|
||||
icon: ACTION_ICON.ADD,
|
||||
auth: ['wms:merchant:create'],
|
||||
onClick: handleCreate,
|
||||
},
|
||||
{
|
||||
label: $t('ui.actionTitle.export'),
|
||||
type: 'primary',
|
||||
icon: ACTION_ICON.DOWNLOAD,
|
||||
auth: ['wms:merchant:export'],
|
||||
onClick: handleExport,
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
<template #actions="{ row }">
|
||||
<TableAction
|
||||
:actions="[
|
||||
{
|
||||
label: $t('common.edit'),
|
||||
type: 'link',
|
||||
icon: ACTION_ICON.EDIT,
|
||||
auth: ['wms:merchant:update'],
|
||||
onClick: handleEdit.bind(null, row),
|
||||
},
|
||||
{
|
||||
label: $t('common.delete'),
|
||||
type: 'link',
|
||||
danger: true,
|
||||
icon: ACTION_ICON.DELETE,
|
||||
auth: ['wms:merchant:delete'],
|
||||
popConfirm: {
|
||||
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
||||
confirm: handleDelete.bind(null, row),
|
||||
},
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
</Grid>
|
||||
</Page>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
<script lang="ts" setup>
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { computed, ref } from 'vue';
|
||||
|
||||
import { useVbenModal } from '@vben/common-ui';
|
||||
|
||||
import { message } from 'ant-design-vue';
|
||||
|
||||
import { useVbenForm } from '#/adapter/form';
|
||||
import {
|
||||
createMerchant,
|
||||
getMerchant,
|
||||
updateMerchant,
|
||||
} from '#/api/wms/md/merchant';
|
||||
import { $t } from '#/locales';
|
||||
|
||||
import { useFormSchema } from '../data';
|
||||
|
||||
defineOptions({ name: 'WmsMerchantForm' });
|
||||
|
||||
const emit = defineEmits(['success']);
|
||||
const formData = ref<WmsMerchantApi.Merchant>();
|
||||
const getTitle = computed(() => {
|
||||
return formData.value?.id
|
||||
? $t('ui.actionTitle.edit', ['往来企业'])
|
||||
: $t('ui.actionTitle.create', ['往来企业']);
|
||||
});
|
||||
|
||||
const [Form, formApi] = useVbenForm({
|
||||
commonConfig: {
|
||||
componentProps: {
|
||||
class: 'w-full',
|
||||
},
|
||||
labelWidth: 120,
|
||||
},
|
||||
wrapperClass: 'grid-cols-2',
|
||||
layout: 'horizontal',
|
||||
schema: [],
|
||||
showDefaultActions: false,
|
||||
});
|
||||
|
||||
/** 表单 schema 需要 formApi 引用,所以通过 setState 设置 schema */
|
||||
formApi.setState({ schema: useFormSchema(formApi) });
|
||||
|
||||
const [Modal, modalApi] = useVbenModal({
|
||||
async onConfirm() {
|
||||
const { valid } = await formApi.validate();
|
||||
if (!valid) {
|
||||
return;
|
||||
}
|
||||
modalApi.lock();
|
||||
// 提交表单
|
||||
const data = (await formApi.getValues()) as WmsMerchantApi.Merchant;
|
||||
try {
|
||||
await (formData.value?.id
|
||||
? updateMerchant(data)
|
||||
: createMerchant(data));
|
||||
// 关闭并提示
|
||||
await modalApi.close();
|
||||
emit('success');
|
||||
message.success($t('ui.actionMessage.operationSuccess'));
|
||||
} finally {
|
||||
modalApi.unlock();
|
||||
}
|
||||
},
|
||||
async onOpenChange(isOpen: boolean) {
|
||||
if (!isOpen) {
|
||||
formData.value = undefined;
|
||||
return;
|
||||
}
|
||||
await formApi.resetForm();
|
||||
const data = modalApi.getData<WmsMerchantApi.Merchant>();
|
||||
if (!data || !data.id) {
|
||||
return;
|
||||
}
|
||||
// 加载数据
|
||||
modalApi.lock();
|
||||
try {
|
||||
formData.value = await getMerchant(data.id);
|
||||
// 设置到 values
|
||||
await formApi.setValues(formData.value);
|
||||
} finally {
|
||||
modalApi.unlock();
|
||||
}
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Modal :title="getTitle" class="w-1/2">
|
||||
<Form class="mx-4" />
|
||||
</Modal>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,73 @@
|
|||
import type { PageParam, PageResult } from '@vben/request';
|
||||
|
||||
import { requestClient } from '#/api/request';
|
||||
|
||||
export namespace WmsMerchantApi {
|
||||
/** WMS 往来企业 */
|
||||
export interface Merchant {
|
||||
id?: number;
|
||||
code?: string;
|
||||
name?: string;
|
||||
type?: number;
|
||||
level?: string;
|
||||
bankName?: string;
|
||||
bankAccount?: string;
|
||||
address?: string;
|
||||
mobile?: string;
|
||||
telephone?: string;
|
||||
contact?: string;
|
||||
email?: string;
|
||||
remark?: string;
|
||||
createTime?: Date;
|
||||
}
|
||||
|
||||
/** WMS 往来企业精简列表请求 */
|
||||
export interface MerchantSimpleListReq {
|
||||
types?: number[];
|
||||
}
|
||||
}
|
||||
|
||||
/** 查询往来企业分页 */
|
||||
export function getMerchantPage(params: PageParam) {
|
||||
return requestClient.get<PageResult<WmsMerchantApi.Merchant>>(
|
||||
'/wms/merchant/page',
|
||||
{ params },
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业精简列表 */
|
||||
export function getMerchantSimpleList(
|
||||
params?: WmsMerchantApi.MerchantSimpleListReq,
|
||||
) {
|
||||
return requestClient.get<WmsMerchantApi.Merchant[]>(
|
||||
'/wms/merchant/simple-list',
|
||||
{ params },
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业详情 */
|
||||
export function getMerchant(id: number) {
|
||||
return requestClient.get<WmsMerchantApi.Merchant>(
|
||||
`/wms/merchant/get?id=${id}`,
|
||||
);
|
||||
}
|
||||
|
||||
/** 新增往来企业 */
|
||||
export function createMerchant(data: WmsMerchantApi.Merchant) {
|
||||
return requestClient.post('/wms/merchant/create', data);
|
||||
}
|
||||
|
||||
/** 修改往来企业 */
|
||||
export function updateMerchant(data: WmsMerchantApi.Merchant) {
|
||||
return requestClient.put('/wms/merchant/update', data);
|
||||
}
|
||||
|
||||
/** 删除往来企业 */
|
||||
export function deleteMerchant(id: number) {
|
||||
return requestClient.delete(`/wms/merchant/delete?id=${id}`);
|
||||
}
|
||||
|
||||
/** 导出往来企业 */
|
||||
export function exportMerchant(params: any) {
|
||||
return requestClient.download('/wms/merchant/export-excel', { params });
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
export { default as WmsMerchantSelect } from './merchant-select.vue';
|
||||
|
|
@ -0,0 +1,111 @@
|
|||
<script lang="ts" setup>
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { computed, onMounted, ref, watch } from 'vue';
|
||||
|
||||
import { ElOption, ElSelect } from 'element-plus';
|
||||
|
||||
import { getMerchantSimpleList } from '#/api/wms/md/merchant';
|
||||
import {
|
||||
CustomerMerchantTypeList,
|
||||
SupplierMerchantTypeList,
|
||||
} from '#/views/wms/utils/constants';
|
||||
|
||||
defineOptions({ name: 'WmsMerchantSelect', inheritAttrs: false });
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
clearable?: boolean;
|
||||
customer?: boolean;
|
||||
disabled?: boolean;
|
||||
modelValue?: number;
|
||||
placeholder?: string;
|
||||
supplier?: boolean;
|
||||
}>(),
|
||||
{
|
||||
clearable: true,
|
||||
customer: false,
|
||||
disabled: false,
|
||||
modelValue: undefined,
|
||||
placeholder: '请选择往来企业',
|
||||
supplier: false,
|
||||
},
|
||||
);
|
||||
|
||||
const emit = defineEmits<{
|
||||
change: [merchant: undefined | WmsMerchantApi.Merchant];
|
||||
'update:modelValue': [value: number | undefined];
|
||||
}>();
|
||||
|
||||
const loading = ref(false);
|
||||
const merchantList = ref<WmsMerchantApi.Merchant[]>([]);
|
||||
|
||||
const options = computed(() =>
|
||||
merchantList.value
|
||||
.filter((merchant) => merchant.id !== undefined)
|
||||
.map((merchant) => ({
|
||||
label: merchant.name,
|
||||
value: merchant.id!,
|
||||
})),
|
||||
);
|
||||
|
||||
/** 选中变化 */
|
||||
function handleChange(value: number | string | undefined) {
|
||||
const merchantId = typeof value === 'number' ? value : undefined;
|
||||
emit('update:modelValue', merchantId);
|
||||
emit(
|
||||
'change',
|
||||
merchantList.value.find((merchant) => merchant.id === merchantId),
|
||||
);
|
||||
}
|
||||
|
||||
/** 查询往来企业精简列表 */
|
||||
async function getList() {
|
||||
let types: number[] | undefined;
|
||||
if (props.supplier) {
|
||||
types = SupplierMerchantTypeList;
|
||||
} else if (props.customer) {
|
||||
types = CustomerMerchantTypeList;
|
||||
}
|
||||
loading.value = true;
|
||||
try {
|
||||
merchantList.value = await getMerchantSimpleList(
|
||||
types ? { types } : undefined,
|
||||
);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
}
|
||||
|
||||
watch(
|
||||
() => [props.supplier, props.customer],
|
||||
() => {
|
||||
getList();
|
||||
},
|
||||
);
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ElSelect
|
||||
v-bind="$attrs"
|
||||
:clearable="clearable"
|
||||
:disabled="disabled"
|
||||
:loading="loading"
|
||||
:model-value="modelValue"
|
||||
:placeholder="placeholder"
|
||||
class="w-full"
|
||||
filterable
|
||||
@change="handleChange"
|
||||
>
|
||||
<ElOption
|
||||
v-for="option in options"
|
||||
:key="option.value"
|
||||
:label="option.label"
|
||||
:value="option.value"
|
||||
/>
|
||||
</ElSelect>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,232 @@
|
|||
import type { VbenFormSchema } from '#/adapter/form';
|
||||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||
|
||||
import { h } from 'vue';
|
||||
|
||||
import { DICT_TYPE } from '@vben/constants';
|
||||
import { getDictOptions } from '@vben/hooks';
|
||||
|
||||
import { ElButton } from 'element-plus';
|
||||
|
||||
import { z } from '#/adapter/form';
|
||||
import { generateWmsCode } from '#/views/wms/utils/constants';
|
||||
|
||||
/** 新增/修改往来企业的表单 */
|
||||
export function useFormSchema(formApi?: any): VbenFormSchema[] {
|
||||
return [
|
||||
{
|
||||
component: 'Input',
|
||||
fieldName: 'id',
|
||||
dependencies: {
|
||||
triggerFields: [''],
|
||||
show: () => false,
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'code',
|
||||
label: '往来企业编号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 20,
|
||||
placeholder: '请输入往来企业编号',
|
||||
},
|
||||
rules: z.string().min(1, '往来企业编号不能为空').max(20),
|
||||
suffix: () => {
|
||||
return h(
|
||||
ElButton,
|
||||
{
|
||||
type: 'default',
|
||||
onClick: () => {
|
||||
formApi?.setFieldValue('code', generateWmsCode('M'));
|
||||
},
|
||||
},
|
||||
{ default: () => '生成' },
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'name',
|
||||
label: '往来企业名称',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 60,
|
||||
placeholder: '请输入往来企业名称',
|
||||
},
|
||||
rules: z.string().min(1, '往来企业名称不能为空').max(60),
|
||||
},
|
||||
{
|
||||
fieldName: 'type',
|
||||
label: '往来企业类型',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
clearable: true,
|
||||
options: getDictOptions(DICT_TYPE.WMS_MERCHANT_TYPE, 'number'),
|
||||
placeholder: '请选择往来企业类型',
|
||||
},
|
||||
rules: 'required',
|
||||
},
|
||||
{
|
||||
fieldName: 'level',
|
||||
label: '级别',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 10,
|
||||
placeholder: '请输入级别',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'bankName',
|
||||
label: '开户行',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 255,
|
||||
placeholder: '请输入开户行',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'bankAccount',
|
||||
label: '银行账户',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 40,
|
||||
placeholder: '请输入银行账户',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'address',
|
||||
label: '地址',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 200,
|
||||
placeholder: '请输入地址',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'contact',
|
||||
label: '联系人',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 30,
|
||||
placeholder: '请输入联系人',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'mobile',
|
||||
label: '手机号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 13,
|
||||
placeholder: '请输入手机号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'telephone',
|
||||
label: '座机号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 13,
|
||||
placeholder: '请输入座机号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'email',
|
||||
label: 'Email',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 50,
|
||||
placeholder: '请输入 Email',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'remark',
|
||||
label: '备注',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
maxLength: 255,
|
||||
placeholder: '请输入备注',
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
/** 列表的搜索表单 */
|
||||
export function useGridFormSchema(): VbenFormSchema[] {
|
||||
return [
|
||||
{
|
||||
fieldName: 'code',
|
||||
label: '往来企业编号',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
clearable: true,
|
||||
placeholder: '请输入往来企业编号',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'name',
|
||||
label: '往来企业名称',
|
||||
component: 'Input',
|
||||
componentProps: {
|
||||
clearable: true,
|
||||
placeholder: '请输入往来企业名称',
|
||||
},
|
||||
},
|
||||
{
|
||||
fieldName: 'type',
|
||||
label: '往来企业类型',
|
||||
component: 'Select',
|
||||
componentProps: {
|
||||
clearable: true,
|
||||
options: getDictOptions(DICT_TYPE.WMS_MERCHANT_TYPE, 'number'),
|
||||
placeholder: '请选择往来企业类型',
|
||||
},
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
/** 列表的字段 */
|
||||
export function useGridColumns(): VxeTableGridOptions['columns'] {
|
||||
return [
|
||||
{
|
||||
field: 'code',
|
||||
title: '往来企业编号',
|
||||
width: 160,
|
||||
},
|
||||
{
|
||||
field: 'name',
|
||||
title: '往来企业名称',
|
||||
minWidth: 160,
|
||||
},
|
||||
{
|
||||
field: 'type',
|
||||
title: '往来企业类型',
|
||||
width: 120,
|
||||
align: 'center',
|
||||
cellRender: {
|
||||
name: 'CellDict',
|
||||
props: { type: DICT_TYPE.WMS_MERCHANT_TYPE },
|
||||
},
|
||||
},
|
||||
{
|
||||
field: 'level',
|
||||
title: '级别',
|
||||
width: 100,
|
||||
align: 'center',
|
||||
},
|
||||
{
|
||||
field: 'contact',
|
||||
title: '联系人',
|
||||
width: 120,
|
||||
},
|
||||
{
|
||||
field: 'remark',
|
||||
title: '备注',
|
||||
minWidth: 160,
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
width: 160,
|
||||
fixed: 'right',
|
||||
slots: { default: 'actions' },
|
||||
},
|
||||
];
|
||||
}
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
<script lang="ts" setup>
|
||||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
||||
import { downloadFileFromBlobPart } from '@vben/utils';
|
||||
|
||||
import { ElLoading, ElMessage } from 'element-plus';
|
||||
|
||||
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||
import {
|
||||
deleteMerchant,
|
||||
exportMerchant,
|
||||
getMerchantPage,
|
||||
} from '#/api/wms/md/merchant';
|
||||
import { $t } from '#/locales';
|
||||
|
||||
import { useGridColumns, useGridFormSchema } from './data';
|
||||
import Form from './modules/form.vue';
|
||||
|
||||
defineOptions({ name: 'WmsMerchant' });
|
||||
|
||||
const [FormModal, formModalApi] = useVbenModal({
|
||||
connectedComponent: Form,
|
||||
destroyOnClose: true,
|
||||
});
|
||||
|
||||
/** 刷新表格 */
|
||||
function handleRefresh() {
|
||||
gridApi.query();
|
||||
}
|
||||
|
||||
/** 创建往来企业 */
|
||||
function handleCreate() {
|
||||
formModalApi.setData(null).open();
|
||||
}
|
||||
|
||||
/** 编辑往来企业 */
|
||||
function handleEdit(row: WmsMerchantApi.Merchant) {
|
||||
formModalApi.setData(row).open();
|
||||
}
|
||||
|
||||
/** 删除往来企业 */
|
||||
async function handleDelete(row: WmsMerchantApi.Merchant) {
|
||||
const loadingInstance = ElLoading.service({
|
||||
text: $t('ui.actionMessage.deleting', [row.name]),
|
||||
});
|
||||
try {
|
||||
await deleteMerchant(row.id!);
|
||||
ElMessage.success($t('ui.actionMessage.deleteSuccess', [row.name]));
|
||||
handleRefresh();
|
||||
} finally {
|
||||
loadingInstance.close();
|
||||
}
|
||||
}
|
||||
|
||||
/** 导出往来企业 */
|
||||
async function handleExport() {
|
||||
const data = await exportMerchant(await gridApi.formApi.getValues());
|
||||
downloadFileFromBlobPart({ fileName: '往来企业.xls', source: data });
|
||||
}
|
||||
|
||||
const [Grid, gridApi] = useVbenVxeGrid({
|
||||
formOptions: {
|
||||
schema: useGridFormSchema(),
|
||||
},
|
||||
gridOptions: {
|
||||
columns: useGridColumns(),
|
||||
height: 'auto',
|
||||
keepSource: true,
|
||||
proxyConfig: {
|
||||
ajax: {
|
||||
query: async ({ page }, formValues) => {
|
||||
return await getMerchantPage({
|
||||
pageNo: page.currentPage,
|
||||
pageSize: page.pageSize,
|
||||
...formValues,
|
||||
});
|
||||
},
|
||||
},
|
||||
},
|
||||
rowConfig: {
|
||||
keyField: 'id',
|
||||
isHover: true,
|
||||
},
|
||||
toolbarConfig: {
|
||||
refresh: true,
|
||||
search: true,
|
||||
},
|
||||
} as VxeTableGridOptions<WmsMerchantApi.Merchant>,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Page auto-content-height>
|
||||
<template #doc>
|
||||
<DocAlert
|
||||
title="【基础】往来企业(供应商、客户)"
|
||||
url="https://doc.iocoder.cn/wms/md/merchant/"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<FormModal @success="handleRefresh" />
|
||||
<Grid table-title="往来企业列表">
|
||||
<template #toolbar-tools>
|
||||
<TableAction
|
||||
:actions="[
|
||||
{
|
||||
label: $t('ui.actionTitle.create', ['往来企业']),
|
||||
type: 'primary',
|
||||
icon: ACTION_ICON.ADD,
|
||||
auth: ['wms:merchant:create'],
|
||||
onClick: handleCreate,
|
||||
},
|
||||
{
|
||||
label: $t('ui.actionTitle.export'),
|
||||
type: 'primary',
|
||||
icon: ACTION_ICON.DOWNLOAD,
|
||||
auth: ['wms:merchant:export'],
|
||||
onClick: handleExport,
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
<template #actions="{ row }">
|
||||
<TableAction
|
||||
:actions="[
|
||||
{
|
||||
label: $t('common.edit'),
|
||||
type: 'primary',
|
||||
link: true,
|
||||
icon: ACTION_ICON.EDIT,
|
||||
auth: ['wms:merchant:update'],
|
||||
onClick: handleEdit.bind(null, row),
|
||||
},
|
||||
{
|
||||
label: $t('common.delete'),
|
||||
type: 'danger',
|
||||
link: true,
|
||||
icon: ACTION_ICON.DELETE,
|
||||
auth: ['wms:merchant:delete'],
|
||||
popConfirm: {
|
||||
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
||||
confirm: handleDelete.bind(null, row),
|
||||
},
|
||||
},
|
||||
]"
|
||||
/>
|
||||
</template>
|
||||
</Grid>
|
||||
</Page>
|
||||
</template>
|
||||
|
|
@ -0,0 +1,94 @@
|
|||
<script lang="ts" setup>
|
||||
import type { WmsMerchantApi } from '#/api/wms/md/merchant';
|
||||
|
||||
import { computed, ref } from 'vue';
|
||||
|
||||
import { useVbenModal } from '@vben/common-ui';
|
||||
|
||||
import { ElMessage } from 'element-plus';
|
||||
|
||||
import { useVbenForm } from '#/adapter/form';
|
||||
import {
|
||||
createMerchant,
|
||||
getMerchant,
|
||||
updateMerchant,
|
||||
} from '#/api/wms/md/merchant';
|
||||
import { $t } from '#/locales';
|
||||
|
||||
import { useFormSchema } from '../data';
|
||||
|
||||
defineOptions({ name: 'WmsMerchantForm' });
|
||||
|
||||
const emit = defineEmits(['success']);
|
||||
const formData = ref<WmsMerchantApi.Merchant>();
|
||||
const getTitle = computed(() => {
|
||||
return formData.value?.id
|
||||
? $t('ui.actionTitle.edit', ['往来企业'])
|
||||
: $t('ui.actionTitle.create', ['往来企业']);
|
||||
});
|
||||
|
||||
const [Form, formApi] = useVbenForm({
|
||||
commonConfig: {
|
||||
componentProps: {
|
||||
class: 'w-full',
|
||||
},
|
||||
labelWidth: 120,
|
||||
},
|
||||
wrapperClass: 'grid-cols-2',
|
||||
layout: 'horizontal',
|
||||
schema: [],
|
||||
showDefaultActions: false,
|
||||
});
|
||||
|
||||
/** 表单 schema 需要 formApi 引用,所以通过 setState 设置 schema */
|
||||
formApi.setState({ schema: useFormSchema(formApi) });
|
||||
|
||||
const [Modal, modalApi] = useVbenModal({
|
||||
async onConfirm() {
|
||||
const { valid } = await formApi.validate();
|
||||
if (!valid) {
|
||||
return;
|
||||
}
|
||||
modalApi.lock();
|
||||
// 提交表单
|
||||
const data = (await formApi.getValues()) as WmsMerchantApi.Merchant;
|
||||
try {
|
||||
await (formData.value?.id
|
||||
? updateMerchant(data)
|
||||
: createMerchant(data));
|
||||
// 关闭并提示
|
||||
await modalApi.close();
|
||||
emit('success');
|
||||
ElMessage.success($t('ui.actionMessage.operationSuccess'));
|
||||
} finally {
|
||||
modalApi.unlock();
|
||||
}
|
||||
},
|
||||
async onOpenChange(isOpen: boolean) {
|
||||
if (!isOpen) {
|
||||
formData.value = undefined;
|
||||
return;
|
||||
}
|
||||
await formApi.resetForm();
|
||||
const data = modalApi.getData<WmsMerchantApi.Merchant>();
|
||||
if (!data || !data.id) {
|
||||
return;
|
||||
}
|
||||
// 加载数据
|
||||
modalApi.lock();
|
||||
try {
|
||||
formData.value = await getMerchant(data.id);
|
||||
// 设置到 values
|
||||
await formApi.setValues(formData.value);
|
||||
} finally {
|
||||
modalApi.unlock();
|
||||
}
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Modal :title="getTitle" class="w-1/2">
|
||||
<Form class="mx-4" />
|
||||
</Modal>
|
||||
</template>
|
||||
Loading…
Reference in New Issue