diff --git a/api/service/export.go b/api/service/export.go index 86e075d..83bd483 100644 --- a/api/service/export.go +++ b/api/service/export.go @@ -1638,7 +1638,9 @@ 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 + "(N:" + amount + ")" + productPrice := fmt.Sprintf("%d", v.ProductPrice) + product := v.ProductName + "(N:" + amount + " " + "P:" + productPrice + ")" + products = append(products, product) }