From f71c5f6be1bf8d6c21da645a4befa6d2983fb3b8 Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 30 Apr 2025 15:04:46 +0800 Subject: [PATCH] =?UTF-8?q?feat(product):=20=E6=B7=BB=E5=8A=A0=E4=BA=A7?= =?UTF-8?q?=E5=93=81=20PO=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 ProductAdd 结构体中增加 PO 字段,用于存储采购订单号 - 此修改旨在满足客户定制需求,提高产品管理的灵活性和准确性 --- erp/sale/product.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/sale/product.go b/erp/sale/product.go index 49e2abb..3a2cff7 100644 --- a/erp/sale/product.go +++ b/erp/sale/product.go @@ -150,6 +150,7 @@ type ArgsProductAdd struct { type ProductAdd struct { ProductId int64 // 产品id Serial string // 货号 + PO string // PO CustomSerial string // 客户货号 Name string // 中文品名 EngName string // 英文品名