123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- // @Author gmy 2024/9/19 16:45:00
- package document_manage_service
- import (
- "eta/eta_api/models"
- "eta/eta_api/models/document_manage_model"
- "eta/eta_api/utils"
- "fmt"
- "github.com/beego/beego/v2/core/logs"
- "github.com/google/uuid"
- "github.com/rdlucklib/rdluck_tools/paging"
- "html"
- "strconv"
- )
- func DocumentClassifyList() ([]models.ClassifyVO, error) {
- logs.Info("DocumentClassifyList")
- //获取所有已启用分类
- classifyList, err := models.GetClassifyListByKeyword(``, utils.IS_ENABLE)
- if err != nil {
- return nil, err
- }
- // 递归处理分类 拿到父级分类和对应的子级分类
- classifyVOList := make([]models.ClassifyVO, 0)
- for _, classify := range classifyList {
- if classify.ParentId == 0 {
- classifyVO := models.ClassifyVO{
- Id: classify.Id,
- ClassifyName: classify.ClassifyName,
- ParentId: classify.ParentId,
- Sort: classify.Sort,
- Enabled: classify.Enabled,
- Level: classify.Level,
- }
- classifyVO.Children = getChildClassify(classifyList, classify.Id)
- classifyVOList = append(classifyVOList, classifyVO)
- }
- }
- return classifyVOList, nil
- }
- func getChildClassify(classifyList []*models.ClassifyList, classifyId int) *[]models.ClassifyVO {
- childList := make([]models.ClassifyVO, 0)
- for _, classify := range classifyList {
- if classify.ParentId == classifyId {
- classifyVO := models.ClassifyVO{
- Id: classify.Id,
- ClassifyName: classify.ClassifyName,
- ParentId: classify.ParentId,
- Sort: classify.Sort,
- Enabled: classify.Enabled,
- }
- classifyVO.Children = getChildClassify(classifyList, classify.Id)
- childList = append(childList, classifyVO)
- }
- }
- return &childList
- }
- func DocumentVarietyList() ([]models.ChartPermissionVO, error) {
- logs.Info("DocumentVarietyList")
- cp := new(models.ChartPermission)
- var condition string
- pars := make([]interface{}, 0)
- condition = ` and enabled=?`
- pars = append(pars, 1)
- condition += ` and product_id=1`
- chartPermissionList, err := cp.GetItemsByCondition(condition, pars)
- if err != nil {
- return nil, err
- }
- // 递归处理品种 拿到父级品种和对应的子级品种
- permissionVOList := make([]models.ChartPermissionVO, 0)
- for _, chartPermission := range chartPermissionList {
- if chartPermission.ParentId == 0 {
- permissionVO := models.ChartPermissionVO{
- ChartPermissionId: chartPermission.ChartPermissionId,
- ChartPermissionName: chartPermission.ChartPermissionName,
- PermissionName: chartPermission.PermissionName,
- ParentId: chartPermission.ParentId,
- Enabled: chartPermission.Enabled,
- Sort: chartPermission.Sort,
- CreatedTime: chartPermission.CreatedTime,
- }
- permissionVO.Children = getChildVariety(chartPermissionList, permissionVO.ChartPermissionId)
- permissionVOList = append(permissionVOList, permissionVO)
- }
- }
- return permissionVOList, nil
- }
- func getChildVariety(permissionList []*models.ChartPermission, permissionId int) []*models.ChartPermissionVO {
- childList := make([]*models.ChartPermissionVO, 0)
- for _, permission := range permissionList {
- if permission.ParentId == permissionId {
- permissionVO := models.ChartPermissionVO{
- ChartPermissionId: permission.ChartPermissionId,
- ChartPermissionName: permission.ChartPermissionName,
- PermissionName: permission.PermissionName,
- ParentId: permission.ParentId,
- Enabled: permission.Enabled,
- Sort: permission.Sort,
- CreatedTime: permission.CreatedTime,
- }
- permissionVO.Children = getChildVariety(permissionList, permissionVO.ChartPermissionId)
- childList = append(childList, &permissionVO)
- }
- }
- return childList
- }
- func DocumentReportList(documentType int, chartPermissionIdList []string, classifyIdList []string, keyword string, orderField, orderType string, startSize, pageSize int) (*document_manage_model.OutsideReportPage, error) {
- logs.Info("DocumentVarietyList")
- var condition string
- pars := make([]interface{}, 0)
- if documentType == 1 {
- condition = ` and t1.source!=3`
- }
- if len(classifyIdList) > 0 {
- // 递归查询子分类
- for _, classifyId := range classifyIdList {
- id, err := strconv.Atoi(classifyId)
- if err != nil {
- return nil, err
- }
- if id == 0 {
- classifyIdList = append(classifyIdList, classifyId)
- } else {
- childrenClassifyIdList, err := GetAllClassifyIdsByParentId(id)
- if err != nil {
- return nil, err
- }
- classifyIdList = append(classifyIdList, childrenClassifyIdList...)
- }
- }
- condition += ` and t1.classify_id in (` + utils.GetOrmInReplace(len(classifyIdList)) + `)`
- for _, classifyId := range classifyIdList {
- pars = append(pars, classifyId)
- }
- }
- if len(chartPermissionIdList) > 0 {
- condition += ` and t2.chart_permission_id in (` + utils.GetOrmInReplace(len(chartPermissionIdList)) + `)`
- for _, chartPermissionId := range chartPermissionIdList {
- pars = append(pars, chartPermissionId)
- }
- }
- if keyword != "" {
- condition += ` and (t1.title like ? or t1.sys_user_name like ?) `
- pars = append(pars, "%"+keyword+"%", "%"+keyword+"%")
- }
- count, err := document_manage_model.GetOutsideReportListByConditionCount(condition, pars)
- if err != nil {
- return nil, err
- }
- reportPage := document_manage_model.OutsideReportPage{}
- page := paging.GetPaging(startSize, pageSize, count)
- if count <= 0 {
- reportPage.Paging = page
- return &reportPage, nil
- }
- if orderField != "" && orderType != "" {
- condition += ` order by t1.` + orderField + ` ` + orderType
- } else {
- condition += ` order by t1.report_update_time desc`
- }
- outsideReportList, err := document_manage_model.GetOutsideReportListByCondition(condition, pars, startSize, pageSize)
- if err != nil {
- return nil, err
- }
- reportPage.Paging = page
- reportPage.List = outsideReportList
- return &reportPage, nil
- }
- // GetAllClassifyIdsByParentId 递归查询子分类
- func GetAllClassifyIdsByParentId(parentId int) ([]string, error) {
- var classifyIdList []string
- // 获取子分类
- classifyList, err := models.GetClassifyListByParentId(parentId)
- if err != nil {
- return nil, err
- }
- // 遍历子分类
- for _, classify := range classifyList {
- classifyIdList = append(classifyIdList, strconv.Itoa(classify.Id))
- // 递归调用
- subClassifyIds, err := GetAllClassifyIdsByParentId(classify.Id)
- if err != nil {
- return nil, err
- }
- classifyIdList = append(classifyIdList, subClassifyIds...)
- }
- return classifyIdList, nil
- }
- func RuiSiReportList(classifyIdFirst, classifyIdSecond, classifyIdThird int, chartPermissionIdList []string, keyword string, orderField, orderType string, startSize, pageSize int) (*models.ReportListResp, error) {
- logs.Info("RuiSiReportList")
- var condition string
- pars := make([]interface{}, 0)
- if classifyIdFirst > 0 {
- condition += ` AND a.classify_id_first = ? `
- pars = append(pars, classifyIdFirst)
- }
- if classifyIdSecond > 0 {
- condition += ` AND a.classify_id_second = ? `
- pars = append(pars, classifyIdSecond)
- }
- if classifyIdThird > 0 {
- condition += ` AND a.classify_id_third = ? `
- pars = append(pars, classifyIdThird)
- }
- if keyword != "" {
- condition += ` and ( a.title like ? or a.admin_real_name like ? ) `
- pars = append(pars, "%"+keyword+"%", "%"+keyword+"%")
- }
- // 作者为 全球市场战略研究中心 PCI Research
- condition += ` and a.author = '全球市场战略研究中心 PCI Research'`
- // 已发布的报告
- condition += ` and a.state = 2`
- if len(chartPermissionIdList) > 0 {
- classifyIds, err := models.GetClassifyIdsByPermissionId(chartPermissionIdList)
- if err != nil {
- return nil, err
- }
- if len(classifyIds) > 0 {
- condition += ` AND ( (a.classify_id_first IN (` + utils.GetOrmInReplace(len(classifyIds)) + `) AND a.classify_id_second = 0)
- OR (a.classify_id_second IN (` + utils.GetOrmInReplace(len(classifyIds)) + `) AND a.classify_id_third = 0)
- OR a.classify_id_third IN (` + utils.GetOrmInReplace(len(classifyIds)) + `) )`
- for _, classifyId := range classifyIds {
- pars = append(pars, classifyId)
- }
- for _, classifyId := range classifyIds {
- pars = append(pars, classifyId)
- }
- for _, classifyId := range classifyIds {
- pars = append(pars, classifyId)
- }
- }
- }
- count, err := models.GetReportListCountV1(condition, pars)
- if err != nil {
- return nil, err
- }
- reportPage := models.ReportListResp{}
- page := paging.GetPaging(startSize, pageSize, count)
- if count <= 0 {
- reportPage.Paging = page
- return &reportPage, nil
- }
- if orderField != "" && orderType != "" {
- condition += ` order by a.` + orderField + ` ` + orderType
- } else {
- condition += ` order by a.publish_time desc`
- }
- reportList, err := models.GetReportListByCondition(condition, pars, startSize, pageSize)
- if err != nil {
- return nil, err
- }
- reportPage.Paging = page
- reportPage.List = reportList
- return &reportPage, nil
- }
- func DocumentRuiSiDetail(reportId int) (*models.ReportDetail, error) {
- logs.Info("DocumentRuiSiDetail")
- reportDetail, err := models.GetReportById(reportId)
- if err != nil {
- if err.Error() == utils.ErrNoRow() {
- return nil, fmt.Errorf("报告已被删除")
- }
- return nil, err
- }
- reportDetail.Content = html.UnescapeString(reportDetail.Content)
- return reportDetail, nil
- }
- func DocumentSave(outsideReport *document_manage_model.OutsideReportBO) error {
- logs.Info("DocumentSave")
- // 保存报告
- report := document_manage_model.OutsideReport{
- Source: outsideReport.Source,
- Title: outsideReport.Title,
- Abstract: outsideReport.Abstract,
- ClassifyId: outsideReport.ClassifyId,
- ClassifyName: outsideReport.ClassifyName,
- Content: outsideReport.Content,
- SysUserId: outsideReport.SysUserId,
- SysUserName: outsideReport.SysUserName,
- ReportUpdateTime: utils.GetCurrentTime(),
- ModifyTime: utils.GetCurrentTime(),
- CreateTime: utils.GetCurrentTime(),
- ReportCode: uuid.New().String(),
- }
- id, err := document_manage_model.SaveOutsideReport(report)
- if err != nil {
- return err
- }
- // 保存附件
- attachmentList := outsideReport.AttachmentList
- if len(attachmentList) > 0 {
- for _, attachment := range attachmentList {
- if attachment.Title == "" || attachment.Url == "" {
- continue
- }
- attachment.OutsideReportId = int(id)
- attachment.CreateTime = utils.GetCurrentTime()
- _, err := document_manage_model.SaveOutsideReportAttachment(attachment)
- if err != nil {
- return err
- }
- }
- }
- return err
- }
- func DocumentReportDetail(outsideReportId int) (*document_manage_model.OutsideReportBO, error) {
- logs.Info("DocumentReportDetail")
- outsideReport, err := document_manage_model.GetOutsideReportById(outsideReportId)
- if err != nil {
- return nil, err
- }
- attachmentList, err := document_manage_model.GetOutsideReportAttachmentListByReportId(outsideReportId)
- if err != nil {
- return nil, err
- }
- outsideReportBO := document_manage_model.OutsideReportBO{
- OutsideReportId: outsideReportId,
- Source: outsideReport.Source,
- Title: outsideReport.Title,
- Abstract: outsideReport.Abstract,
- ClassifyId: outsideReport.ClassifyId,
- ClassifyName: outsideReport.ClassifyName,
- Content: html.UnescapeString(outsideReport.Content),
- SysUserId: outsideReport.SysUserId,
- SysUserName: outsideReport.SysUserName,
- CreateTime: outsideReport.CreateTime,
- ModifyTime: outsideReport.ModifyTime,
- ReportCode: outsideReport.ReportCode,
- AttachmentList: attachmentList,
- }
- return &outsideReportBO, nil
- }
- func DocumentUpdate(outsideReport *document_manage_model.OutsideReportBO) error {
- logs.Info("DocumentUpdate")
- report, err := document_manage_model.GetOutsideReportById(outsideReport.OutsideReportId)
- if err != nil {
- return err
- }
- if report == nil {
- return fmt.Errorf("报告不存在")
- }
- // 更新报告
- if outsideReport.Title != "" {
- report.Title = outsideReport.Title
- }
- report.Abstract = outsideReport.Abstract
- if outsideReport.ClassifyId > 0 {
- report.ClassifyId = outsideReport.ClassifyId
- }
- if outsideReport.ClassifyName != "" {
- report.ClassifyName = outsideReport.ClassifyName
- }
- if outsideReport.Content != "" {
- report.Content = outsideReport.Content
- }
- report.ModifyTime = utils.GetCurrentTime()
- //report.ReportUpdateTime = utils.GetCurrentTime()
- err = document_manage_model.UpdateOutsideReport(report)
- if err != nil {
- return fmt.Errorf("更新报告失败, Err: %s", err.Error())
- }
- // 更新报告附件
- attachmentList := outsideReport.AttachmentList
- if len(attachmentList) > 0 {
- err = document_manage_model.DeleteReportAttachmentByReportId(outsideReport.OutsideReportId)
- if err != nil {
- return fmt.Errorf("删除报告附件失败, Err: %s", err.Error())
- }
- for _, attachment := range attachmentList {
- if attachment.Title == "" || attachment.Url == "" {
- continue
- }
- attachment.OutsideReportId = outsideReport.OutsideReportId
- attachment.CreateTime = utils.GetCurrentTime()
- _, err := document_manage_model.SaveOutsideReportAttachment(attachment)
- if err != nil {
- return err
- }
- }
- }
- return nil
- }
- func DocumentDelete(outsideReportId int) error {
- logs.Info("DocumentDelete")
- report, err := document_manage_model.GetOutsideReportById(outsideReportId)
- if err != nil {
- return err
- }
- if report == nil {
- return fmt.Errorf("报告不存在")
- }
- err = document_manage_model.DeleteOutsideReport(outsideReportId)
- if err != nil {
- return err
- }
- err = document_manage_model.DeleteReportAttachmentByReportId(outsideReportId)
- if err != nil {
- return err
- }
- return nil
- }
|