feat(erp): 添加费用报销单导出类型和员工ID筛选功能
- 在ERP常量中新增费用报销单导出类型Expense - 在OA员工服务中添加员工ID筛选字段StaffIds - 扩展员工列表查询功能支持按员工ID精确筛选
This commit is contained in:
@@ -71,6 +71,7 @@ const (
|
||||
ExportTypeAccountingFactoryV2 = "accountingFactoryV2" // 做账工厂导出
|
||||
ExportTypePaymentList = "paymentList" // 采购付款单
|
||||
ExportTypeRequestList = "requestList" // 费用申请单
|
||||
ExportTypeExpense = "expense" // 费用报销单
|
||||
)
|
||||
|
||||
type BanFlag = int64 // 出舱状态
|
||||
|
||||
@@ -120,6 +120,7 @@ type StaffSearch struct {
|
||||
DepartmentIds []int64 // 部门筛选
|
||||
DepartmentStaffIds []int64 // 部门员工id
|
||||
RoleIds []int64 // 角色筛选
|
||||
StaffIds []int64 // 员工id
|
||||
}
|
||||
type ReplyStaffList struct {
|
||||
List []StaffItem `json:"list"` // 员工列表
|
||||
|
||||
Reference in New Issue
Block a user