This commit is contained in:
邹宗楠
2022-08-25 17:41:55 +08:00
parent c612b569e0
commit 6eb1da80c8

View File

@@ -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]