diff --git a/db/db_order.go b/db/db_order.go index e9a1d77..879fbf9 100644 --- a/db/db_order.go +++ b/db/db_order.go @@ -23,11 +23,12 @@ func OrderListCountByUIDByOrderTypeByTime(Db *xorm.Engine, uid, buyType, state, fmt.Println(str) total, _ := Db.Where("uid = ? AND confirm_at > ? AND confirm_at < ? and settle_at=0", uid, stime, etime).In("state", state).Count(&model.OrdList{}) total1, _ := Db.Where("uid = ? AND confirm_at > ? AND confirm_at < ? and settle_at>0", uid, stime, etime).Count(&model.OrdList{}) + total3, _ := Db.Where("uid = ? AND settle_at > ? AND settle_at < ? and confirm_at=0", uid, stime, etime).Count(&model.OrdList{}) total2, _ := Db.Where("uid = ? AND confirm_at > ? AND confirm_at < ? and state=?", uid, stime, etime, 1).Count(&model.PrivilegeCardOrd{}) fmt.Println(total) - return total + total1 + total2, nil + return total + total1 + total2 + total3, nil } // 查询用户某时间段内某状态的佣金(ord_id => amount)