From 6eb1da80c8a94137571b87497e4f473d5e23f81e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 25 Aug 2022 17:41:55 +0800 Subject: [PATCH] 1 --- business/dao/print_temp_utils.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/business/dao/print_temp_utils.go b/business/dao/print_temp_utils.go index f1742100b..b334100cc 100644 --- a/business/dao/print_temp_utils.go +++ b/business/dao/print_temp_utils.go @@ -148,7 +148,7 @@ func MakePrintMsgOnTemp(param map[string]string, userId string) (string, error) for _, v := range strings.Split(userTemp.TempRank, ",") { switch v { - case "skuName", "skuNumber", "skuPrice", "skuAllPrice", "allSkuTypeCount", "allSkuCount", "skuUpc": + case "skuName", "skuNumber", "skuPrice", "skuAllPrice", "allSkuTypeCount", "allSkuCount", "skuUpc", "userPayMoney": continue case "goodsListDetail": printMsg += userTempMap[v] @@ -172,6 +172,8 @@ func MakePrintMsgOnTemp(param map[string]string, userId string) (string, error) printValue = append(printValue, param["allSkuTypeCount"]) printMsg += userTempMap["allSkuCount"] printValue = append(printValue, param["allSkuCount"]) + printMsg += userTempMap["userPayMoney"] + printValue = append(printValue, param["userPayMoney"]) case "businessType": if param[v] == "2" { // 是预订单 printMsg += userTempMap[v]