feat(oa/crm): 添加礼品管理模块
- 新增礼品申请编辑页面,包含基本信息、礼品明细、审批信息等功能 - 实现礼品申请的增删改查操作,支持批量发放礼品功能 - 添加礼品申请明细、礼品信息、礼品发放记录等相关API接口 - 集成审批流程功能,支持工作流条件分支判断和审批记录查看 - 实现库存不足异常处理和用户友好的提示机制dev
parent
148c349760
commit
75af8f63c7
@ -0,0 +1,65 @@
|
||||
/**
|
||||
* 客户信息 类型定义
|
||||
*/
|
||||
export interface CrmCustomerInfoVO {
|
||||
customerId: number;
|
||||
customerName: string;
|
||||
mnemonicName?: string;
|
||||
industryId?: number;
|
||||
customerType?: number;
|
||||
customerStatus?: number;
|
||||
customerLevel?: number;
|
||||
customerSource?: number;
|
||||
ownerId?: number;
|
||||
ownerName?: string;
|
||||
detailedAddress?: string;
|
||||
customerScale?: number;
|
||||
parentCustomerId?: number;
|
||||
customerRelationship?: string;
|
||||
legalRepresentative?: string;
|
||||
businessLicenseNumber?: string;
|
||||
taxNumber?: string;
|
||||
bankAccountOpening?: string;
|
||||
bankNumber?: string;
|
||||
ossId?: string;
|
||||
remark?: string;
|
||||
activeFlag?: string;
|
||||
ourCompanyFlag?: string;
|
||||
}
|
||||
|
||||
export interface CrmCustomerInfoQuery {
|
||||
pageNum?: number;
|
||||
pageSize?: number;
|
||||
customerName?: string;
|
||||
mnemonicName?: string;
|
||||
customerType?: number;
|
||||
customerStatus?: number;
|
||||
customerLevel?: number;
|
||||
activeFlag?: string;
|
||||
ourCompanyFlag?: string;
|
||||
}
|
||||
|
||||
export interface CrmCustomerInfoForm {
|
||||
customerId?: number;
|
||||
customerName?: string;
|
||||
mnemonicName?: string;
|
||||
industryId?: number;
|
||||
customerType?: number;
|
||||
customerStatus?: number;
|
||||
customerLevel?: number;
|
||||
customerSource?: number;
|
||||
ownerId?: number;
|
||||
detailedAddress?: string;
|
||||
customerScale?: number;
|
||||
parentCustomerId?: number;
|
||||
customerRelationship?: string;
|
||||
legalRepresentative?: string;
|
||||
businessLicenseNumber?: string;
|
||||
taxNumber?: string;
|
||||
bankAccountOpening?: string;
|
||||
bankNumber?: string;
|
||||
ossId?: string;
|
||||
remark?: string;
|
||||
activeFlag?: string;
|
||||
ourCompanyFlag?: string;
|
||||
}
|
||||
@ -0,0 +1,100 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { CrmGiftApplyForm, CrmGiftApplyQuery, CrmGiftApplyVO } from '@/api/oa/crm/crmGiftApply/types';
|
||||
|
||||
/**
|
||||
* 查询礼品申请列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listCrmGiftApply = (query?: CrmGiftApplyQuery): AxiosPromise<CrmGiftApplyVO[]> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询礼品申请详细
|
||||
* @param giftApplyId
|
||||
*/
|
||||
export const getCrmGiftApply = (giftApplyId: string | number): AxiosPromise<CrmGiftApplyVO> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/' + giftApplyId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增礼品申请
|
||||
* @param data
|
||||
*/
|
||||
export const addCrmGiftApply = (data: CrmGiftApplyForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改礼品申请
|
||||
* @param data
|
||||
*/
|
||||
export const updateCrmGiftApply = (data: CrmGiftApplyForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除礼品申请
|
||||
* @param giftApplyId
|
||||
*/
|
||||
export const delCrmGiftApply = (giftApplyId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/' + giftApplyId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 下拉框查询礼品申请列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getCrmGiftApplyList(query) {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/getCrmGiftApplyList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交礼品申请并发起审批流程
|
||||
* @param data
|
||||
*/
|
||||
export const giftApplySubmitAndFlowStart = (data: CrmGiftApplyForm): AxiosPromise<CrmGiftApplyVO> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/submitAndFlowStart',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 批量发放礼品
|
||||
* @param data
|
||||
*/
|
||||
export const batchIssueGifts = (data: CrmGiftApplyForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApply/batchIssue',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
@ -0,0 +1,319 @@
|
||||
import { CrmGiftApplyDetailVO } from '@/api/oa/crm/crmGiftApplyDetail/types';
|
||||
|
||||
export interface CrmGiftApplyVO {
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
giftApplyId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品申请编号
|
||||
*/
|
||||
applicationCode: string;
|
||||
|
||||
/**
|
||||
* 申请人ID
|
||||
*/
|
||||
applicantId: string | number;
|
||||
|
||||
/**
|
||||
* 申请人姓名
|
||||
*/
|
||||
applicantName: string;
|
||||
|
||||
/**
|
||||
* 申请人所属部门ID
|
||||
*/
|
||||
applicantDeptId: string | number;
|
||||
|
||||
/**
|
||||
* 申请人所属部门名称
|
||||
*/
|
||||
applicantDeptName: string;
|
||||
|
||||
/**
|
||||
* 申请日期
|
||||
*/
|
||||
applicationDate: string;
|
||||
|
||||
/**
|
||||
* 客户ID
|
||||
*/
|
||||
customerUnitId: string | number;
|
||||
|
||||
/**
|
||||
* 客户名称
|
||||
*/
|
||||
customerUnitName: string;
|
||||
|
||||
/**
|
||||
* 客人姓名
|
||||
*/
|
||||
guestName: string;
|
||||
|
||||
/**
|
||||
* 人数
|
||||
*/
|
||||
peopleCount: number;
|
||||
|
||||
/**
|
||||
* 申请事由
|
||||
*/
|
||||
applicationReason: string;
|
||||
|
||||
/**
|
||||
* 领用人ID
|
||||
*/
|
||||
recipientId: string | number;
|
||||
|
||||
/**
|
||||
* 领用人姓名
|
||||
*/
|
||||
recipientName: string;
|
||||
|
||||
/**
|
||||
* 领用日期
|
||||
*/
|
||||
recipientDate: string;
|
||||
|
||||
/**
|
||||
* 申请总金额
|
||||
*/
|
||||
totalAmount: number;
|
||||
|
||||
/**
|
||||
* 礼品申请状态(1暂存 2审批中 3已审批 4作废)
|
||||
*/
|
||||
applicationStatus: string;
|
||||
|
||||
/**
|
||||
* 流程状态
|
||||
*/
|
||||
flowStatus: string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
/**
|
||||
* 礼品申请明细列表
|
||||
*/
|
||||
detailList?: CrmGiftApplyDetailVO[];
|
||||
}
|
||||
|
||||
// CrmGiftApplyDetailVO 从 crmGiftApplyDetail/types.ts 导入,避免重复定义
|
||||
export type { CrmGiftApplyDetailVO };
|
||||
|
||||
export interface CrmGiftApplyForm extends BaseEntity {
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
giftApplyId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品申请编号
|
||||
*/
|
||||
applicationCode?: string;
|
||||
|
||||
/**
|
||||
* 申请人ID
|
||||
*/
|
||||
applicantId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请人姓名
|
||||
*/
|
||||
applicantName?: string;
|
||||
|
||||
/**
|
||||
* 申请人所属部门ID
|
||||
*/
|
||||
applicantDeptId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请人所属部门名称
|
||||
*/
|
||||
applicantDeptName?: string;
|
||||
|
||||
/**
|
||||
* 申请日期
|
||||
*/
|
||||
applicationDate?: string;
|
||||
|
||||
/**
|
||||
* 客户ID
|
||||
*/
|
||||
customerUnitId?: string | number;
|
||||
|
||||
/**
|
||||
* 客户名称
|
||||
*/
|
||||
customerUnitName?: string;
|
||||
|
||||
/**
|
||||
* 客人姓名
|
||||
*/
|
||||
guestName?: string;
|
||||
|
||||
/**
|
||||
* 人数
|
||||
*/
|
||||
peopleCount?: number;
|
||||
|
||||
/**
|
||||
* 申请事由
|
||||
*/
|
||||
applicationReason?: string;
|
||||
|
||||
/**
|
||||
* 领用人ID
|
||||
*/
|
||||
recipientId?: string | number;
|
||||
|
||||
/**
|
||||
* 领用人姓名
|
||||
*/
|
||||
recipientName?: string;
|
||||
|
||||
/**
|
||||
* 领用日期
|
||||
*/
|
||||
recipientDate?: string;
|
||||
|
||||
/**
|
||||
* 申请总金额
|
||||
*/
|
||||
totalAmount?: number;
|
||||
|
||||
/**
|
||||
* 礼品申请状态(1暂存 2审批中 3已审批 4作废)
|
||||
*/
|
||||
applicationStatus?: string;
|
||||
|
||||
/**
|
||||
* 流程状态
|
||||
*/
|
||||
flowStatus?: string;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
// ==================== 流程相关字段 ====================
|
||||
|
||||
/**
|
||||
* 流程定义编码
|
||||
*/
|
||||
flowCode?: string;
|
||||
|
||||
/**
|
||||
* 流程变量
|
||||
*/
|
||||
variables?: any;
|
||||
|
||||
/**
|
||||
* 流程业务扩展信息
|
||||
*/
|
||||
bizExt?: any;
|
||||
|
||||
// ==================== 子表数据 ====================
|
||||
|
||||
/**
|
||||
* 礼品申请明细列表
|
||||
*/
|
||||
detailList?: CrmGiftApplyDetailVO[];
|
||||
}
|
||||
|
||||
export interface CrmGiftApplyQuery extends PageQuery {
|
||||
/**
|
||||
* 礼品申请编号
|
||||
*/
|
||||
applicationCode?: string;
|
||||
|
||||
/**
|
||||
* 申请人ID
|
||||
*/
|
||||
applicantId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请人姓名
|
||||
*/
|
||||
applicantName?: string;
|
||||
|
||||
/**
|
||||
* 申请人所属部门ID
|
||||
*/
|
||||
applicantDeptId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请人所属部门名称
|
||||
*/
|
||||
applicantDeptName?: string;
|
||||
|
||||
/**
|
||||
* 申请日期
|
||||
*/
|
||||
applicationDate?: string;
|
||||
|
||||
/**
|
||||
* 客户ID
|
||||
*/
|
||||
customerUnitId?: string | number;
|
||||
|
||||
/**
|
||||
* 客户名称
|
||||
*/
|
||||
customerUnitName?: string;
|
||||
|
||||
/**
|
||||
* 客人姓名
|
||||
*/
|
||||
guestName?: string;
|
||||
|
||||
/**
|
||||
* 人数
|
||||
*/
|
||||
peopleCount?: number;
|
||||
|
||||
/**
|
||||
* 申请事由
|
||||
*/
|
||||
applicationReason?: string;
|
||||
|
||||
/**
|
||||
* 领用人ID
|
||||
*/
|
||||
recipientId?: string | number;
|
||||
|
||||
/**
|
||||
* 领用人姓名
|
||||
*/
|
||||
recipientName?: string;
|
||||
|
||||
/**
|
||||
* 领用日期
|
||||
*/
|
||||
recipientDate?: string;
|
||||
|
||||
/**
|
||||
* 申请总金额
|
||||
*/
|
||||
totalAmount?: number;
|
||||
|
||||
/**
|
||||
* 礼品申请状态(1暂存 2审批中 3已审批 4作废)
|
||||
*/
|
||||
applicationStatus?: string;
|
||||
|
||||
/**
|
||||
* 流程状态
|
||||
*/
|
||||
flowStatus?: string;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
@ -0,0 +1,76 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { CrmGiftApplyDetailForm, CrmGiftApplyDetailQuery, CrmGiftApplyDetailVO } from '@/api/oa/crm/crmGiftApplyDetail/types';
|
||||
|
||||
/**
|
||||
* 查询礼品申请明细列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listCrmGiftApplyDetail = (query?: CrmGiftApplyDetailQuery): AxiosPromise<CrmGiftApplyDetailVO[]> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询礼品申请明细详细
|
||||
* @param detailId
|
||||
*/
|
||||
export const getCrmGiftApplyDetail = (detailId: string | number): AxiosPromise<CrmGiftApplyDetailVO> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail/' + detailId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增礼品申请明细
|
||||
* @param data
|
||||
*/
|
||||
export const addCrmGiftApplyDetail = (data: CrmGiftApplyDetailForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改礼品申请明细
|
||||
* @param data
|
||||
*/
|
||||
export const updateCrmGiftApplyDetail = (data: CrmGiftApplyDetailForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除礼品申请明细
|
||||
* @param detailId
|
||||
*/
|
||||
export const delCrmGiftApplyDetail = (detailId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail/' + detailId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 下拉框查询礼品申请明细列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getCrmGiftApplyDetailList(query) {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftApplyDetail/getCrmGiftApplyDetailList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
@ -0,0 +1,186 @@
|
||||
export interface CrmGiftApplyDetailVO {
|
||||
/**
|
||||
* 礼品申请明细ID
|
||||
*/
|
||||
detailId: string | number;
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification: string;
|
||||
|
||||
/**
|
||||
* 单价(含税)
|
||||
*/
|
||||
unitPrice: number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity: number;
|
||||
|
||||
/**
|
||||
* 申请数量
|
||||
*/
|
||||
applicationQuantity: number;
|
||||
|
||||
/**
|
||||
* 礼品金额
|
||||
*/
|
||||
giftAmount: number;
|
||||
|
||||
/**
|
||||
* 排序号
|
||||
*/
|
||||
sortOrder: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftApplyDetailForm extends BaseEntity {
|
||||
/**
|
||||
* 礼品申请明细ID
|
||||
*/
|
||||
detailId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 单价(含税)
|
||||
*/
|
||||
unitPrice?: number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity?: number;
|
||||
|
||||
/**
|
||||
* 申请数量
|
||||
*/
|
||||
applicationQuantity?: number;
|
||||
|
||||
/**
|
||||
* 礼品金额
|
||||
*/
|
||||
giftAmount?: number;
|
||||
|
||||
/**
|
||||
* 排序号
|
||||
*/
|
||||
sortOrder?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftApplyDetailQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 单价(含税)
|
||||
*/
|
||||
unitPrice?: number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity?: number;
|
||||
|
||||
/**
|
||||
* 申请数量
|
||||
*/
|
||||
applicationQuantity?: number;
|
||||
|
||||
/**
|
||||
* 礼品金额
|
||||
*/
|
||||
giftAmount?: number;
|
||||
|
||||
/**
|
||||
* 排序号
|
||||
*/
|
||||
sortOrder?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,76 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { CrmGiftInfoForm, CrmGiftInfoQuery, CrmGiftInfoVO } from '@/api/oa/crm/crmGiftInfo/types';
|
||||
|
||||
/**
|
||||
* 查询礼品信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listCrmGiftInfo = (query?: CrmGiftInfoQuery): AxiosPromise<CrmGiftInfoVO[]> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询礼品信息详细
|
||||
* @param giftId
|
||||
*/
|
||||
export const getCrmGiftInfo = (giftId: string | number): AxiosPromise<CrmGiftInfoVO> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo/' + giftId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增礼品信息
|
||||
* @param data
|
||||
*/
|
||||
export const addCrmGiftInfo = (data: CrmGiftInfoForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改礼品信息
|
||||
* @param data
|
||||
*/
|
||||
export const updateCrmGiftInfo = (data: CrmGiftInfoForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除礼品信息
|
||||
* @param giftId
|
||||
*/
|
||||
export const delCrmGiftInfo = (giftId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo/' + giftId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 下拉框查询礼品信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getCrmGiftInfoList(query) {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftInfo/getCrmGiftInfoList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
@ -0,0 +1,126 @@
|
||||
export interface CrmGiftInfoVO {
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification: string;
|
||||
|
||||
/**
|
||||
* 采购单价(含税)
|
||||
*/
|
||||
unitPrice: number;
|
||||
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
unitId: string | number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftInfoForm extends BaseEntity {
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 采购单价(含税)
|
||||
*/
|
||||
unitPrice?: number;
|
||||
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
unitId?: string | number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftInfoQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 采购单价(含税)
|
||||
*/
|
||||
unitPrice?: number;
|
||||
|
||||
/**
|
||||
* 单位ID
|
||||
*/
|
||||
unitId?: string | number;
|
||||
|
||||
/**
|
||||
* 库存数量
|
||||
*/
|
||||
inventoryQuantity?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,76 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { CrmGiftIssueRecordForm, CrmGiftIssueRecordQuery, CrmGiftIssueRecordVO } from '@/api/oa/crm/crmGiftIssueRecord/types';
|
||||
|
||||
/**
|
||||
* 查询礼品发放记录列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listCrmGiftIssueRecord = (query?: CrmGiftIssueRecordQuery): AxiosPromise<CrmGiftIssueRecordVO[]> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询礼品发放记录详细
|
||||
* @param issueRecordId
|
||||
*/
|
||||
export const getCrmGiftIssueRecord = (issueRecordId: string | number): AxiosPromise<CrmGiftIssueRecordVO> => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord/' + issueRecordId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增礼品发放记录
|
||||
* @param data
|
||||
*/
|
||||
export const addCrmGiftIssueRecord = (data: CrmGiftIssueRecordForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改礼品发放记录
|
||||
* @param data
|
||||
*/
|
||||
export const updateCrmGiftIssueRecord = (data: CrmGiftIssueRecordForm) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除礼品发放记录
|
||||
* @param issueRecordId
|
||||
*/
|
||||
export const delCrmGiftIssueRecord = (issueRecordId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord/' + issueRecordId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 下拉框查询礼品发放记录列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getCrmGiftIssueRecordList(query) {
|
||||
return request({
|
||||
url: '/oa/crm/crmGiftIssueRecord/getCrmGiftIssueRecordList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
}
|
||||
@ -0,0 +1,291 @@
|
||||
export interface CrmGiftIssueRecordVO {
|
||||
/**
|
||||
* 发放记录ID
|
||||
*/
|
||||
issueRecordId: string | number;
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId: string | number;
|
||||
|
||||
/**
|
||||
* 申请单编号
|
||||
*/
|
||||
applicationCode: string;
|
||||
|
||||
/**
|
||||
* 申请明细ID
|
||||
*/
|
||||
detailId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification: string;
|
||||
|
||||
/**
|
||||
* 发放数量
|
||||
*/
|
||||
issueQuantity: number;
|
||||
|
||||
/**
|
||||
* 发放时间
|
||||
*/
|
||||
issueDate: string;
|
||||
|
||||
/**
|
||||
* 领取人ID
|
||||
*/
|
||||
recipientId: string | number;
|
||||
|
||||
/**
|
||||
* 领取人姓名
|
||||
*/
|
||||
recipientName: string;
|
||||
|
||||
/**
|
||||
* 发放人ID
|
||||
*/
|
||||
issueBy: number;
|
||||
|
||||
/**
|
||||
* 发放人姓名
|
||||
*/
|
||||
issueByName: string;
|
||||
|
||||
/**
|
||||
* 发放部门ID
|
||||
*/
|
||||
issueDeptId: string | number;
|
||||
|
||||
/**
|
||||
* 发放部门名称
|
||||
*/
|
||||
issueDeptName: string;
|
||||
|
||||
/**
|
||||
* 发放前库存数量
|
||||
*/
|
||||
beforeInventory: number;
|
||||
|
||||
/**
|
||||
* 发放后库存数量
|
||||
*/
|
||||
afterInventory: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftIssueRecordForm extends BaseEntity {
|
||||
/**
|
||||
* 发放记录ID
|
||||
*/
|
||||
issueRecordId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请单编号
|
||||
*/
|
||||
applicationCode?: string;
|
||||
|
||||
/**
|
||||
* 申请明细ID
|
||||
*/
|
||||
detailId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 发放数量
|
||||
*/
|
||||
issueQuantity?: number;
|
||||
|
||||
/**
|
||||
* 发放时间
|
||||
*/
|
||||
issueDate?: string;
|
||||
|
||||
/**
|
||||
* 领取人ID
|
||||
*/
|
||||
recipientId?: string | number;
|
||||
|
||||
/**
|
||||
* 领取人姓名
|
||||
*/
|
||||
recipientName?: string;
|
||||
|
||||
/**
|
||||
* 发放人ID
|
||||
*/
|
||||
issueBy?: number;
|
||||
|
||||
/**
|
||||
* 发放人姓名
|
||||
*/
|
||||
issueByName?: string;
|
||||
|
||||
/**
|
||||
* 发放部门ID
|
||||
*/
|
||||
issueDeptId?: string | number;
|
||||
|
||||
/**
|
||||
* 发放部门名称
|
||||
*/
|
||||
issueDeptName?: string;
|
||||
|
||||
/**
|
||||
* 发放前库存数量
|
||||
*/
|
||||
beforeInventory?: number;
|
||||
|
||||
/**
|
||||
* 发放后库存数量
|
||||
*/
|
||||
afterInventory?: number;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
}
|
||||
|
||||
export interface CrmGiftIssueRecordQuery extends PageQuery {
|
||||
|
||||
/**
|
||||
* 申请单ID
|
||||
*/
|
||||
applicationId?: string | number;
|
||||
|
||||
/**
|
||||
* 申请单编号
|
||||
*/
|
||||
applicationCode?: string;
|
||||
|
||||
/**
|
||||
* 申请明细ID
|
||||
*/
|
||||
detailId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品ID
|
||||
*/
|
||||
giftId?: string | number;
|
||||
|
||||
/**
|
||||
* 礼品编码
|
||||
*/
|
||||
giftCode?: string;
|
||||
|
||||
/**
|
||||
* 礼品名称
|
||||
*/
|
||||
giftName?: string;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
specification?: string;
|
||||
|
||||
/**
|
||||
* 发放数量
|
||||
*/
|
||||
issueQuantity?: number;
|
||||
|
||||
/**
|
||||
* 发放时间
|
||||
*/
|
||||
issueDate?: string;
|
||||
|
||||
/**
|
||||
* 领取人ID
|
||||
*/
|
||||
recipientId?: string | number;
|
||||
|
||||
/**
|
||||
* 领取人姓名
|
||||
*/
|
||||
recipientName?: string;
|
||||
|
||||
/**
|
||||
* 发放人ID
|
||||
*/
|
||||
issueBy?: number;
|
||||
|
||||
/**
|
||||
* 发放人姓名
|
||||
*/
|
||||
issueByName?: string;
|
||||
|
||||
/**
|
||||
* 发放部门ID
|
||||
*/
|
||||
issueDeptId?: string | number;
|
||||
|
||||
/**
|
||||
* 发放部门名称
|
||||
*/
|
||||
issueDeptName?: string;
|
||||
|
||||
/**
|
||||
* 发放前库存数量
|
||||
*/
|
||||
beforeInventory?: number;
|
||||
|
||||
/**
|
||||
* 发放后库存数量
|
||||
*/
|
||||
afterInventory?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -0,0 +1,346 @@
|
||||
<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="申请单ID" prop="applicationId">
|
||||
<el-input v-model="queryParams.applicationId" placeholder="请输入申请单ID" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品ID" prop="giftId">
|
||||
<el-input v-model="queryParams.giftId" placeholder="请输入礼品ID" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品编码" prop="giftCode">
|
||||
<el-input v-model="queryParams.giftCode" placeholder="请输入礼品编码" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品名称" prop="giftName">
|
||||
<el-input v-model="queryParams.giftName" placeholder="请输入礼品名称" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="规格型号" prop="specification">
|
||||
<el-input v-model="queryParams.specification" placeholder="请输入规格型号" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="单价(含税)" prop="unitPrice">
|
||||
<el-input v-model="queryParams.unitPrice" placeholder="请输入单价(含税)" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="库存数量" prop="inventoryQuantity">
|
||||
<el-input v-model="queryParams.inventoryQuantity" placeholder="请输入库存数量" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="申请数量" prop="applicationQuantity">
|
||||
<el-input v-model="queryParams.applicationQuantity" placeholder="请输入申请数量" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品金额" prop="giftAmount">
|
||||
<el-input v-model="queryParams.giftAmount" placeholder="请输入礼品金额" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="排序号" prop="sortOrder">
|
||||
<el-input v-model="queryParams.sortOrder" 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:crmGiftApplyDetail: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:crmGiftApplyDetail: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:crmGiftApplyDetail:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/crm:crmGiftApplyDetail: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="crmGiftApplyDetailList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="礼品申请明细ID" align="center" prop="detailId" v-if="columns[0].visible" />
|
||||
<el-table-column label="申请单ID" align="center" prop="applicationId" v-if="columns[2].visible" />
|
||||
<el-table-column label="礼品ID" align="center" prop="giftId" v-if="columns[3].visible" />
|
||||
<el-table-column label="礼品编码" align="center" prop="giftCode" v-if="columns[4].visible" />
|
||||
<el-table-column label="礼品名称" align="center" prop="giftName" v-if="columns[5].visible" />
|
||||
<el-table-column label="规格型号" align="center" prop="specification" v-if="columns[6].visible" />
|
||||
<el-table-column label="单价(含税)" align="center" prop="unitPrice" v-if="columns[7].visible" />
|
||||
<el-table-column label="库存数量" align="center" prop="inventoryQuantity" v-if="columns[8].visible" />
|
||||
<el-table-column label="申请数量" align="center" prop="applicationQuantity" v-if="columns[9].visible" />
|
||||
<el-table-column label="礼品金额" align="center" prop="giftAmount" v-if="columns[10].visible" />
|
||||
<el-table-column label="排序号" align="center" prop="sortOrder" v-if="columns[11].visible" />
|
||||
<el-table-column label="备注" align="center" prop="remark" v-if="columns[12].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:crmGiftApplyDetail: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:crmGiftApplyDetail: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="crmGiftApplyDetailFormRef" :model="form" :rules="rules" label-width="120px">
|
||||
<el-form-item label="申请单ID" prop="applicationId">
|
||||
<el-input v-model="form.applicationId" placeholder="请输入申请单ID" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品ID" prop="giftId">
|
||||
<el-input v-model="form.giftId" placeholder="请输入礼品ID" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品编码" prop="giftCode">
|
||||
<el-input v-model="form.giftCode" placeholder="请输入礼品编码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品名称" prop="giftName">
|
||||
<el-input v-model="form.giftName" placeholder="请输入礼品名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="规格型号" prop="specification">
|
||||
<el-input v-model="form.specification" placeholder="请输入规格型号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="单价(含税)" prop="unitPrice">
|
||||
<el-input v-model="form.unitPrice" placeholder="请输入单价(含税)" />
|
||||
</el-form-item>
|
||||
<el-form-item label="库存数量" prop="inventoryQuantity">
|
||||
<el-input v-model="form.inventoryQuantity" placeholder="请输入库存数量" />
|
||||
</el-form-item>
|
||||
<el-form-item label="申请数量" prop="applicationQuantity">
|
||||
<el-input v-model="form.applicationQuantity" placeholder="请输入申请数量" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品金额" prop="giftAmount">
|
||||
<el-input v-model="form.giftAmount" placeholder="请输入礼品金额" />
|
||||
</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" type="textarea" 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="CrmGiftApplyDetail" lang="ts">
|
||||
import {
|
||||
addCrmGiftApplyDetail,
|
||||
delCrmGiftApplyDetail,
|
||||
getCrmGiftApplyDetail,
|
||||
listCrmGiftApplyDetail,
|
||||
updateCrmGiftApplyDetail
|
||||
} from '@/api/oa/crm/crmGiftApplyDetail';
|
||||
import { CrmGiftApplyDetailForm, CrmGiftApplyDetailQuery, CrmGiftApplyDetailVO } from '@/api/oa/crm/crmGiftApplyDetail/types';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
|
||||
const crmGiftApplyDetailList = ref<CrmGiftApplyDetailVO[]>([]);
|
||||
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 crmGiftApplyDetailFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
// 列显隐信息
|
||||
const columns = ref<FieldOption[]>([
|
||||
{ key: 0, label: `礼品申请明细ID`, visible: true },
|
||||
{ key: 1, label: `租户编号`, visible: true },
|
||||
{ key: 2, label: `申请单ID`, visible: true },
|
||||
{ key: 3, label: `礼品ID`, visible: true },
|
||||
{ key: 4, label: `礼品编码`, visible: true },
|
||||
{ key: 5, label: `礼品名称`, visible: true },
|
||||
{ key: 6, label: `规格型号`, visible: true },
|
||||
{ key: 7, label: `单价(含税)`, visible: true },
|
||||
{ key: 8, label: `库存数量`, visible: true },
|
||||
{ key: 9, label: `申请数量`, visible: true },
|
||||
{ key: 10, label: `礼品金额`, visible: true },
|
||||
{ key: 11, label: `排序号`, visible: true },
|
||||
{ key: 12, label: `备注`, visible: true },
|
||||
{ key: 13, label: `删除标志`, visible: true },
|
||||
{ key: 14, label: `创建部门`, visible: true },
|
||||
{ key: 15, label: `创建者`, visible: true },
|
||||
{ key: 16, label: `创建时间`, visible: true },
|
||||
{ key: 17, label: `更新者`, visible: true },
|
||||
{ key: 18, label: `更新时间`, visible: true }
|
||||
]);
|
||||
|
||||
const initFormData: CrmGiftApplyDetailForm = {
|
||||
detailId: undefined,
|
||||
applicationId: undefined,
|
||||
giftId: undefined,
|
||||
giftCode: undefined,
|
||||
giftName: undefined,
|
||||
specification: undefined,
|
||||
unitPrice: undefined,
|
||||
inventoryQuantity: undefined,
|
||||
applicationQuantity: undefined,
|
||||
giftAmount: undefined,
|
||||
sortOrder: undefined,
|
||||
remark: undefined
|
||||
};
|
||||
const data = reactive<PageData<CrmGiftApplyDetailForm, CrmGiftApplyDetailQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
applicationId: undefined,
|
||||
giftId: undefined,
|
||||
giftCode: undefined,
|
||||
giftName: undefined,
|
||||
specification: undefined,
|
||||
unitPrice: undefined,
|
||||
inventoryQuantity: undefined,
|
||||
applicationQuantity: undefined,
|
||||
giftAmount: undefined,
|
||||
sortOrder: undefined,
|
||||
params: {}
|
||||
},
|
||||
rules: {
|
||||
detailId: [{ required: true, message: '礼品申请明细ID不能为空', trigger: 'blur' }],
|
||||
applicationId: [{ required: true, message: '申请单ID不能为空', trigger: 'blur' }],
|
||||
giftId: [{ required: true, message: '礼品ID不能为空', trigger: 'blur' }],
|
||||
applicationQuantity: [{ required: true, message: '申请数量不能为空', trigger: 'blur' }]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询礼品申请明细列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listCrmGiftApplyDetail(queryParams.value);
|
||||
crmGiftApplyDetailList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
crmGiftApplyDetailFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: CrmGiftApplyDetailVO[]) => {
|
||||
ids.value = selection.map((item) => item.detailId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加礼品申请明细';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: CrmGiftApplyDetailVO) => {
|
||||
reset();
|
||||
const _detailId = row?.detailId || ids.value[0];
|
||||
const res = await getCrmGiftApplyDetail(_detailId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改礼品申请明细';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
crmGiftApplyDetailFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.detailId) {
|
||||
await updateCrmGiftApplyDetail(form.value).finally(() => (buttonLoading.value = false));
|
||||
} else {
|
||||
await addCrmGiftApplyDetail(form.value).finally(() => (buttonLoading.value = false));
|
||||
}
|
||||
proxy?.$modal.msgSuccess('操作成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: CrmGiftApplyDetailVO) => {
|
||||
const _detailIds = row?.detailId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除礼品申请明细编号为"' + _detailIds + '"的数据项?').finally(() => (loading.value = false));
|
||||
await delCrmGiftApplyDetail(_detailIds);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download(
|
||||
'oa/crm/crmGiftApplyDetail/export',
|
||||
{
|
||||
...queryParams.value
|
||||
},
|
||||
`crmGiftApplyDetail_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
});
|
||||
</script>
|
||||
@ -0,0 +1,284 @@
|
||||
<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="giftCode">
|
||||
<el-input v-model="queryParams.giftCode" placeholder="请输入礼品编码" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品名称" prop="giftName">
|
||||
<el-input v-model="queryParams.giftName" 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:crmGiftInfo: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:crmGiftInfo: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:crmGiftInfo:remove']"
|
||||
>删除</el-button
|
||||
>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['oa/crm:crmGiftInfo: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="crmGiftInfoList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column type="index" label="序号" width="60" align="center" />
|
||||
<el-table-column label="礼品编码" align="center" prop="giftCode" min-width="120" v-if="columns[0].visible" />
|
||||
<el-table-column label="礼品名称" align="center" prop="giftName" min-width="150" v-if="columns[1].visible" />
|
||||
<el-table-column label="规格型号" align="center" prop="specification" min-width="120" v-if="columns[2].visible" />
|
||||
<el-table-column label="采购单价" align="center" prop="unitPrice" width="120" v-if="columns[3].visible">
|
||||
<template #default="scope">
|
||||
<span>{{ scope.row.unitPrice ? '¥' + scope.row.unitPrice : '-' }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="库存数量" align="center" prop="inventoryQuantity" width="100" v-if="columns[4].visible" />
|
||||
<el-table-column label="备注" align="center" prop="remark" min-width="150" show-overflow-tooltip v-if="columns[5].visible" />
|
||||
<el-table-column label="操作" align="center" fixed="right" width="120" 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:crmGiftInfo: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:crmGiftInfo: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="crmGiftInfoFormRef" :model="form" :rules="rules" label-width="120px">
|
||||
<el-form-item label="礼品编码" prop="giftCode">
|
||||
<el-input v-model="form.giftCode" placeholder="请输入礼品编码" />
|
||||
</el-form-item>
|
||||
<el-form-item label="礼品名称" prop="giftName">
|
||||
<el-input v-model="form.giftName" placeholder="请输入礼品名称" />
|
||||
</el-form-item>
|
||||
<el-form-item label="规格型号" prop="specification">
|
||||
<el-input v-model="form.specification" placeholder="请输入规格型号" />
|
||||
</el-form-item>
|
||||
<el-form-item label="采购单价(含税)" prop="unitPrice">
|
||||
<el-input-number v-model="form.unitPrice" :min="0" :precision="2" placeholder="请输入采购单价" style="width: 100%" />
|
||||
</el-form-item>
|
||||
<el-form-item label="单位" prop="unitId">
|
||||
<el-select v-model="form.unitId" placeholder="请选择单位" filterable clearable style="width: 100%">
|
||||
<el-option v-for="unit in unitList" :key="unit.unitId" :label="unit.unitName" :value="unit.unitId" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="库存数量" prop="inventoryQuantity">
|
||||
<el-input-number v-model="form.inventoryQuantity" :min="0" :precision="0" placeholder="请输入库存数量" style="width: 100%" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" 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="CrmGiftInfo" lang="ts">
|
||||
import { addCrmGiftInfo, delCrmGiftInfo, getCrmGiftInfo, listCrmGiftInfo, updateCrmGiftInfo } from '@/api/oa/crm/crmGiftInfo';
|
||||
import { CrmGiftInfoForm, CrmGiftInfoQuery, CrmGiftInfoVO } from '@/api/oa/crm/crmGiftInfo/types';
|
||||
import { getBaseUnitInfoList } from '@/api/oa/base/unitInfo';
|
||||
import { BaseUnitInfoVO } from '@/api/oa/base/unitInfo/types';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
|
||||
const crmGiftInfoList = ref<CrmGiftInfoVO[]>([]);
|
||||
const unitList = ref<BaseUnitInfoVO[]>([]);
|
||||
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 crmGiftInfoFormRef = 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: true },
|
||||
{ key: 3, label: `采购单价`, visible: true },
|
||||
{ key: 4, label: `库存数量`, visible: true },
|
||||
{ key: 5, label: `备注`, visible: true }
|
||||
]);
|
||||
|
||||
const initFormData: CrmGiftInfoForm = {
|
||||
giftId: undefined,
|
||||
giftCode: undefined,
|
||||
giftName: undefined,
|
||||
specification: undefined,
|
||||
unitPrice: undefined,
|
||||
unitId: undefined,
|
||||
inventoryQuantity: undefined,
|
||||
remark: undefined
|
||||
};
|
||||
const data = reactive<PageData<CrmGiftInfoForm, CrmGiftInfoQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
giftCode: undefined,
|
||||
giftName: undefined,
|
||||
specification: undefined,
|
||||
unitPrice: undefined,
|
||||
unitId: undefined,
|
||||
inventoryQuantity: undefined,
|
||||
params: {}
|
||||
},
|
||||
rules: {
|
||||
giftCode: [{ required: true, message: '礼品编码不能为空', trigger: 'blur' }],
|
||||
giftName: [{ required: true, message: '礼品名称不能为空', trigger: 'blur' }]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询礼品信息列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listCrmGiftInfo(queryParams.value);
|
||||
crmGiftInfoList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
crmGiftInfoFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: CrmGiftInfoVO[]) => {
|
||||
ids.value = selection.map((item) => item.giftId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加礼品信息';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: CrmGiftInfoVO) => {
|
||||
reset();
|
||||
const _giftId = row?.giftId || ids.value[0];
|
||||
const res = await getCrmGiftInfo(_giftId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改礼品信息';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
crmGiftInfoFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.giftId) {
|
||||
await updateCrmGiftInfo(form.value).finally(() => (buttonLoading.value = false));
|
||||
} else {
|
||||
await addCrmGiftInfo(form.value).finally(() => (buttonLoading.value = false));
|
||||
}
|
||||
proxy?.$modal.msgSuccess('操作成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: CrmGiftInfoVO) => {
|
||||
const _giftIds = row?.giftId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除礼品信息编号为"' + _giftIds + '"的数据项?').finally(() => (loading.value = false));
|
||||
await delCrmGiftInfo(_giftIds);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download(
|
||||
'oa/crm/crmGiftInfo/export',
|
||||
{
|
||||
...queryParams.value
|
||||
},
|
||||
`crmGiftInfo_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
};
|
||||
|
||||
/** 加载单位列表 */
|
||||
const loadUnitList = async () => {
|
||||
try {
|
||||
const res = await getBaseUnitInfoList({ activeFlag: '1' });
|
||||
unitList.value = res.data || [];
|
||||
} catch (error) {
|
||||
console.error('加载单位列表失败:', error);
|
||||
}
|
||||
};
|
||||
|
||||
onMounted(async () => {
|
||||
await loadUnitList();
|
||||
getList();
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in New Issue