From 2769e1d28e360c182730789f242459e377ed53d1 Mon Sep 17 00:00:00 2001 From: wucongxing8150 <815046773@qq.com> Date: Tue, 27 Feb 2024 17:17:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=B0=E5=A4=84=E8=8D=AF=E5=93=81=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=A2=9E=E5=8A=A0=E8=8D=AF=E5=93=81=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/service/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/service/export.go b/api/service/export.go index 0844c99..60a4dad 100644 --- a/api/service/export.go +++ b/api/service/export.go @@ -1584,7 +1584,7 @@ func (r *ExportService) OrderProduct(d []*model.OrderProduct) (string, error) { var products []string for _, v := range orderProductItems { amount := fmt.Sprintf("%d", v.Amount) - product := v.ProductName + "(" + amount + ")" + product := v.ProductName + "(数量:" + amount + ")" products = append(products, product) }