From abf3a43e9895771374b39c3a3023de01afe1ed21 Mon Sep 17 00:00:00 2001 From: kanade Date: Fri, 25 Apr 2025 14:33:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(product):=20=E6=B7=BB=E5=8A=A0=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E6=8A=A5=E5=85=B3=E5=8D=95=E4=BD=8D=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Product 结构体中添加 MeasureUnit 字段,用于表示报关单位 --- erp/accounting/product.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/accounting/product.go b/erp/accounting/product.go index aff07c4..544b2ac 100644 --- a/erp/accounting/product.go +++ b/erp/accounting/product.go @@ -86,6 +86,7 @@ type ProductEdit struct { CustomsSerial string // hs编码 CustomsName string // 报关名称 CustomsInvoiceUnit string // 开票单位 + MeasureUnit string // 报关单位 InvoiceType int64 // 开票方式 1=按净重 2=按数量 InvoiceCount decimal.Decimal // 开票数量 }