From fb053ec48c308f7f0ec5ff4b873b290a6cae9eb7 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 17 Dec 2025 10:14:17 +0800 Subject: [PATCH] =?UTF-8?q?fix(erp):=20=E6=9B=B4=E6=96=B0=20receivable=20?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E4=B8=AD=E7=9A=84=20Ik3cloudStatus=20?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将 Ik3cloudStatus 的类型从 constant.Flag 更改为 Flag - 确保与系统其他部分的一致性 - 避免潜在的类型不匹配问题 --- erp/receivable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp/receivable.go b/erp/receivable.go index 3cdd244..8fc2cca 100644 --- a/erp/receivable.go +++ b/erp/receivable.go @@ -40,7 +40,7 @@ type ReceivableItem struct { CurrencyRate decimal.Decimal `json:"currencyRate"` CurrencySymbol string `json:"currencySymbol"` CreatedStaffID int64 `json:"createdStaffID"` - Ik3cloudStatus constant.Flag `json:"ik3CloudStatus"` + Ik3cloudStatus Flag `json:"ik3CloudStatus"` CreatedAt *time.Time `json:"createdAt"` UpdatedAt *time.Time `json:"updatedAt"` }