From ed845dfa62d88cdc4d52c11d0a990d12c1897bcf Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 23 Dec 2025 11:14:55 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E5=BA=94?= =?UTF-8?q?=E4=BB=98=E8=B4=A6=E6=AC=BE=E7=9B=B8=E5=85=B3=E5=BA=8F=E5=88=97?= =?UTF-8?q?=E5=8F=B7=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 PayableItem 结构体中添加 InvoiceSerial 字段 - 在 PayableProductItem 结构体中添加 PiSerial 字段 --- erp/payable.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erp/payable.go b/erp/payable.go index 949209f..12812a9 100644 --- a/erp/payable.go +++ b/erp/payable.go @@ -30,6 +30,7 @@ type ReplyPayableList struct { type PayableItem struct { Id int64 `json:"id"` PayableSerial string `json:"payableSerial"` + InvoiceSerial string `json:"invoiceSerial"` AccountingSerial string `json:"accountingSerial"` Amount decimal.Decimal `json:"amount"` Currency string `json:"currency"` @@ -73,6 +74,7 @@ type ReplyPayableInfo struct { type PayableProductItem struct { Id int64 `json:"id"` AccountingProductId int64 `json:"accountingProductId"` + PiSerial string `json:"piSerial"` FactoryName string `json:"factoryName"` Name string `json:"name"` Serial string `json:"serial"`