diff --git a/erp/expense.go b/erp/expense.go index 1f18127..bf058d3 100644 --- a/erp/expense.go +++ b/erp/expense.go @@ -35,6 +35,7 @@ type ExpenseSearch struct { ExpenseStaffIds []int64 // 报销人 Ik3cloudStatus int64 // ik3cloud状态 PermissionStaffIds []int64 // 权限员工id + Ik3cloudStatuses []int64 // 金蝶推送状态 } type ReplyExpenseList struct { List []ExpenseItem `json:"list"` diff --git a/erp/payable.go b/erp/payable.go index 0319068..4cbdce1 100644 --- a/erp/payable.go +++ b/erp/payable.go @@ -25,6 +25,7 @@ type PayableSearch struct { CreatedAtEnd *time.Time // 创建结束时间 IsConfirm int64 // 是否确认 PermissionStaffIds []int64 // 权限员工id + Ik3cloudStatuses []int64 // 金蝶推送状态 } type ReplyPayableList struct { List []PayableItem `json:"list"` diff --git a/erp/payment.go b/erp/payment.go index a27c5f0..76355f1 100644 --- a/erp/payment.go +++ b/erp/payment.go @@ -26,6 +26,7 @@ type PaymentSearch struct { PurchaseStaffIds []int64 // 采购人员 BankAccount string // 银行账号 BankName string // 账号名称 + Ik3cloudStatuses []int64 // 金蝶推送状态 } type ReplyPaymentList struct { Total int64 `json:"total"` diff --git a/erp/receipt.go b/erp/receipt.go index 9ba31d2..9d4e183 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -41,6 +41,7 @@ type ReceiptSearch struct { BankAccountEq *string // 结汇银行账号完全匹配 PermissionStaffIds []int64 // 权限员工id CurrencyEq *string // 币种 + Ik3cloudStatuses []int64 // 金蝶推送状态 } type ReplyReceiptList struct { List []ReceiptItem `json:"list"` diff --git a/erp/request.go b/erp/request.go index 7973fce..3546b4a 100644 --- a/erp/request.go +++ b/erp/request.go @@ -44,6 +44,7 @@ type RequestSearch struct { FactoryId int64 // 工厂筛选 FactoryName string // 工厂名称 PermissionStaffIds []int64 // 权限员工id + Ik3cloudStatuses []int64 // 金蝶推送状态 } type ReplyRequestList struct { List []RequestItem `json:"list"`