|
@@ -110,22 +110,21 @@ func GetOrderDetail(orderId int, userId int) (order ProductOrder, err error) {
|
|
|
|
|
|
func GetUnPendingOrderCount() (count int, minId int) {
|
|
|
db := models.Main()
|
|
|
- _ = db.Model(&ProductOrder{}).Select("count(*)").Where("is_deleted=0 and status=?", OrderStatusPending).Scan(&count).Error
|
|
|
+ _ = db.Model(&ProductOrder{}).Select("count(*)").Where("is_deleted=0 and status=? and expired_time <= ?", OrderStatusPending, time.Now()).Scan(&count).Error
|
|
|
_ = db.Model(&ProductOrder{}).Select("MIN(id)").Where("is_deleted=0 and status =?", OrderStatusPending).Scan(&minId).Error
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-func GetPendingOrderIds(minId int, limit int) (ids []int, latestId int) {
|
|
|
+func GetExpiredPendingOrderIds(minId int, limit int) (ids []int) {
|
|
|
db := models.Main()
|
|
|
- _ = db.Model(&ProductOrder{}).Select("id").Where("id> ? and status=? and is_deleted=0 order by id asc", minId, OrderStatusPending).Limit(limit).Scan(&ids).Error
|
|
|
- latestId = ids[0]
|
|
|
+ _ = db.Model(&ProductOrder{}).Select("id").Where("id> ? and status=? and is_deleted=0 and expired_time < ? order by id asc", minId, OrderStatusPending, time.Now()).Where("", time.Now()).Limit(limit).Scan(&ids).Error
|
|
|
return
|
|
|
}
|
|
|
|
|
|
func batchCloseOrder(ids []int) error {
|
|
|
//db := models.Main()
|
|
|
//_ = db.Model(&ProductOrder{}).Select("id").Where("id> ? and status=? and is_deleted=0 order by id asc", minId, OrderStatusPending).Limit(limit).Scan(&ids).Error
|
|
|
- //err = db.Model(&VerificationRecord{}).Where("expired_time < ?", time.Now()).Where("status =?", StatusPending).Update("status", StatusExpired).Error
|
|
|
+ //err = db.Model(&ProductOrder{}).Where("expired_time < ?", time.Now()).Where("status =?", StatusPending).Update("status", StatusExpired).Error
|
|
|
//if err != nil {
|
|
|
// logger.Error("批量过期验证码失败:%v", err)
|
|
|
//}
|