From 8947cecd820ee53340ee285cb68851766e81c3c7 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 19 Aug 2026 14:56:30 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E9=87=91?= =?UTF-8?q?=E8=9D=B6=E6=8E=A8=E9=80=81=E6=97=B6=E9=97=B4=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E5=88=B0=E5=90=84=E4=B8=AAERP=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在expense模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在payable模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在payment模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在receipt模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在receivable模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 - 在request模块中添加Ik3cloudAtStart和Ik3cloudAtEnd字段 --- erp/expense.go | 2 ++ erp/payable.go | 2 ++ erp/payment.go | 10 ++++++---- erp/receipt.go | 2 ++ erp/receivable.go | 2 ++ erp/request.go | 2 ++ 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/erp/expense.go b/erp/expense.go index 9ec3a32..2f627d9 100644 --- a/erp/expense.go +++ b/erp/expense.go @@ -36,6 +36,8 @@ type ExpenseSearch struct { Ik3cloudStatus int64 // ik3cloud状态 PermissionStaffIds []int64 // 权限员工id Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyExpenseList struct { List []ExpenseItem `json:"list"` diff --git a/erp/payable.go b/erp/payable.go index 4cbdce1..b318323 100644 --- a/erp/payable.go +++ b/erp/payable.go @@ -26,6 +26,8 @@ type PayableSearch struct { IsConfirm int64 // 是否确认 PermissionStaffIds []int64 // 权限员工id Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyPayableList struct { List []PayableItem `json:"list"` diff --git a/erp/payment.go b/erp/payment.go index 76355f1..8cdcd50 100644 --- a/erp/payment.go +++ b/erp/payment.go @@ -23,10 +23,12 @@ type PaymentSearch struct { AccountingSerial string // 做账合同号 CreatedAtStart *time.Time CreatedAtEnd *time.Time - PurchaseStaffIds []int64 // 采购人员 - BankAccount string // 银行账号 - BankName string // 账号名称 - Ik3cloudStatuses []int64 // 金蝶推送状态 + PurchaseStaffIds []int64 // 采购人员 + BankAccount string // 银行账号 + BankName string // 账号名称 + Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyPaymentList struct { Total int64 `json:"total"` diff --git a/erp/receipt.go b/erp/receipt.go index 9d4e183..73dedb4 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -42,6 +42,8 @@ type ReceiptSearch struct { PermissionStaffIds []int64 // 权限员工id CurrencyEq *string // 币种 Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyReceiptList struct { List []ReceiptItem `json:"list"` diff --git a/erp/receivable.go b/erp/receivable.go index 65874e1..7e088dc 100644 --- a/erp/receivable.go +++ b/erp/receivable.go @@ -25,6 +25,8 @@ type ReceivableSearch struct { CreatedAtEnd *time.Time // 创建结束时间 PermissionStaffIds []int64 // 权限员工id Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyReceivableList struct { List []ReceivableItem `json:"list"` diff --git a/erp/request.go b/erp/request.go index 3546b4a..814653b 100644 --- a/erp/request.go +++ b/erp/request.go @@ -45,6 +45,8 @@ type RequestSearch struct { FactoryName string // 工厂名称 PermissionStaffIds []int64 // 权限员工id Ik3cloudStatuses []int64 // 金蝶推送状态 + Ik3cloudAtStart *time.Time // 金蝶推送开始时间 + Ik3cloudAtEnd *time.Time // 金蝶推送结束时间 } type ReplyRequestList struct { List []RequestItem `json:"list"`