|
@@ -1,6 +1,7 @@
|
|
|
package models
|
|
|
|
|
|
import (
|
|
|
+ "fmt"
|
|
|
//"hongze/hongze_admin/models"
|
|
|
"github.com/beego/beego/v2/client/orm"
|
|
|
"time"
|
|
@@ -50,7 +51,7 @@ func GetCygxActivitySpecialTripList(condition string, pars []interface{}) (item
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//获取某一用户的报名的数量
|
|
|
+// 获取某一用户的报名的数量
|
|
|
func GetUserActivitySpecialTripCount(uid, activityId int) (count int, err error) {
|
|
|
sqlCount := `SELECT COUNT(1) AS count FROM cygx_activity_special_trip WHERE user_id=? AND activity_id =? `
|
|
|
o := orm.NewOrm()
|
|
@@ -58,7 +59,7 @@ func GetUserActivitySpecialTripCount(uid, activityId int) (count int, err error)
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//获取某一活动的报名的数量
|
|
|
+// 获取某一活动的报名的数量
|
|
|
func GetActivitySpecialTripCountByActivityId(condition string, pars []interface{}) (count int, err error) {
|
|
|
sqlCount := `SELECT COUNT(1) AS count FROM cygx_activity_special_trip as t INNER JOIN wx_user as u on u.user_id = t.user_id WHERE 1 = 1 ` + condition
|
|
|
o := orm.NewOrm()
|
|
@@ -66,7 +67,7 @@ func GetActivitySpecialTripCountByActivityId(condition string, pars []interface{
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//获取某一活动的报名的数量 (同时关联活动类型进行获取)
|
|
|
+// 获取某一活动的报名的数量 (同时关联活动类型进行获取)
|
|
|
func GetActivitySpecialTripCountByActivitySpecial(condition string, pars []interface{}) (count int, err error) {
|
|
|
sqlCount := ` SELECT COUNT(1) AS count
|
|
|
FROM
|
|
@@ -79,7 +80,7 @@ func GetActivitySpecialTripCountByActivitySpecial(condition string, pars []inter
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//获取空降的公司报名的记录
|
|
|
+// 获取空降的公司报名的记录
|
|
|
func GetActivitySpecialTripAirborneCountByActivitySpecial(condition string, pars []interface{}) (count int, err error) {
|
|
|
sqlCount := ` SELECT COUNT(1) AS count
|
|
|
FROM
|
|
@@ -92,14 +93,47 @@ func GetActivitySpecialTripAirborneCountByActivitySpecial(condition string, pars
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//添加
|
|
|
+// 添加
|
|
|
func AddCygxActivitySpecialTrip(item *CygxActivitySpecialTrip) (err error) {
|
|
|
- o := orm.NewOrm()
|
|
|
+ o, err := orm.NewOrm().Begin()
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ defer func() {
|
|
|
+ fmt.Println(err)
|
|
|
+ if err == nil {
|
|
|
+ o.Commit()
|
|
|
+ } else {
|
|
|
+ o.Rollback()
|
|
|
+ }
|
|
|
+ }()
|
|
|
_, err = o.Insert(item)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ //itemBill := new(CygxActivitySpecialTripBill)
|
|
|
+ //itemBill.UserId = item.UserId
|
|
|
+ //itemBill.ActivityId = item.ActivityId
|
|
|
+ //itemBill.CreateTime = time.Now()
|
|
|
+ //itemBill.Mobile = item.Mobile
|
|
|
+ //itemBill.Email = item.Email
|
|
|
+ //itemBill.CompanyId = item.CompanyId
|
|
|
+ //itemBill.CompanyName = item.CompanyName
|
|
|
+ //itemBill.RealName = item.RealName
|
|
|
+ //itemBill.Source = 1
|
|
|
+ //itemBill.BillDetailed = -1 // 流水减一
|
|
|
+ //itemBill.DoType = 1
|
|
|
+ //itemBill.RegisterPlatform = 1
|
|
|
+ //itemBill.ChartPermissionId = itemActivity.ChartPermissionId
|
|
|
+ //
|
|
|
+ //_, err = o.Insert(itemBill)
|
|
|
+ //if err != nil {
|
|
|
+ // return
|
|
|
+ //}
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//取消
|
|
|
+// 取消
|
|
|
func CancelActivitySpecialTrip(uid int, item *CygxActivitySpecialDetail) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `DELETE FROM cygx_activity_special_trip WHERE user_id=? AND activity_id=? `
|
|
@@ -107,7 +141,7 @@ func CancelActivitySpecialTrip(uid int, item *CygxActivitySpecialDetail) (err er
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-//CancelActivitySpecialTripIsValid 处理活动报名是否有效
|
|
|
+// CancelActivitySpecialTripIsValid 处理活动报名是否有效
|
|
|
func CancelActivitySpecialTripIsValid(isValid, activityId, userId int) (err error) {
|
|
|
sql := ` UPDATE cygx_activity_special_trip SET is_valid= ?,is_cancel = 1 WHERE activity_id = ? AND user_id = ? `
|
|
|
o := orm.NewOrm()
|