sa_doc.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. package semantic_analysis
  2. import (
  3. "encoding/json"
  4. "eta_gn/eta_api/controllers"
  5. "eta_gn/eta_api/models"
  6. saModel "eta_gn/eta_api/models/semantic_analysis"
  7. "eta_gn/eta_api/services"
  8. "eta_gn/eta_api/utils"
  9. "fmt"
  10. "github.com/rdlucklib/rdluck_tools/paging"
  11. "html"
  12. "strings"
  13. "time"
  14. )
  15. type SaDocController struct {
  16. controllers.BaseAuthController
  17. }
  18. // @router /doc/add [post]
  19. func (this *SaDocController) Add() {
  20. br := new(models.BaseResponse).Init()
  21. defer func() {
  22. if br.ErrMsg == "" {
  23. br.IsSendEmail = false
  24. }
  25. this.Data["json"] = br
  26. this.ServeJSON()
  27. }()
  28. var req saModel.SaDocAddReq
  29. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  30. br.Msg = "参数解析异常!"
  31. br.ErrMsg = "参数解析失败,Err:" + e.Error()
  32. return
  33. }
  34. req.Title = strings.TrimSpace(req.Title)
  35. if req.Title == "" {
  36. br.Msg = "请输入标题"
  37. return
  38. }
  39. if req.ClassifyId <= 0 {
  40. br.Msg = "请选择分类"
  41. return
  42. }
  43. req.Content = strings.Replace(req.Content, "Powered by Froala Editor", "", -1)
  44. req.Content = strings.Replace(req.Content, " ", "", -1)
  45. req.Content = strings.Replace(req.Content, "<p data-f-id=\"pbf\" style=\"text-align: center; font-size: 14px; margin-top: 30px; opacity: 0.65; font-family: sanered by <a href=\"https://www.froala.com/wysiwyg-editor?pb=1\" title=\"Froala Editor\">Froala Editor</a></p>", "", -1)
  46. if req.Content == "" {
  47. br.Msg = "请输入文档内容"
  48. return
  49. }
  50. contentMd5 := utils.MD5(req.Content)
  51. existItem := new(saModel.SaDoc)
  52. existCond := ` AND %s = ? OR %s = ?`
  53. existCond = fmt.Sprintf(existCond, saModel.SaDocColumns.Title, saModel.SaDocColumns.ContentMd5)
  54. existPars := make([]interface{}, 0)
  55. existPars = append(existPars, req.Title, contentMd5)
  56. if e := existItem.GetItemByCondition(existCond, existPars); e != nil && !utils.IsErrNoRow(e) {
  57. br.Msg = "操作失败"
  58. br.ErrMsg = "获取重复文档失败, Err: " + e.Error()
  59. return
  60. }
  61. if existItem != nil && existItem.SaDocId > 0 {
  62. if existItem.Title == req.Title {
  63. br.Msg = "文档名称已存在"
  64. }
  65. if existItem.ContentMd5 == contentMd5 {
  66. br.Msg = "该文档内容已上传"
  67. }
  68. return
  69. }
  70. sections, e := services.LoadSaDocContent2Section(req.Content)
  71. if e != nil || len(sections) == 0 {
  72. br.Msg = "内容段落信息有误"
  73. br.ErrMsg = "读取内容段落失败, Err: " + e.Error()
  74. return
  75. }
  76. classifyItem := new(saModel.SaDocClassify)
  77. if e = classifyItem.GetItemById(req.ClassifyId); e != nil {
  78. br.Msg = "分类信息有误"
  79. br.ErrMsg = "获取文档分类信息失败, Err: " + e.Error()
  80. return
  81. }
  82. newDoc := new(saModel.SaDoc)
  83. newDoc.ClassifyId = req.ClassifyId
  84. newDoc.ClassifyName = classifyItem.ClassifyName
  85. newDoc.Title = req.Title
  86. newDoc.CoverImg = classifyItem.CoverImg
  87. newDoc.ContentMd5 = contentMd5
  88. newDoc.SysAdminId = this.SysUser.AdminId
  89. newDoc.SysAdminName = this.SysUser.RealName
  90. newDoc.CreateTime = time.Now().Local()
  91. newDoc.ModifyTime = time.Now().Local()
  92. newSections := make([]*saModel.SaDocSection, 0)
  93. for i := range sections {
  94. newSections = append(newSections, &saModel.SaDocSection{
  95. Content: html.EscapeString(sections[i]),
  96. Sort: i + 1,
  97. })
  98. }
  99. if e = saModel.InsertSaDocAndSections(newDoc, newSections); e != nil {
  100. br.Msg = "操作失败"
  101. br.ErrMsg = "新增文档和段落失败, Err: " + e.Error()
  102. return
  103. }
  104. go func() {
  105. _ = services.HandleElasticSaDocAndSection(newDoc, newSections, []int{})
  106. }()
  107. br.Ret = 200
  108. br.Success = true
  109. br.Msg = "操作成功"
  110. br.Data = newDoc.SaDocId
  111. }
  112. // @router /doc/edit [post]
  113. func (this *SaDocController) Edit() {
  114. br := new(models.BaseResponse).Init()
  115. defer func() {
  116. if br.ErrMsg == "" {
  117. br.IsSendEmail = false
  118. }
  119. this.Data["json"] = br
  120. this.ServeJSON()
  121. }()
  122. var req saModel.SaDocEditReq
  123. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  124. br.Msg = "参数解析异常!"
  125. br.ErrMsg = "参数解析失败,Err:" + e.Error()
  126. return
  127. }
  128. if req.SaDocId <= 0 {
  129. br.Msg = "参数异常"
  130. return
  131. }
  132. req.Title = strings.TrimSpace(req.Title)
  133. if req.Title == "" {
  134. br.Msg = "请输入标题"
  135. return
  136. }
  137. if req.ClassifyId <= 0 {
  138. br.Msg = "请选择分类"
  139. return
  140. }
  141. if len(req.SectionList) == 0 {
  142. br.Msg = "段落不可为空"
  143. return
  144. }
  145. sectionIds := make([]int, 0)
  146. for i := range req.SectionList {
  147. if req.SectionList[i].Content == "" {
  148. br.Msg = "段落不可为空"
  149. return
  150. }
  151. if req.SectionList[i].SaDocSectionId > 0 {
  152. sectionIds = append(sectionIds, req.SectionList[i].SaDocSectionId)
  153. }
  154. }
  155. item := new(saModel.SaDoc)
  156. e := item.GetItemById(req.SaDocId)
  157. if e != nil {
  158. if utils.IsErrNoRow(e) {
  159. br.Msg = "文档已被删除, 请刷新页面"
  160. return
  161. }
  162. br.Msg = "获取失败"
  163. br.ErrMsg = "获取文档信息失败, Err: " + e.Error()
  164. return
  165. }
  166. sectionOB := new(saModel.SaDocSection)
  167. sectionCond := fmt.Sprintf(` AND %s = ?`, saModel.SaDocSectionColumns.DocId)
  168. sectionPars := make([]interface{}, 0)
  169. sectionPars = append(sectionPars, item.SaDocId)
  170. originSections, e := sectionOB.GetItemsByCondition(sectionCond, sectionPars, []string{saModel.SaDocSectionColumns.SaDocSectionId}, "")
  171. if e != nil {
  172. br.Msg = "获取失败"
  173. br.ErrMsg = "获取段落信息失败, Err: " + e.Error()
  174. return
  175. }
  176. originSectionIds := make([]int, 0)
  177. for i := range originSections {
  178. originSectionIds = append(originSectionIds, originSections[i].SaDocSectionId)
  179. }
  180. insertSecs := make([]*saModel.SaDocSection, 0)
  181. updateSecs := make([]*saModel.SaDocSection, 0)
  182. delSecIds := utils.MinusInt(originSectionIds, sectionIds)
  183. for i, v := range req.SectionList {
  184. v.Content = html.EscapeString(v.Content)
  185. v.Sort = i + 1
  186. if v.SaDocSectionId == 0 {
  187. insertSecs = append(insertSecs, v)
  188. continue
  189. }
  190. if utils.InArrayByInt(originSectionIds, v.SaDocSectionId) {
  191. updateSecs = append(updateSecs, v)
  192. }
  193. }
  194. classifyItem := new(saModel.SaDocClassify)
  195. if e = classifyItem.GetItemById(req.ClassifyId); e != nil {
  196. br.Msg = "分类信息有误"
  197. br.ErrMsg = "获取文档分类信息失败, Err: " + e.Error()
  198. return
  199. }
  200. item.Title = req.Title
  201. item.ClassifyId = req.ClassifyId
  202. item.ClassifyName = classifyItem.ClassifyName
  203. item.ModifyTime = time.Now().Local()
  204. updateCols := []string{
  205. saModel.SaDocColumns.Title, saModel.SaDocColumns.Theme, saModel.SaDocColumns.ClassifyId,
  206. saModel.SaDocColumns.ClassifyName, saModel.SaDocColumns.ModifyTime,
  207. }
  208. updateSecCols := []string{saModel.SaDocSectionColumns.Content, saModel.SaDocSectionColumns.Sort}
  209. if e = saModel.UpdateSaDocAndSections(item, insertSecs, updateSecs, delSecIds, updateCols, updateSecCols); e != nil {
  210. br.Msg = "操作失败"
  211. br.ErrMsg = "更新文档段落失败, Err: " + e.Error()
  212. return
  213. }
  214. go func() {
  215. sections := make([]*saModel.SaDocSection, 0)
  216. sections = append(sections, insertSecs...)
  217. sections = append(sections, updateSecs...)
  218. _ = services.HandleElasticSaDocAndSection(item, sections, delSecIds)
  219. }()
  220. br.Ret = 200
  221. br.Success = true
  222. br.Msg = "操作成功"
  223. br.Data = item.SaDocId
  224. }
  225. // @router /doc/del [post]
  226. func (this *SaDocController) Del() {
  227. br := new(models.BaseResponse).Init()
  228. defer func() {
  229. if br.ErrMsg == "" {
  230. br.IsSendEmail = false
  231. }
  232. this.Data["json"] = br
  233. this.ServeJSON()
  234. }()
  235. var req saModel.SaDocDelReq
  236. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  237. br.Msg = "参数解析异常!"
  238. br.ErrMsg = "参数解析失败,Err:" + e.Error()
  239. return
  240. }
  241. if req.SaDocId <= 0 {
  242. br.Msg = "参数有误"
  243. return
  244. }
  245. item := new(saModel.SaDoc)
  246. e := item.GetItemById(req.SaDocId)
  247. if e != nil {
  248. if utils.IsErrNoRow(e) {
  249. br.Msg = "文档已被删除, 请刷新页面"
  250. return
  251. }
  252. br.Msg = "操作失败"
  253. br.ErrMsg = "获取文档信息失败, Err: " + e.Error()
  254. return
  255. }
  256. secOB := new(saModel.SaDocSection)
  257. secCond := fmt.Sprintf(` AND %s = ?`, saModel.SaDocSectionColumns.DocId)
  258. secPars := make([]interface{}, 0)
  259. secPars = append(secPars, item.SaDocId)
  260. sections, e := secOB.GetItemsByCondition(secCond, secPars, []string{saModel.SaDocSectionColumns.SaDocSectionId}, "")
  261. if e != nil {
  262. br.Msg = "操作失败"
  263. br.ErrMsg = "获取文档段落信息失败, Err: " + e.Error()
  264. return
  265. }
  266. secIds := make([]int, 0)
  267. for i := range sections {
  268. secIds = append(secIds, sections[i].SaDocSectionId)
  269. }
  270. useCond := fmt.Sprintf(` AND %s = ?`, saModel.SaCompareLabelColumns.DocId)
  271. usePars := make([]interface{}, 0)
  272. usePars = append(usePars, item.SaDocId)
  273. useOB := new(saModel.SaCompareLabel)
  274. count, e := useOB.GetCountByCondition(useCond, usePars)
  275. if e != nil {
  276. br.Msg = "操作失败"
  277. br.ErrMsg = "获取文档引用数失败, Err: " + e.Error()
  278. return
  279. }
  280. if count > 0 {
  281. br.Msg = "文档已被引用, 不可删除"
  282. return
  283. }
  284. if e = saModel.DelSaDocAndSections(item.SaDocId); e != nil {
  285. br.Msg = "操作失败"
  286. br.ErrMsg = "删除文档失败, Err: " + e.Error()
  287. return
  288. }
  289. go func() {
  290. _ = services.DeleteElasticSaDocAndSection(item.SaDocId, secIds)
  291. }()
  292. br.Ret = 200
  293. br.Success = true
  294. br.Msg = "操作成功"
  295. }
  296. // @router /doc/detail [get]
  297. func (this *SaDocController) Detail() {
  298. br := new(models.BaseResponse).Init()
  299. defer func() {
  300. if br.ErrMsg == "" {
  301. br.IsSendEmail = false
  302. }
  303. this.Data["json"] = br
  304. this.ServeJSON()
  305. }()
  306. docId, _ := this.GetInt("DocId", 0)
  307. if docId <= 0 {
  308. br.Msg = "参数异常"
  309. return
  310. }
  311. item := new(saModel.SaDoc)
  312. e := item.GetItemById(docId)
  313. if e != nil {
  314. if utils.IsErrNoRow(e) {
  315. br.Msg = "文档已被删除, 请刷新页面"
  316. return
  317. }
  318. br.Msg = "获取失败"
  319. br.ErrMsg = "获取文档信息失败, Err: " + e.Error()
  320. return
  321. }
  322. sectionOB := new(saModel.SaDocSection)
  323. sectionCond := fmt.Sprintf(` AND %s = ?`, saModel.SaDocSectionColumns.DocId)
  324. sectionPars := make([]interface{}, 0)
  325. sectionPars = append(sectionPars, item.SaDocId)
  326. sectionList, e := sectionOB.GetItemsByCondition(sectionCond, sectionPars, []string{}, "")
  327. if e != nil {
  328. br.Msg = "获取失败"
  329. br.ErrMsg = "获取段落信息失败, Err: " + e.Error()
  330. return
  331. }
  332. secIds := make([]int, 0)
  333. for _, s := range sectionList {
  334. secIds = append(secIds, s.SaDocSectionId)
  335. }
  336. useMap := make(map[int]int)
  337. usePartMap := make(map[int]int)
  338. if len(secIds) > 0 {
  339. useOB := new(saModel.SaCompareLabel)
  340. useCond := fmt.Sprintf(` AND %s IN (%s) AND %s = 0`, saModel.SaCompareLabelColumns.SectionId, utils.GetOrmInReplace(len(secIds)), saModel.SaCompareLabelColumns.IsPart)
  341. usePars := make([]interface{}, 0)
  342. usePars = append(usePars, secIds)
  343. countList, e := useOB.GetGroupCountByCondition(useCond, usePars, saModel.SaCompareLabelColumns.SectionId)
  344. if e != nil && !utils.IsErrNoRow(e) {
  345. br.Msg = "获取失败"
  346. br.ErrMsg = "获取标签段落引用数失败, Err: " + e.Error()
  347. return
  348. }
  349. for i := range countList {
  350. useMap[countList[i].SectionId] = countList[i].UseNum
  351. }
  352. usePartCond := fmt.Sprintf(` AND %s IN (%s) AND %s = 1`, saModel.SaCompareLabelColumns.SectionId, utils.GetOrmInReplace(len(secIds)), saModel.SaCompareLabelColumns.IsPart)
  353. usePartPars := make([]interface{}, 0)
  354. usePartPars = append(usePartPars, secIds)
  355. countPartList, e := useOB.GetGroupCountByCondition(usePartCond, usePartPars, saModel.SaCompareLabelColumns.SectionId)
  356. for i := range countPartList {
  357. usePartMap[countPartList[i].SectionId] = countPartList[i].UseNum
  358. }
  359. }
  360. secList := make([]*saModel.SaDocSectionItem, 0)
  361. for _, s := range sectionList {
  362. c := html.UnescapeString(s.Content)
  363. c = strings.ReplaceAll(c, `<p>`, "")
  364. c = strings.ReplaceAll(c, `</p>`, "")
  365. s.Content = c
  366. v := new(saModel.SaDocSectionItem)
  367. v.SaDocSection = *s
  368. v.UseNum = useMap[s.SaDocSectionId]
  369. v.UsePartNum = usePartMap[s.SaDocSectionId]
  370. secList = append(secList, v)
  371. }
  372. detail := new(saModel.SaDocDetail)
  373. detail.SaDocId = item.SaDocId
  374. detail.ClassifyId = item.ClassifyId
  375. detail.ClassifyName = item.ClassifyName
  376. detail.Title = item.Title
  377. detail.Theme = item.Theme
  378. detail.CoverImg = item.CoverImg
  379. detail.SysAdminId = item.SysAdminId
  380. detail.SysAdminName = item.SysAdminName
  381. detail.CreateTime = item.CreateTime.Format(utils.FormatDateTime)
  382. detail.SectionList = secList
  383. br.Data = detail
  384. br.Ret = 200
  385. br.Success = true
  386. br.Msg = "获取成功"
  387. }
  388. // @router /doc/page_list [get]
  389. func (this *SaDocController) PageList() {
  390. br := new(models.BaseResponse).Init()
  391. defer func() {
  392. if br.ErrMsg == "" {
  393. br.IsSendEmail = false
  394. }
  395. this.Data["json"] = br
  396. this.ServeJSON()
  397. }()
  398. keyword := this.GetString("Keyword", "")
  399. classifyId, _ := this.GetInt("ClassifyId", 0)
  400. var startSize int
  401. pageSize, _ := this.GetInt("PageSize")
  402. currentIndex, _ := this.GetInt("CurrentIndex")
  403. if pageSize <= 0 {
  404. pageSize = utils.PageSize20
  405. }
  406. if currentIndex <= 0 {
  407. currentIndex = 1
  408. }
  409. startSize = paging.StartIndex(currentIndex, pageSize)
  410. itemOB := new(saModel.SaDoc)
  411. cond := ``
  412. pars := make([]interface{}, 0)
  413. if keyword != "" {
  414. kw := "%" + keyword + "%"
  415. cond += fmt.Sprintf(` AND %s LIKE ?`, saModel.SaDocColumns.Title)
  416. pars = append(pars, kw)
  417. }
  418. if classifyId > 0 {
  419. cond += fmt.Sprintf(` AND %s = ?`, saModel.SaDocColumns.ClassifyId)
  420. pars = append(pars, classifyId)
  421. }
  422. total, list, e := itemOB.GetPageItemsByCondition(startSize, pageSize, cond, pars, []string{}, "sort ASC, create_time DESC, sa_doc_id ASC")
  423. if e != nil {
  424. br.Msg = "获取失败"
  425. br.ErrMsg = "获取文档列表失败, Err: " + e.Error()
  426. return
  427. }
  428. respList := make([]*saModel.SaDocItem, 0)
  429. for i := range list {
  430. v := new(saModel.SaDocItem)
  431. v.SaDocId = list[i].SaDocId
  432. v.ClassifyId = list[i].ClassifyId
  433. v.ClassifyName = list[i].ClassifyName
  434. v.CoverImg = list[i].CoverImg
  435. v.Title = list[i].Title
  436. v.Theme = list[i].Theme
  437. v.SysAdminId = list[i].SysAdminId
  438. v.SysAdminName = list[i].SysAdminName
  439. v.Sort = list[i].Sort
  440. v.CreateTime = list[i].CreateTime.Format(utils.FormatDateTime)
  441. respList = append(respList, v)
  442. }
  443. page := paging.GetPaging(currentIndex, pageSize, total)
  444. resp := &saModel.SaDocPageListResp{
  445. Paging: page,
  446. List: respList,
  447. }
  448. br.Data = resp
  449. br.Ret = 200
  450. br.Success = true
  451. br.Msg = "获取成功"
  452. }
  453. // @router /doc/move [post]
  454. func (this *SaDocController) Move() {
  455. br := new(models.BaseResponse).Init()
  456. defer func() {
  457. if br.ErrMsg == "" {
  458. br.IsSendEmail = false
  459. }
  460. this.Data["json"] = br
  461. this.ServeJSON()
  462. }()
  463. var req saModel.SaDocMoveReq
  464. if e := json.Unmarshal(this.Ctx.Input.RequestBody, &req); e != nil {
  465. br.Msg = "参数解析异常!"
  466. br.ErrMsg = "参数解析失败,Err:" + e.Error()
  467. return
  468. }
  469. if req.SaDocClassifyId <= 0 {
  470. br.Msg = "请选择分类"
  471. return
  472. }
  473. if req.SaDocId <= 0 {
  474. br.Msg = "参数异常"
  475. return
  476. }
  477. item := new(saModel.SaDoc)
  478. e := item.GetItemById(req.SaDocId)
  479. if e != nil {
  480. if utils.IsErrNoRow(e) {
  481. br.Msg = "文档已被删除, 请刷新页面"
  482. return
  483. }
  484. br.Msg = "操作失败"
  485. br.ErrMsg = "获取文档信息失败, Err: " + e.Error()
  486. return
  487. }
  488. originClassifyId := item.ClassifyId
  489. classifyItem := new(saModel.SaDocClassify)
  490. if e = classifyItem.GetItemById(req.SaDocClassifyId); e != nil {
  491. br.Msg = "分类信息有误"
  492. br.ErrMsg = "获取文档分类信息失败, Err: " + e.Error()
  493. return
  494. }
  495. if req.PrevSaDocId > 0 {
  496. prevDoc := new(saModel.SaDoc)
  497. if e = prevDoc.GetItemById(req.PrevSaDocId); e != nil {
  498. if utils.IsErrNoRow(e) {
  499. br.Msg = "上一个文档已被删除, 请刷新页面"
  500. return
  501. }
  502. br.Msg = "操作失败"
  503. br.ErrMsg = "获取上一个文档信息失败, Err: " + e.Error()
  504. return
  505. }
  506. if req.NextSaDocId > 0 {
  507. nextDoc := new(saModel.SaDoc)
  508. if e = nextDoc.GetItemById(req.NextSaDocId); e != nil {
  509. if utils.IsErrNoRow(e) {
  510. br.Msg = "下一个文档已被删除, 请刷新页面"
  511. return
  512. }
  513. br.Msg = "操作失败"
  514. br.ErrMsg = "获取下一个文档信息失败, Err: " + e.Error()
  515. return
  516. }
  517. if prevDoc.Sort == item.Sort || prevDoc.Sort == nextDoc.Sort {
  518. _ = saModel.UpdateSaDocSort(prevDoc.ClassifyId, prevDoc.Sort, prevDoc.SaDocId, `sort + 2`)
  519. } else {
  520. if nextDoc.Sort-prevDoc.Sort == 1 {
  521. _ = saModel.UpdateSaDocSort(prevDoc.ClassifyId, prevDoc.Sort, prevDoc.SaDocId, `sort + 1`)
  522. }
  523. }
  524. }
  525. item.Sort = prevDoc.Sort + 1
  526. } else {
  527. firstDoc, e := saModel.GetFirstSortSaDoc(req.SaDocClassifyId)
  528. if e != nil && !utils.IsErrNoRow(e) {
  529. br.Msg = "操作失败"
  530. br.ErrMsg = "获取首个文档失败, Err: " + e.Error()
  531. return
  532. }
  533. if firstDoc != nil && firstDoc.Sort == 0 {
  534. _ = saModel.UpdateSaDocSort(firstDoc.ClassifyId, 0, firstDoc.SaDocId-1, `sort + 1`)
  535. }
  536. item.Sort = 0
  537. }
  538. item.ClassifyId = classifyItem.SaDocClassifyId
  539. item.ClassifyName = classifyItem.ClassifyName
  540. item.ModifyTime = time.Now().Local()
  541. updateCols := []string{
  542. saModel.SaDocColumns.ClassifyId, saModel.SaDocColumns.ClassifyName, saModel.SaDocColumns.Sort, saModel.SaDocColumns.ModifyTime,
  543. }
  544. if e = item.Update(updateCols); e != nil {
  545. br.Msg = "操作失败"
  546. br.ErrMsg = "移动文档失败, Err: " + e.Error()
  547. return
  548. }
  549. if originClassifyId != req.SaDocClassifyId {
  550. go func() {
  551. sectionOB := new(saModel.SaDocSection)
  552. sectionCond := fmt.Sprintf(` AND %s = ?`, saModel.SaDocSectionColumns.DocId)
  553. sectionPars := make([]interface{}, 0)
  554. sectionPars = append(sectionPars, item.SaDocId)
  555. sections, e := sectionOB.GetItemsByCondition(sectionCond, sectionPars, []string{}, "")
  556. if e != nil {
  557. return
  558. }
  559. _ = services.HandleElasticSaDocAndSection(item, sections, []int{})
  560. }()
  561. }
  562. br.Ret = 200
  563. br.Success = true
  564. br.Msg = "操作成功"
  565. br.Data = item.SaDocId
  566. }