到处药品订单增加药品名称

This commit is contained in:
wucongxing8150 2024-02-27 17:17:50 +08:00
parent a5114ab0aa
commit 2769e1d28e

View File

@ -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)
}