|
@@ -145,14 +145,19 @@ type RsReportRecordList struct {
|
|
|
Province string `description:"省"`
|
|
|
City string `description:"市"`
|
|
|
CooperationName string `description:"合作方名称"`
|
|
|
+ CompanyIndustry string `description:"客户行业"`
|
|
|
+ CompanyClassify string `description:"客户分类"`
|
|
|
+ QuestionStatus int `description:"问答状态:0-未填写;1-已填写"`
|
|
|
+ QuestionMsgStatus int `description:"问答模板消息:0-未发送;1-已发送"`
|
|
|
}
|
|
|
|
|
|
// GetRsReportRecordList 获取路演统计详情返回数据
|
|
|
func GetRsReportRecordList(condition string, pars []interface{}) (list []*RsReportRecordList, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
- sql := ` SELECT a.*,b.theme,b.roadshow_platform,b.province,b.city,b.cooperation_name
|
|
|
+ sql := ` SELECT a.*,b.theme,b.roadshow_platform,b.province,b.city,b.cooperation_name,c.company_industry,c.company_classify,c.question_status,c.question_msg_status
|
|
|
FROM rs_report_record a
|
|
|
join rs_calendar b on a.rs_calendar_id=b.rs_calendar_id
|
|
|
+ inner join rs_calendar_researcher AS c ON a.rs_calendar_id=c.rs_calendar_id AND a.rs_calendar_researcher_id=c.rs_calendar_researcher_id
|
|
|
WHERE 1=1 and a.rs_calendar_researcher_status = 2
|
|
|
`
|
|
|
if condition != "" {
|