custom_analysis.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. package excel
  2. import (
  3. "encoding/json"
  4. "eta/eta_api/controllers"
  5. "eta/eta_api/models"
  6. excelModel "eta/eta_api/models/data_manage/excel"
  7. "eta/eta_api/models/data_manage/excel/request"
  8. "eta/eta_api/models/data_manage/excel/response"
  9. "eta/eta_api/services/data/excel"
  10. "eta/eta_api/utils"
  11. "strconv"
  12. "strings"
  13. "time"
  14. )
  15. // CustomAnalysisController 自定义分析
  16. type CustomAnalysisController struct {
  17. controllers.BaseAuthController
  18. }
  19. // ExcelByName
  20. // @Title 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  21. // @Description 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  22. // @Param ExcelName query string true "搜索关键词"
  23. // @Success 200 {object} response.ExcelListResp
  24. // @router /excel_by_name [get]
  25. func (c *CustomAnalysisController) ExcelByName() {
  26. br := new(models.BaseResponse).Init()
  27. defer func() {
  28. c.Data["json"] = br
  29. c.ServeJSON()
  30. }()
  31. sysUser := c.SysUser
  32. if sysUser == nil {
  33. br.Msg = "请登录"
  34. br.ErrMsg = "请登录,SysUser Is Empty"
  35. br.Ret = 408
  36. return
  37. }
  38. excelName := c.GetString("ExcelName")
  39. if excelName == `` {
  40. br.Msg = "请选择表格"
  41. br.ErrMsg = "ExcelName未传"
  42. br.IsSendEmail = false
  43. return
  44. }
  45. resp := response.FindExcelInfoResp{}
  46. excelName = utils.TrimLRStr(excelName)
  47. // 获取数据详情
  48. excelDetail, err := excelModel.GetNoContentExcelInfoByName(excelName, utils.CUSTOM_ANALYSIS_TABLE)
  49. if err != nil {
  50. if err.Error() == utils.ErrNoRow() {
  51. br.Ret = 200
  52. br.Success = true
  53. br.Msg = "获取成功"
  54. br.Data = resp
  55. return
  56. }
  57. br.Msg = "获取表格事变"
  58. br.ErrMsg = err.Error()
  59. return
  60. }
  61. resp.IsFind = true
  62. resp.ExcelInfo = excelDetail
  63. if excelDetail != nil {
  64. sheetList, err := excelModel.GetAllSheetItemList(excelDetail.ExcelInfoId)
  65. if err != nil {
  66. br.Msg = "获取sheet失败"
  67. br.ErrMsg = "获取sheet失败,err:" + err.Error()
  68. return
  69. }
  70. resp.SheetList = sheetList
  71. }
  72. //resp := response.ExcelListResp{
  73. // Paging: page,
  74. // List: list,
  75. //}
  76. br.Ret = 200
  77. br.Success = true
  78. br.Msg = "获取成功"
  79. br.Data = resp
  80. }
  81. // Add
  82. // @Title 新增表格接口
  83. // @Description 新增表格接口
  84. // @Param request body request.AddExcelInfoReq true "type json string"
  85. // @Success 200 {object} response.AddExcelInfoResp
  86. // @router /add [post]
  87. func (c *CustomAnalysisController) Add() {
  88. br := new(models.BaseResponse).Init()
  89. defer func() {
  90. c.Data["json"] = br
  91. c.ServeJSON()
  92. }()
  93. sysUser := c.SysUser
  94. if sysUser == nil {
  95. br.Msg = "请登录"
  96. br.ErrMsg = "请登录,SysUser Is Empty"
  97. br.Ret = 408
  98. return
  99. }
  100. deleteCache := true
  101. cacheKey := "CACHE_EXCEL_TABLE_INFO_ADD_" + strconv.Itoa(sysUser.AdminId)
  102. defer func() {
  103. if deleteCache {
  104. _ = utils.Rc.Delete(cacheKey)
  105. }
  106. }()
  107. if !utils.Rc.SetNX(cacheKey, 1, 30*time.Second) {
  108. deleteCache = false
  109. br.Msg = "系统处理中,请稍后重试!"
  110. br.ErrMsg = "系统处理中,请稍后重试!" + sysUser.RealName + ";data:" + string(c.Ctx.Input.RequestBody)
  111. return
  112. }
  113. var req request.AddExcelInfoReq
  114. err := json.Unmarshal(c.Ctx.Input.RequestBody, &req)
  115. if err != nil {
  116. br.Msg = "参数解析异常!"
  117. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  118. return
  119. }
  120. req.ExcelName = strings.Trim(req.ExcelName, " ")
  121. if req.ExcelName == "" {
  122. br.Msg = "请填写表格名称!"
  123. br.IsSendEmail = false
  124. return
  125. }
  126. if req.ExcelClassifyId <= 0 {
  127. br.Msg = "分类参数错误!"
  128. br.IsSendEmail = false
  129. return
  130. }
  131. excelInfo, err, errMsg, isSendEmail := excel.AddCustomAnalysisTable(utils.TrimLRStr(req.ExcelName), req.Content, req.ExcelImage, req.ExcelClassifyId, sysUser)
  132. if err != nil {
  133. br.Msg = "保存失败"
  134. if errMsg != `` {
  135. br.Msg = errMsg
  136. }
  137. br.ErrMsg = "保存失败,Err:" + err.Error()
  138. br.IsSendEmail = isSendEmail
  139. return
  140. }
  141. // 更新excel下载地址(默认的EXCEL需要更新,自定义表格不需要更新)
  142. //if req.Source == 1 {
  143. // go UpdateExcelInfoFileUrl(excelInfo)
  144. //}
  145. //
  146. resp := new(response.AddExcelInfoResp)
  147. resp.ExcelInfoId = excelInfo.ExcelInfoId
  148. resp.UniqueCode = excelInfo.UniqueCode
  149. //新增操作日志
  150. //{
  151. // excelLog := &data_manage.ExcelInfoLog{
  152. // //ExcelInfoLogId: 0,
  153. // ExcelInfoId: excelInfo.ExcelInfoId,
  154. // ExcelName: req.ExcelName,
  155. // ExcelClassifyId: req.ExcelClassifyId,
  156. // SysUserId: sysUser.AdminId,
  157. // SysUserRealName: sysUser.RealName,
  158. // UniqueCode: excelInfo.UniqueCode,
  159. // CreateTime: time.Now(),
  160. // Content: string(c.Ctx.Input.RequestBody),
  161. // Status: "新增表格",
  162. // Method: c.Ctx.Input.URI(),
  163. // }
  164. // go data_manage.AddExcelInfoLog(excelLog)
  165. //}
  166. br.Ret = 200
  167. br.Success = true
  168. br.Msg = "保存成功"
  169. br.Data = resp
  170. br.IsAddLog = false //数据量太大了,不写入日志吧
  171. }
  172. // Save
  173. // @Title 保存表格接口
  174. // @Description 保存表格接口
  175. // @Param request body request.AddExcelInfoReq true "type json string"
  176. // @Success 200 {object} response.AddExcelInfoResp
  177. // @router /save [post]
  178. func (c *CustomAnalysisController) Save() {
  179. br := new(models.BaseResponse).Init()
  180. defer func() {
  181. c.Data["json"] = br
  182. c.ServeJSON()
  183. }()
  184. sysUser := c.SysUser
  185. if sysUser == nil {
  186. br.Msg = "请登录"
  187. br.ErrMsg = "请登录,SysUser Is Empty"
  188. br.Ret = 408
  189. return
  190. }
  191. deleteCache := true
  192. cacheKey := "CACHE_EXCEL_TABLE_INFO_ADD_" + strconv.Itoa(sysUser.AdminId)
  193. defer func() {
  194. if deleteCache {
  195. _ = utils.Rc.Delete(cacheKey)
  196. }
  197. }()
  198. if !utils.Rc.SetNX(cacheKey, 1, 30*time.Second) {
  199. deleteCache = false
  200. br.Msg = "系统处理中,请稍后重试!"
  201. br.ErrMsg = "系统处理中,请稍后重试!" + sysUser.RealName + ";data:" + string(c.Ctx.Input.RequestBody)
  202. return
  203. }
  204. var req request.SaveExcelInfoReq
  205. err := json.Unmarshal(c.Ctx.Input.RequestBody, &req)
  206. if err != nil {
  207. br.Msg = "参数解析异常!"
  208. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  209. return
  210. }
  211. req.ExcelName = strings.Trim(req.ExcelName, " ")
  212. if req.ExcelName == "" {
  213. br.Msg = "请填写表格名称!"
  214. br.IsSendEmail = false
  215. return
  216. }
  217. if req.ExcelInfoId <= 0 {
  218. br.Msg = "请选择excel!"
  219. br.IsSendEmail = false
  220. return
  221. }
  222. if req.ExcelClassifyId <= 0 {
  223. br.Msg = "分类参数错误!"
  224. br.IsSendEmail = false
  225. return
  226. }
  227. excelInfo, err := excelModel.GetExcelInfoById(req.ExcelInfoId)
  228. if err != nil {
  229. br.Msg = "找不到该EXCEL!"
  230. br.ErrMsg = "找不到该EXCEL!err:" + err.Error()
  231. return
  232. }
  233. if excelInfo.Source != utils.CUSTOM_ANALYSIS_TABLE {
  234. br.Msg = "EXCEL异常!"
  235. br.IsSendEmail = false
  236. return
  237. }
  238. err, errMsg, isSendEmail := excel.SaveCustomAnalysisTable(excelInfo, utils.TrimLRStr(req.ExcelName), req.Content, req.ExcelImage, req.ExcelClassifyId, req.OpSheetList)
  239. if err != nil {
  240. br.Msg = "保存失败"
  241. if errMsg != `` {
  242. br.Msg = errMsg
  243. }
  244. br.ErrMsg = "保存失败,Err:" + err.Error()
  245. br.IsSendEmail = isSendEmail
  246. return
  247. }
  248. // 更新excel下载地址(默认的EXCEL需要更新,自定义表格不需要更新)
  249. //if req.Source == 1 {
  250. // go UpdateExcelInfoFileUrl(excelInfo)
  251. //}
  252. //
  253. resp := new(response.AddExcelInfoResp)
  254. resp.ExcelInfoId = excelInfo.ExcelInfoId
  255. resp.UniqueCode = excelInfo.UniqueCode
  256. //新增操作日志
  257. //{
  258. // excelLog := &data_manage.ExcelInfoLog{
  259. // //ExcelInfoLogId: 0,
  260. // ExcelInfoId: excelInfo.ExcelInfoId,
  261. // ExcelName: req.ExcelName,
  262. // ExcelClassifyId: req.ExcelClassifyId,
  263. // SysUserId: sysUser.AdminId,
  264. // SysUserRealName: sysUser.RealName,
  265. // UniqueCode: excelInfo.UniqueCode,
  266. // CreateTime: time.Now(),
  267. // Content: string(c.Ctx.Input.RequestBody),
  268. // Status: "新增表格",
  269. // Method: c.Ctx.Input.URI(),
  270. // }
  271. // go data_manage.AddExcelInfoLog(excelLog)
  272. //}
  273. br.Ret = 200
  274. br.Success = true
  275. br.Msg = "保存成功"
  276. br.Data = resp
  277. br.IsAddLog = false //数据量太大了,不写入日志吧
  278. }
  279. // BaseExcelDetail
  280. // @Title 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  281. // @Description 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  282. // @Param UniqueCode query string true "excel唯一编码"
  283. // @Success 200 {object} response.ExcelListResp
  284. // @router /excel/base [get]
  285. func (c *CustomAnalysisController) BaseExcelDetail() {
  286. br := new(models.BaseResponse).Init()
  287. defer func() {
  288. c.Data["json"] = br
  289. c.ServeJSON()
  290. }()
  291. sysUser := c.SysUser
  292. if sysUser == nil {
  293. br.Msg = "请登录"
  294. br.ErrMsg = "请登录,SysUser Is Empty"
  295. br.Ret = 408
  296. return
  297. }
  298. uniqueCode := c.GetString("UniqueCode")
  299. if uniqueCode == `` {
  300. br.Msg = "请选择表格"
  301. br.ErrMsg = "UniqueCode未传"
  302. br.IsSendEmail = false
  303. return
  304. }
  305. resp := response.FindExcelInfoResp{}
  306. // 获取数据详情
  307. excelDetail, err := excelModel.GetNoContentExcelInfoByUniqueCode(uniqueCode)
  308. if err != nil {
  309. if err.Error() == utils.ErrNoRow() {
  310. br.Ret = 200
  311. br.Success = true
  312. br.Msg = "获取成功"
  313. br.Data = resp
  314. return
  315. }
  316. br.Msg = "获取表格事变"
  317. br.ErrMsg = err.Error()
  318. return
  319. }
  320. resp.IsFind = true
  321. resp.ExcelInfo = excelDetail
  322. if excelDetail != nil {
  323. sheetList, err := excelModel.GetAllSheetItemList(excelDetail.ExcelInfoId)
  324. if err != nil {
  325. br.Msg = "获取sheet失败"
  326. br.ErrMsg = "获取sheet失败,err:" + err.Error()
  327. return
  328. }
  329. if len(sheetList) > 0 {
  330. sheetIdList := make([]int, 0)
  331. for _, v := range sheetList {
  332. sheetIdList = append(sheetIdList, v.ExcelSheetId)
  333. }
  334. // 获取所有sheet的第一页的数据
  335. sheetDataList, err := excelModel.GetSheetDataListBySheetIdListAndPage(sheetIdList, 1)
  336. if err != nil {
  337. br.Msg = "获取sheet中的数据失败"
  338. br.ErrMsg = "获取sheet中的数据失败,err:" + err.Error()
  339. return
  340. }
  341. sheetDataMap := make(map[int]*excelModel.ExcelSheetData)
  342. for _, v := range sheetDataList {
  343. sheetDataMap[v.ExcelSheetId] = v
  344. }
  345. for k, v := range sheetList {
  346. sheetData, ok := sheetDataMap[v.ExcelSheetId]
  347. if !ok {
  348. continue
  349. }
  350. v.Data = sheetData
  351. sheetList[k] = v
  352. }
  353. }
  354. // TODO 合并单元格信息、计算公式
  355. resp.SheetList = sheetList
  356. }
  357. //resp := response.ExcelListResp{
  358. // Paging: page,
  359. // List: list,
  360. //}
  361. br.Ret = 200
  362. br.Success = true
  363. br.Msg = "获取成功"
  364. br.Data = resp
  365. }
  366. // ExcelDataList
  367. // @Title 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  368. // @Description 根据excel名称获取表格详情(基础信息+第一页初始化数据)
  369. // @Param UniqueCode query string true "excel唯一编码"
  370. // @Param Page query int true "页码"
  371. // @Success 200 {object} response.ExcelListResp
  372. // @router /excel/data [get]
  373. func (c *CustomAnalysisController) ExcelDataList() {
  374. br := new(models.BaseResponse).Init()
  375. defer func() {
  376. c.Data["json"] = br
  377. c.ServeJSON()
  378. }()
  379. sysUser := c.SysUser
  380. if sysUser == nil {
  381. br.Msg = "请登录"
  382. br.ErrMsg = "请登录,SysUser Is Empty"
  383. br.Ret = 408
  384. return
  385. }
  386. uniqueCode := c.GetString("UniqueCode")
  387. if uniqueCode == `` {
  388. br.Msg = "请选择表格"
  389. br.ErrMsg = "UniqueCode未传"
  390. br.IsSendEmail = false
  391. return
  392. }
  393. page, _ := c.GetInt("Page")
  394. if page <= 0 {
  395. br.Msg = "页码异常"
  396. br.ErrMsg = "页码异常"
  397. br.IsSendEmail = false
  398. return
  399. }
  400. sheetList := make([]*excelModel.SheetItem, 0)
  401. // 获取数据详情
  402. excelDetail, err := excelModel.GetNoContentExcelInfoByUniqueCode(uniqueCode)
  403. if err != nil {
  404. if err.Error() == utils.ErrNoRow() {
  405. br.Ret = 200
  406. br.Success = true
  407. br.Msg = "获取成功"
  408. br.Data = sheetList
  409. return
  410. }
  411. br.Msg = "获取表格事变"
  412. br.ErrMsg = err.Error()
  413. return
  414. }
  415. if excelDetail.Source != utils.CUSTOM_ANALYSIS_TABLE {
  416. br.Msg = "excel异常"
  417. br.ErrMsg = "excel异常"
  418. br.IsSendEmail = false
  419. return
  420. }
  421. if excelDetail != nil {
  422. sheetList, err = excelModel.GetAllNoConfigSheetItemList(excelDetail.ExcelInfoId)
  423. if err != nil {
  424. br.Msg = "获取sheet失败"
  425. br.ErrMsg = "获取sheet失败,err:" + err.Error()
  426. return
  427. }
  428. if len(sheetList) > 0 {
  429. sheetIdList := make([]int, 0)
  430. for _, v := range sheetList {
  431. sheetIdList = append(sheetIdList, v.ExcelSheetId)
  432. }
  433. // 获取所有sheet的第一页的数据
  434. sheetDataList, err := excelModel.GetSheetDataListBySheetIdListAndPage(sheetIdList, page)
  435. if err != nil {
  436. br.Msg = "获取sheet中的数据失败"
  437. br.ErrMsg = "获取sheet中的数据失败,err:" + err.Error()
  438. return
  439. }
  440. sheetDataMap := make(map[int]*excelModel.ExcelSheetData)
  441. for _, v := range sheetDataList {
  442. sheetDataMap[v.ExcelSheetId] = v
  443. }
  444. for k, v := range sheetList {
  445. sheetData, ok := sheetDataMap[v.ExcelSheetId]
  446. if !ok {
  447. continue
  448. }
  449. v.Data = sheetData
  450. sheetList[k] = v
  451. }
  452. }
  453. // TODO 合并单元格信息、计算公式
  454. }
  455. //resp := response.ExcelListResp{
  456. // Paging: page,
  457. // List: list,
  458. //}
  459. br.Ret = 200
  460. br.Success = true
  461. br.Msg = "获取成功"
  462. br.Data = sheetList
  463. }