From ba571fa0f1f2b5699baa89258178eed3f3fcefe9 Mon Sep 17 00:00:00 2001 From: kanade Date: Thu, 30 Oct 2025 14:57:08 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E5=8F=91?= =?UTF-8?q?=E7=A5=A8=E5=BA=8F=E5=88=97=E5=8F=B7=E5=AD=97=E6=AE=B5-=20?= =?UTF-8?q?=E5=9C=A8=E4=BC=9A=E8=AE=A1=E6=9C=8D=E5=8A=A1=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E4=BD=93=E4=B8=AD=E6=96=B0=E5=A2=9E=20InvoiceSerial=20?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=20-=20=E6=89=A9=E5=B1=95=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=E4=BB=A5=E6=94=AF=E6=8C=81=E6=8C=89=E5=8F=91?= =?UTF-8?q?=E7=A5=A8=E5=BA=8F=E5=88=97=E5=8F=B7=E6=90=9C=E7=B4=A2-=20?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=20JSON=20=E6=A0=87=E7=AD=BE=E4=BB=A5?= =?UTF-8?q?=E7=A1=AE=E4=BF=9D=E6=AD=A3=E7=A1=AE=E7=9A=84=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=8F=E5=88=97=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- erp/accounting.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erp/accounting.go b/erp/accounting.go index c1c0ffa..79426af 100644 --- a/erp/accounting.go +++ b/erp/accounting.go @@ -39,6 +39,7 @@ type AccountingItem struct { Id int64 `json:"id"` AccountingSerial string `json:"accountingSerial"` InvoiceDate *time.Time `json:"invoiceDate"` + InvoiceSerial string `json:"invoiceSerial"` CreatedAt *time.Time `json:"createdAt"` CustomShortName string `json:"customShortName"` CustomName string `json:"customName"` @@ -116,6 +117,7 @@ type ReplyAccountingInfo struct { CustomName string `json:"customName"` InvoiceDate *time.Time `json:"invoiceDate"` InvoiceDateEnd *time.Time `json:"invoiceDateEnd"` + InvoiceSerial string `json:"invoiceSerial"` AccountingSerial string `json:"accountingSerial"` Remark string `json:"remark"` WorkflowId int64 `json:"workflowId"`