|
@@ -66,7 +66,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
if publishStartDate != "" && publishEndDate != "" {
|
|
|
- condition += " AND a.publish_time >= ?"
|
|
|
+ condition += " AND publish_time >= ?"
|
|
|
publishStartTime, err := time.Parse(utils.FormatDate, publishStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -76,7 +76,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, publishStartDateStr)
|
|
|
|
|
|
- condition += " AND a.publish_time <= ?"
|
|
|
+ condition += " AND publish_time <= ?"
|
|
|
publishEndTime, err := time.Parse(utils.FormatDate, publishEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -88,7 +88,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
pars = append(pars, publishEndDateStr)
|
|
|
}
|
|
|
if pushStartDate != "" && pushEndDate != "" {
|
|
|
- condition += " AND b.push_time >= ?"
|
|
|
+ condition += " AND push_time >= ?"
|
|
|
pushStartTime, err := time.Parse(utils.FormatDate, pushStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -98,7 +98,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, pushStartDateStr)
|
|
|
|
|
|
- condition += " AND b.push_time <= ?"
|
|
|
+ condition += " AND push_time <= ?"
|
|
|
pushEndTime, err := time.Parse(utils.FormatDate, pushEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -110,7 +110,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
pars = append(pars, pushEndDateStr)
|
|
|
}
|
|
|
if keyWord != "" {
|
|
|
- condition += ` AND a.title like ? `
|
|
|
+ condition += ` AND title like ? `
|
|
|
pars = utils.GetLikeKeywordPars(pars, keyWord, 1)
|
|
|
}
|
|
|
var sortCondition string
|
|
@@ -119,9 +119,9 @@ func (this *ReportPushStatusController) List() {
|
|
|
var param, sort string
|
|
|
switch sortParam {
|
|
|
case "PublishTime":
|
|
|
- param = "a.publish_time"
|
|
|
+ param = "publish_time"
|
|
|
case "PushTime":
|
|
|
- param = "b.push_time"
|
|
|
+ param = "push_time"
|
|
|
}
|
|
|
switch sortType {
|
|
|
case "asc":
|
|
@@ -136,7 +136,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
}
|
|
|
}
|
|
|
if sortCondition == "" {
|
|
|
- sortCondition = ` ORDER BY a.publish_time DESC `
|
|
|
+ sortCondition = ` ORDER BY publish_time DESC `
|
|
|
}
|
|
|
|
|
|
classifyIdList := make([]int, 0)
|
|
@@ -166,7 +166,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
}
|
|
|
if len(classifyIdList) > 0 {
|
|
|
classifyIdList = utils.Unique(classifyIdList)
|
|
|
- condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
|
|
|
+ condition += ` AND (classify_id_first IN (%s) AND classify_id_second IN (%s) AND classify_id_third IN (%s))`
|
|
|
condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
|
|
|
pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
|
|
|
}
|
|
@@ -174,7 +174,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
if selectedIds != "" {
|
|
|
selectIdStrs := strings.Split(selectedIds, ",")
|
|
|
if len(selectIdStrs) > 0 {
|
|
|
- condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
|
|
|
+ condition += ` AND report_id NOT IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
|
|
|
pars = append(pars, selectedIds)
|
|
|
}
|
|
|
}
|
|
@@ -182,7 +182,7 @@ func (this *ReportPushStatusController) List() {
|
|
|
if selectedIds != "" {
|
|
|
selectIdStrs := strings.Split(selectedIds, ",")
|
|
|
if len(selectIdStrs) > 0 {
|
|
|
- condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
|
|
|
+ condition += ` AND report_id IN (` + utils.GetOrmReplaceHolder(len(selectIdStrs)) + `)`
|
|
|
pars = append(pars, selectedIds)
|
|
|
}
|
|
|
}
|
|
@@ -245,19 +245,6 @@ func (this *ReportPushStatusController) PushCancel() {
|
|
|
br.ErrMsg = "取消推送失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- } else {
|
|
|
- reportPush := &models.ReportPushStatus{}
|
|
|
- reportPush.ReportId = req.ReportId
|
|
|
- reportPush.ReportType = 1
|
|
|
- reportPush.State = 0
|
|
|
- reportPush.CreateTime = time.Now()
|
|
|
- reportPush.ModifyTime = time.Now()
|
|
|
- _, err = reportPush.Insert()
|
|
|
- if err != nil {
|
|
|
- br.Msg = "取消推送失败"
|
|
|
- br.ErrMsg = "新增推送记录失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
br.Msg = "取消推送成功"
|
|
@@ -311,20 +298,6 @@ func (this *ReportPushStatusController) Push() {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
- } else {
|
|
|
- reportPush := &models.ReportPushStatus{}
|
|
|
- reportPush.ReportId = req.ReportId
|
|
|
- reportPush.ReportType = 1
|
|
|
- reportPush.State = 1
|
|
|
- reportPush.PushTime = time.Now()
|
|
|
- reportPush.CreateTime = time.Now()
|
|
|
- reportPush.ModifyTime = time.Now()
|
|
|
- _, err = reportPush.Insert()
|
|
|
- if err != nil {
|
|
|
- br.Msg = "推送失败"
|
|
|
- br.ErrMsg = "推送失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
br.Msg = "推送成功"
|
|
@@ -353,7 +326,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
if req.PublishStartDate != "" && req.PublishEndDate != "" {
|
|
|
- condition += " AND a.publish_time >= ?"
|
|
|
+ condition += " AND publish_time >= ?"
|
|
|
publishStartTime, err := time.Parse(utils.FormatDate, req.PublishStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -363,7 +336,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, publishStartDateStr)
|
|
|
|
|
|
- condition += " AND a.publish_time <= ?"
|
|
|
+ condition += " AND publish_time <= ?"
|
|
|
publishEndTime, err := time.Parse(utils.FormatDate, req.PublishEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -375,7 +348,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
pars = append(pars, publishEndDateStr)
|
|
|
}
|
|
|
if req.PushStartDate != "" && req.PushEndDate != "" {
|
|
|
- condition += " AND b.push_time >= ?"
|
|
|
+ condition += " AND push_time >= ?"
|
|
|
pushStartTime, err := time.Parse(utils.FormatDate, req.PushStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -385,7 +358,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, pushStartDateStr)
|
|
|
|
|
|
- condition += " AND b.push_time <= ?"
|
|
|
+ condition += " AND push_time <= ?"
|
|
|
pushEndTime, err := time.Parse(utils.FormatDate, req.PushEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -397,7 +370,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
pars = append(pars, pushEndDateStr)
|
|
|
}
|
|
|
if req.KeyWord != "" {
|
|
|
- condition += ` AND a.title like ? `
|
|
|
+ condition += ` AND title like ? `
|
|
|
pars = utils.GetLikeKeywordPars(pars, req.KeyWord, 1)
|
|
|
}
|
|
|
classifyIdList := make([]int, 0)
|
|
@@ -411,18 +384,18 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
classifyIdList = append(classifyIdList, tmpClassifyList...)
|
|
|
if len(classifyIdList) > 0 {
|
|
|
classifyIdList = utils.Unique(classifyIdList)
|
|
|
- condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
|
|
|
+ condition += ` AND (classify_id_first IN (%s) AND classify_id_second IN (%s) AND classify_id_third IN (%s))`
|
|
|
condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
|
|
|
pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
|
|
|
}
|
|
|
if req.IsSelectAll {
|
|
|
if len(req.SelectedIds) > 0 {
|
|
|
- condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
+ condition += ` AND report_id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
pars = append(pars, req.SelectedIds)
|
|
|
}
|
|
|
} else {
|
|
|
if len(req.SelectedIds) > 0 {
|
|
|
- condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
+ condition += ` AND report_id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
pars = append(pars, req.SelectedIds)
|
|
|
}
|
|
|
}
|
|
@@ -432,7 +405,7 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
br.ErrMsg = "查询研报失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- reportPush, err := models.GetReportPushStatusByReportIds(reportIds, 1)
|
|
|
+ reportPush, err := models.GetReportPushStatusByReportIdAndState(reportIds, 0)
|
|
|
if err != nil {
|
|
|
br.Msg = "批量推送失败"
|
|
|
br.ErrMsg = "查询推送状态失败,Err:" + err.Error()
|
|
@@ -443,11 +416,8 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
existReportMap[v.ReportId] = struct{}{}
|
|
|
}
|
|
|
existReportIds := make([]int, 0)
|
|
|
- noExistReportIds := make([]int, 0)
|
|
|
for _, v := range reportIds {
|
|
|
- if _, ok := existReportMap[v]; !ok {
|
|
|
- noExistReportIds = append(noExistReportIds, v)
|
|
|
- } else {
|
|
|
+ if _, ok := existReportMap[v]; ok {
|
|
|
existReportIds = append(existReportIds, v)
|
|
|
}
|
|
|
}
|
|
@@ -458,24 +428,6 @@ func (this *ReportPushStatusController) BatchPush() {
|
|
|
br.ErrMsg = "批量修改推送失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- insertReportPushList := make([]*models.ReportPushStatus, 0)
|
|
|
- for _, v := range noExistReportIds {
|
|
|
- insertReportPushList = append(insertReportPushList, &models.ReportPushStatus{
|
|
|
- ReportId: v,
|
|
|
- State: 1,
|
|
|
- ReportType: 1,
|
|
|
- CreateTime: time.Now(),
|
|
|
- ModifyTime: time.Now(),
|
|
|
- PushTime: time.Now(),
|
|
|
- })
|
|
|
- }
|
|
|
- obj := &models.ReportPushStatus{}
|
|
|
- err = obj.MultiInsert(insertReportPushList)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "批量推送失败"
|
|
|
- br.ErrMsg = "批量插入推送状态失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
|
|
|
br.Msg = "推送成功"
|
|
|
br.Success = true
|
|
@@ -503,7 +455,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
if req.PublishStartDate != "" && req.PublishEndDate != "" {
|
|
|
- condition += " AND a.publish_time >= ?"
|
|
|
+ condition += " AND publish_time >= ?"
|
|
|
publishStartTime, err := time.Parse(utils.FormatDate, req.PublishStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -513,7 +465,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
publishStartDateStr := publishStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, publishStartDateStr)
|
|
|
|
|
|
- condition += " AND a.publish_time <= ?"
|
|
|
+ condition += " AND publish_time <= ?"
|
|
|
publishEndTime, err := time.Parse(utils.FormatDate, req.PublishEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -525,7 +477,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
pars = append(pars, publishEndDateStr)
|
|
|
}
|
|
|
if req.PushStartDate != "" && req.PushEndDate != "" {
|
|
|
- condition += " AND b.push_time >= ?"
|
|
|
+ condition += " AND push_time >= ?"
|
|
|
pushStartTime, err := time.Parse(utils.FormatDate, req.PushStartDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -535,7 +487,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
pushStartDateStr := pushStartTime.Format(utils.FormatDateTime)
|
|
|
pars = append(pars, pushStartDateStr)
|
|
|
|
|
|
- condition += " AND b.push_time <= ?"
|
|
|
+ condition += " AND push_time <= ?"
|
|
|
pushEndTime, err := time.Parse(utils.FormatDate, req.PushEndDate)
|
|
|
if err != nil {
|
|
|
br.Msg = "日期格式有误"
|
|
@@ -547,7 +499,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
pars = append(pars, pushEndDateStr)
|
|
|
}
|
|
|
if req.KeyWord != "" {
|
|
|
- condition += ` AND a.title like ? `
|
|
|
+ condition += ` AND title like ? `
|
|
|
pars = utils.GetLikeKeywordPars(pars, req.KeyWord, 1)
|
|
|
}
|
|
|
classifyIdList := make([]int, 0)
|
|
@@ -561,18 +513,18 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
classifyIdList = append(classifyIdList, tmpClassifyList...)
|
|
|
if len(classifyIdList) > 0 {
|
|
|
classifyIdList = utils.Unique(classifyIdList)
|
|
|
- condition += ` AND (a.classify_id_first IN (%s) AND a.classify_id_second IN (%s) AND a.classify_id_third IN (%s))`
|
|
|
+ condition += ` AND (classify_id_first IN (%s) AND classify_id_second IN (%s) AND classify_id_third IN (%s))`
|
|
|
condition = fmt.Sprintf(condition, utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)), utils.GetOrmReplaceHolder(len(classifyIdList)))
|
|
|
pars = append(pars, classifyIdList, classifyIdList, classifyIdList)
|
|
|
}
|
|
|
if req.IsSelectAll {
|
|
|
if len(req.SelectedIds) > 0 {
|
|
|
- condition += ` AND a.id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
+ condition += ` AND report_id NOT IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
pars = append(pars, req.SelectedIds)
|
|
|
}
|
|
|
} else {
|
|
|
if len(req.SelectedIds) > 0 {
|
|
|
- condition += ` AND a.id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
+ condition += ` AND report_id IN (` + utils.GetOrmReplaceHolder(len(req.SelectedIds)) + `)`
|
|
|
pars = append(pars, req.SelectedIds)
|
|
|
}
|
|
|
}
|
|
@@ -582,7 +534,7 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
br.ErrMsg = "查询研报失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- reportPush, err := models.GetReportPushStatusByReportIds(reportIds, 1)
|
|
|
+ reportPush, err := models.GetReportPushStatusByReportIdAndState(reportIds, 1)
|
|
|
if err != nil {
|
|
|
br.Msg = "批量推送失败"
|
|
|
br.ErrMsg = "查询推送状态失败,Err:" + err.Error()
|
|
@@ -593,11 +545,8 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
existReportMap[v.ReportId] = struct{}{}
|
|
|
}
|
|
|
existReportIds := make([]int, 0)
|
|
|
- noExistReportIds := make([]int, 0)
|
|
|
for _, v := range reportIds {
|
|
|
- if _, ok := existReportMap[v]; !ok {
|
|
|
- noExistReportIds = append(noExistReportIds, v)
|
|
|
- } else {
|
|
|
+ if _, ok := existReportMap[v]; ok {
|
|
|
existReportIds = append(existReportIds, v)
|
|
|
}
|
|
|
}
|
|
@@ -608,23 +557,6 @@ func (this *ReportPushStatusController) BatchPushCancel() {
|
|
|
br.ErrMsg = "批量修改推送失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
- insertReportPushList := make([]*models.ReportPushStatus, 0)
|
|
|
- for _, v := range noExistReportIds {
|
|
|
- insertReportPushList = append(insertReportPushList, &models.ReportPushStatus{
|
|
|
- ReportId: v,
|
|
|
- State: 0,
|
|
|
- ReportType: 1,
|
|
|
- CreateTime: time.Now(),
|
|
|
- ModifyTime: time.Now(),
|
|
|
- })
|
|
|
- }
|
|
|
- obj := &models.ReportPushStatus{}
|
|
|
- err = obj.MultiInsert(insertReportPushList)
|
|
|
- if err != nil {
|
|
|
- br.Msg = "批量撤销推送失败"
|
|
|
- br.ErrMsg = "批量插入推送状态失败,Err:" + err.Error()
|
|
|
- return
|
|
|
- }
|
|
|
|
|
|
br.Msg = "撤销推送成功"
|
|
|
br.Success = true
|