custom_query.go 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package company_report_permission
  2. import (
  3. "fmt"
  4. "github.com/rdlucklib/rdluck_tools/orm"
  5. "strings"
  6. "time"
  7. )
  8. type ReportChapterTypeIdList struct {
  9. ReportChapterTypeId uint64
  10. }
  11. type ResearchReportTypeInfo struct {
  12. ResearchReportTypeTitle string `json:"research_report_type_title" description:"研究报告标题"`
  13. BannerUrl string `json:"banner_url" description:"banner url"`
  14. ReportChapterTypeName string `json:"report_chapter_type_name" description:"章节名称"`
  15. ResearchReportID uint64 `orm:"column(research_report_id)" json:"research_report_id" description:"报告id"`
  16. ResearchReportTypeID uint64 `orm:"column(research_report_type_id)" json:"research_report_type_id" description:"研究报告id"`
  17. TypeID int `orm:"column(type_id)" json:"type_id" description:"分类id"`
  18. ReportChapterTypeId uint64 `json:"report_chapter_type_id" description:"章节名称"`
  19. Type string ` json:"type";description:"day 晨报 week 周报 two_week双周报 month 月报"`
  20. }
  21. //type ResearchReportTypeList struct {
  22. // ResearchReportTypeId uint64 ` description:"章节ID" json:"research_report_type_id" `
  23. // ResearchReportId uint64 ` description:"研究报告id" json:"research_report_id" `
  24. // ResearchReportTypeTitle string `description:"研究报告标题" json:"research_report_type_title" `
  25. // TypeId int `description:"分类id" json:"type_id" `
  26. // Edit int8 `description:"是否编辑过" json:"edit" `
  27. // Trend string `description:"趋势观点" json:"trend" `
  28. // ReportChapterTypeKey string `description:"章节key" json:"report_chapter_typeKey" `
  29. // ReportChapterTypeThumb string `description:"H5展示的图片" json:"report_chapter_type_thumb" `
  30. // BannerUrl string `description:"banner显示图片" json:"banner_url" `
  31. // ReportChapterTypeName string `description:"报告章节类型名称" json:"report_chapter_type_name" `
  32. // Sort int `description:"排序字段" json:"sort" `
  33. // EditImgUrl string `description:"管理后台编辑时选用的图" json:"edit_img_url" `
  34. // PauseStartTime time.Time `description:"暂停开始日期" json:"pause_start_time" `
  35. // PauseEndTime time.Time `description:"暂停结束日期" json:"pause_end_time" `
  36. // LastUpdatedTime time.Time `description:"最后更新时间" json:"last_updated_time" `
  37. // HttpUrl string `json:"http_url",description:"报告详情"`
  38. //}
  39. type ResearchReportTypeList struct {
  40. ResearchReportTypeId uint64 ` description:"章节ID" `
  41. ResearchReportId uint64 ` description:"研究报告id" `
  42. ResearchReportTypeTitle string `description:"研究报告标题" `
  43. TypeId int `description:"分类id" `
  44. Edit int8 `description:"是否编辑过"`
  45. Trend string `description:"趋势观点" `
  46. ReportChapterTypeKey string `description:"章节key" `
  47. ReportChapterTypeThumb string `description:"H5展示的图片" `
  48. BannerUrl string `description:"banner显示图片" `
  49. ReportChapterTypeName string `description:"报告章节类型名称" `
  50. Sort int `description:"排序字段" `
  51. EditImgUrl string `description:"管理后台编辑时选用的图" `
  52. PauseStartTime time.Time `description:"暂停开始日期" `
  53. PauseEndTime time.Time `description:"暂停结束日期" `
  54. LastUpdatedTime time.Time `description:"最后更新时间" `
  55. HttpUrl string `json:"http_url",description:"报告详情"`
  56. }
  57. //GetResearchReportType 获取研究报告的章节详情
  58. func GetResearchReportType(researchReportId uint64, userId int, reportType string) (list []*ResearchReportTypeList, err error) {
  59. var condition string
  60. //whereVals := make([]interface{}, 0)
  61. //如果是周报,并且是H5页面
  62. if "week" == reportType && userId > 0 {
  63. condition += ` and rrt.edit=1 `
  64. reportChapterTypeList, tmpErr := GetReportVarietyList(userId, reportType)
  65. if tmpErr != nil {
  66. err = tmpErr
  67. return
  68. }
  69. if len(reportChapterTypeList) > 0 {
  70. reportChapterTypeIdList := make([]string, 0)
  71. for _, v := range reportChapterTypeList {
  72. reportChapterTypeIdList = append(reportChapterTypeIdList, fmt.Sprint(v.ReportChapterTypeId))
  73. }
  74. condition += ` and rct.report_chapter_type_id in (` + strings.Join(reportChapterTypeIdList, ",") + `) `
  75. //whereVals = append(whereVals, strings.Join(reportChapterTypeIdList, ","))
  76. }
  77. }
  78. if strings.Contains("day,week", reportType) {
  79. condition += ` and rct.is_show=1 `
  80. }
  81. sql := `select
  82. rrt.research_report_type_id,
  83. rrt.research_report_id,
  84. rrt.research_report_type_title,
  85. rrt.type_id,
  86. rrt.edit,
  87. rrt.trend,
  88. rct.report_chapter_type_key,
  89. rct.report_chapter_type_thumb,
  90. rct.banner_url,
  91. rct.report_chapter_type_name,
  92. rct.sort,
  93. rct.edit_img_url,
  94. rct.pause_start_time,
  95. rct.pause_end_time,
  96. rrt.last_updated_time
  97. from research_report_type rrt
  98. left JOIN report_chapter_type rct on rct.report_chapter_type_id = rrt.type_id
  99. where rrt.research_report_id = ? `
  100. sql += condition
  101. sql += ` order by rct.sort,rrt.research_report_type_id `
  102. o := orm.NewOrm()
  103. _, err = o.Raw(sql, researchReportId).QueryRows(&list)
  104. return
  105. }
  106. type PermissionName struct {
  107. ChartPermissionName string
  108. ResearchType string
  109. }
  110. //权限
  111. // GetReportVarietyList
  112. func GetReportVarietyList(userId int, reportType string) (list []*ReportChapterTypeIdList, err error) {
  113. o := orm.NewOrm()
  114. var condition string
  115. //whereVals := make([]interface{}, 0)
  116. if reportType != "" {
  117. condition += ` and cpcm.research_type = '` + reportType + `' `
  118. //whereVals = append(whereVals, reportType)
  119. }
  120. sql := ` SELECT cpcm.report_chapter_type_id FROM company_report_permission crp
  121. INNER JOIN chart_permission_chapter_mapping cpcm ON crp.chart_permission_id = cpcm.chart_permission_id
  122. INNER JOIN wx_user wu ON wu.company_id = crp.company_id
  123. WHERE wu.user_id = ? `
  124. sql += condition
  125. sql += ` GROUP BY cpcm.report_chapter_type_id `
  126. _, err = o.Raw(sql, userId).QueryRows(&list)
  127. return
  128. }
  129. type ResearchReportTypeContent struct {
  130. ResearchReportTypeTitle string `json:"research_report_type_title" description:"标题"`
  131. ResearchReportTypeContentId int `json:"research_report_type_content_id" description:"研究报告内容id"`
  132. ResearchReportTypeId int `json:"research_report_id" description:"报告id"`
  133. Sort int `json:"sort" description:"排序"`
  134. ContentType string `json:"content_type" description:"内容分类类型"`
  135. Content string `json:"content" description:"内容"`
  136. ImgUrl string `json:"img_url" description:"图片路径"`
  137. CreatedTime time.Time `json:"created_time" description:"创建时间"`
  138. LastUpdatedTime time.Time `json:"last_updated_time" description:"最近一次更新时间"`
  139. }
  140. // GetResearchReportTypeContentList 获取研究报告章节详情
  141. func GetResearchReportTypeContentList(researchReportTypeId uint64) (items []*ResearchReportTypeContent, err error) {
  142. o := orm.NewOrm()
  143. sql := `select rrt.research_report_type_title,rrtc.*,rrt.research_report_type_id
  144. from research_report_type rrt
  145. inner join research_report_type_content rrtc on rrtc.research_report_type_id = rrt.research_report_type_id
  146. where rrt.research_report_type_id = ? `
  147. _, err = o.Raw(sql, researchReportTypeId).QueryRows(&items)
  148. return
  149. }
  150. // GetResearchReportTypeInfo 获取研究报告类型详情
  151. func GetResearchReportTypeInfo(researchReportTypeId uint64) (item *ResearchReportTypeInfo, err error) {
  152. sql := ` select rrt.research_report_type_title,rct.banner_url,rct.report_chapter_type_name,rrt.research_report_id,rrt.research_report_type_id,rrt.type_id,rct.report_chapter_type_name,rct.report_chapter_type_id
  153. from research_report_type rrt
  154. left join report_chapter_type rct on rct.report_chapter_type_id = rrt.type_id
  155. where rrt.research_report_type_id =? limit 1`
  156. o := orm.NewOrm()
  157. err = o.Raw(sql, researchReportTypeId).QueryRow(&item)
  158. return
  159. }