From fa1c5afdbb7a4f9f8c2ed303749a283173939bbe Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 5 Aug 2026 11:58:25 +0800 Subject: [PATCH] =?UTF-8?q?feat(accounting):=20=E6=B7=BB=E5=8A=A0=E5=BA=94?= =?UTF-8?q?=E4=BB=98=E8=B4=A6=E6=AC=BE=E7=94=9F=E6=88=90=E6=A0=87=E5=BF=97?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在会计实体结构体中新增 genPayableFlag 字段 - 该字段用于标识是否生成应付账款记录 - 为后续应付账款功能模块提供数据支持 --- erp/accounting.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/accounting.go b/erp/accounting.go index 58bbb3f..0abf2f8 100644 --- a/erp/accounting.go +++ b/erp/accounting.go @@ -146,6 +146,7 @@ type ReplyAccountingInfo struct { TotalVolume decimal.Decimal `json:"totalVolume"` TotalGrossWeight decimal.Decimal `json:"totalGrossWeight"` TotalNetWeight decimal.Decimal `json:"totalNetWeight"` + GenPayableFlag bool `json:"genPayableFlag"` } // Info @TITLE 详情