feat(erp): 添加费用报销单导出类型和员工ID筛选功能

- 在ERP常量中新增费用报销单导出类型Expense
- 在OA员工服务中添加员工ID筛选字段StaffIds
- 扩展员工列表查询功能支持按员工ID精确筛选
This commit is contained in:
2026-05-14 10:41:46 +08:00
parent 451362588d
commit 4f56397820
2 changed files with 2 additions and 0 deletions

View File

@@ -71,6 +71,7 @@ const (
ExportTypeAccountingFactoryV2 = "accountingFactoryV2" // 做账工厂导出
ExportTypePaymentList = "paymentList" // 采购付款单
ExportTypeRequestList = "requestList" // 费用申请单
ExportTypeExpense = "expense" // 费用报销单
)
type BanFlag = int64 // 出舱状态

View File

@@ -120,6 +120,7 @@ type StaffSearch struct {
DepartmentIds []int64 // 部门筛选
DepartmentStaffIds []int64 // 部门员工id
RoleIds []int64 // 角色筛选
StaffIds []int64 // 员工id
}
type ReplyStaffList struct {
List []StaffItem `json:"list"` // 员工列表