|
@@ -94,6 +94,20 @@ func GetRsCalendarResearcherById(rsCalendarResearcherId int) (item *RsCalendarRe
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func GetRsCalendarResearcherListById(rsCalendarId int) (item []*RsCalendarResearcher, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+ sql := `SELECT * FROM rs_calendar_researcher WHERE rs_calendar_id=? `
|
|
|
|
+ _, err = o.Raw(sql, rsCalendarId).QueryRows(&item)
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func GetRsCalendarResearcherListByCalendarResearcherId(rsCalendarResearcherId int) (item []*RsCalendarResearcher, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+ sql := `SELECT * FROM rs_calendar_researcher WHERE rs_calendar_researcher_id=? `
|
|
|
|
+ _, err = o.Raw(sql, rsCalendarResearcherId).QueryRows(&item)
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
type Researcher struct {
|
|
type Researcher struct {
|
|
AdminId int `description:"研究员id"`
|
|
AdminId int `description:"研究员id"`
|
|
RealName string `description:"研究员名称"`
|
|
RealName string `description:"研究员名称"`
|
|
@@ -119,7 +133,7 @@ type CalendarListView struct {
|
|
CompanyName string `description:"客户名称"`
|
|
CompanyName string `description:"客户名称"`
|
|
CompanyStatus string `description:"客户状态"`
|
|
CompanyStatus string `description:"客户状态"`
|
|
RsCalendarResearcherId int `description:"活动研究员id"`
|
|
RsCalendarResearcherId int `description:"活动研究员id"`
|
|
- ResearcherId string `description:"研究员id"`
|
|
|
|
|
|
+ ResearcherId string `description:"研究员id"`
|
|
ResearcherName string `description:"研究员名称"`
|
|
ResearcherName string `description:"研究员名称"`
|
|
StartDate string `description:"开始日期"`
|
|
StartDate string `description:"开始日期"`
|
|
EndDate string `description:"结束日期"`
|
|
EndDate string `description:"结束日期"`
|
|
@@ -471,7 +485,6 @@ func GetResearcher() (list []*Researcher, err error) {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
// 删除
|
|
// 删除
|
|
func DeleteCalendar(rsCalendarId, rsCalendarResearcherId int) (err error) {
|
|
func DeleteCalendar(rsCalendarId, rsCalendarResearcherId int) (err error) {
|
|
o := orm.NewOrm()
|
|
o := orm.NewOrm()
|
|
@@ -548,7 +561,6 @@ func GetRsMattersList(startDate, endDate string, researcherId int) (list []*RsMa
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
func GetCalendarTypeList(condition string, pars []interface{}, startSize, pageSize int) (list []*CalendarListView, err error) {
|
|
func GetCalendarTypeList(condition string, pars []interface{}, startSize, pageSize int) (list []*CalendarListView, err error) {
|
|
o := orm.NewOrm()
|
|
o := orm.NewOrm()
|
|
sql := ` SELECT a.rs_calendar_id,a.activity_type,a.roadshow_type,a.activity_category,a.roadshow_platform,b.create_time,
|
|
sql := ` SELECT a.rs_calendar_id,a.activity_type,a.roadshow_type,a.activity_category,a.roadshow_platform,b.create_time,
|
|
@@ -570,7 +582,6 @@ func GetCalendarTypeList(condition string, pars []interface{}, startSize, pageSi
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
func GetCalendarTypeListCount(condition string, pars []interface{}) (count int, err error) {
|
|
func GetCalendarTypeListCount(condition string, pars []interface{}) (count int, err error) {
|
|
o := orm.NewOrm()
|
|
o := orm.NewOrm()
|
|
sql := `SELECT COUNT(1) AS count FROM(SELECT COUNT(1) AS count
|
|
sql := `SELECT COUNT(1) AS count FROM(SELECT COUNT(1) AS count
|
|
@@ -583,4 +594,4 @@ func GetCalendarTypeListCount(condition string, pars []interface{}) (count int,
|
|
sql += ` GROUP BY a.rs_calendar_id ) AS t `
|
|
sql += ` GROUP BY a.rs_calendar_id ) AS t `
|
|
err = o.Raw(sql, pars).QueryRow(&count)
|
|
err = o.Raw(sql, pars).QueryRow(&count)
|
|
return
|
|
return
|
|
-}
|
|
|
|
|
|
+}
|