|
@@ -83,9 +83,9 @@ func CreateProductOrder(templateUser user.User, productId int, orderNo string) (
|
|
|
return
|
|
|
}
|
|
|
//校验是否有相同待支付的产品订单
|
|
|
- var exisitOrder orderService.ProductOrderDTO
|
|
|
- exisitOrder, err = orderService.GetUserOrderByProduct(productId, templateUser.Id)
|
|
|
- if (err != nil && !errors.Is(err, gorm.ErrRecordNotFound)) || exisitOrder.Status == productOrderStatusMap[orderDao.OrderStatusPending] {
|
|
|
+ var existOrder orderService.ProductOrderDTO
|
|
|
+ existOrder, err = orderService.GetUserOrderByProduct(productId, templateUser.Id)
|
|
|
+ if (err != nil && !errors.Is(err, gorm.ErrRecordNotFound)) || existOrder.Status == productOrderStatusMap[orderDao.OrderStatusPending] {
|
|
|
err = exception.NewWithException(exception.DuplicateSubscribe, "当前产品有正在进行中的订单,请勿重复下单")
|
|
|
return
|
|
|
}
|