|
@@ -1712,7 +1712,7 @@ func (this *CalendarController) ResearcherCalendarDetail() {
|
|
|
condition += ` AND b.end_date<=?`
|
|
|
pars = append(pars, endDate)
|
|
|
|
|
|
- condition += ` AND b.status IN(2,6) `
|
|
|
+ condition += ` AND b.status IN(2) `
|
|
|
//pars = append(pars, 2)
|
|
|
|
|
|
calendarList, err := roadshow.GetCalendarDetailList(condition, pars)
|
|
@@ -1796,7 +1796,7 @@ func (this *CalendarController) MyCalendarDetail() {
|
|
|
condition += ` AND b.end_date<=?`
|
|
|
pars = append(pars, endDate)
|
|
|
|
|
|
- condition += ` AND b.status IN(2,6) `
|
|
|
+ condition += ` AND b.status IN(2) `
|
|
|
//pars = append(pars, 2)
|
|
|
|
|
|
calendarList, err := roadshow.GetCalendarDetailList(condition, pars)
|