Browse Source

bug修改

wangfei 6 years ago
parent
commit
983782cbc8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      service/goods/orders.go

+ 1
- 1
service/goods/orders.go View File

@@ -90,7 +90,7 @@ func (s *GoodsServ) ConfirmOrder(ordersID, customercouponid, remark string) erro
90 90
 		return errors.New("订单已付款,请勿重复付款!")
91 91
 	}
92 92
 
93
-	if info.Remark == "" {
93
+	if info.Remark != "" {
94 94
 		info.Remark = remark
95 95
 	}
96 96