feat(erp): 添加金蝶推送状态字段到多个ERP模块

- 在expense.go中添加Ik3cloudStatuses字段用于报销单金蝶推送状态
- 在payable.go中添加Ik3cloudStatuses字段用于应付单金蝶推送状态
- 在payment.go中添加Ik3cloudStatuses字段用于付款单金蝶推送状态
- 在receipt.go中添加Ik3cloudStatuses字段用于收款单金蝶推送状态
- 在request.go中添加Ik3cloudStatuses字段用于申请单金蝶推送状态
This commit is contained in:
2026-07-24 11:32:00 +08:00
parent 9a7cfac480
commit 248ad5fc22
5 changed files with 5 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ type ExpenseSearch struct {
ExpenseStaffIds []int64 // 报销人 ExpenseStaffIds []int64 // 报销人
Ik3cloudStatus int64 // ik3cloud状态 Ik3cloudStatus int64 // ik3cloud状态
PermissionStaffIds []int64 // 权限员工id PermissionStaffIds []int64 // 权限员工id
Ik3cloudStatuses []int64 // 金蝶推送状态
} }
type ReplyExpenseList struct { type ReplyExpenseList struct {
List []ExpenseItem `json:"list"` List []ExpenseItem `json:"list"`

View File

@@ -25,6 +25,7 @@ type PayableSearch struct {
CreatedAtEnd *time.Time // 创建结束时间 CreatedAtEnd *time.Time // 创建结束时间
IsConfirm int64 // 是否确认 IsConfirm int64 // 是否确认
PermissionStaffIds []int64 // 权限员工id PermissionStaffIds []int64 // 权限员工id
Ik3cloudStatuses []int64 // 金蝶推送状态
} }
type ReplyPayableList struct { type ReplyPayableList struct {
List []PayableItem `json:"list"` List []PayableItem `json:"list"`

View File

@@ -26,6 +26,7 @@ type PaymentSearch struct {
PurchaseStaffIds []int64 // 采购人员 PurchaseStaffIds []int64 // 采购人员
BankAccount string // 银行账号 BankAccount string // 银行账号
BankName string // 账号名称 BankName string // 账号名称
Ik3cloudStatuses []int64 // 金蝶推送状态
} }
type ReplyPaymentList struct { type ReplyPaymentList struct {
Total int64 `json:"total"` Total int64 `json:"total"`

View File

@@ -41,6 +41,7 @@ type ReceiptSearch struct {
BankAccountEq *string // 结汇银行账号完全匹配 BankAccountEq *string // 结汇银行账号完全匹配
PermissionStaffIds []int64 // 权限员工id PermissionStaffIds []int64 // 权限员工id
CurrencyEq *string // 币种 CurrencyEq *string // 币种
Ik3cloudStatuses []int64 // 金蝶推送状态
} }
type ReplyReceiptList struct { type ReplyReceiptList struct {
List []ReceiptItem `json:"list"` List []ReceiptItem `json:"list"`

View File

@@ -44,6 +44,7 @@ type RequestSearch struct {
FactoryId int64 // 工厂筛选 FactoryId int64 // 工厂筛选
FactoryName string // 工厂名称 FactoryName string // 工厂名称
PermissionStaffIds []int64 // 权限员工id PermissionStaffIds []int64 // 权限员工id
Ik3cloudStatuses []int64 // 金蝶推送状态
} }
type ReplyRequestList struct { type ReplyRequestList struct {
List []RequestItem `json:"list"` List []RequestItem `json:"list"`