excel_info.go 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  1. package excel
  2. import (
  3. "eta_gn/eta_chart_lib/global"
  4. "eta_gn/eta_chart_lib/utils"
  5. "fmt"
  6. "time"
  7. )
  8. type ExcelInfo struct {
  9. ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
  10. Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,3:混合表格,4:自定义分析,默认:1"`
  11. ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
  12. ExcelName string `gorm:"column:excel_name" description:"表格名称"`
  13. UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
  14. ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
  15. SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
  16. SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
  17. Content string `gorm:"column:content" description:"表格内容"`
  18. ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
  19. FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
  20. Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
  21. IsDelete int `gorm:"column:is_delete" description:"是否删除,0:未删除,1:已删除"`
  22. ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
  23. CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
  24. IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  25. BalanceType int `gorm:"column:balance_type" description:"平衡表类型:0 动态表,1静态表"`
  26. UpdateUserId int `gorm:"column:update_user_id" description:"更新人id"`
  27. UpdateUserRealName string `gorm:"column:update_user_real_name" description:"更新人真实姓名"`
  28. RelExcelInfoId int `gorm:"column:rel_excel_info_id" description:"平衡表里静态表关联的动态表excel id"`
  29. VersionName string `gorm:"column:version_name" description:"静态表版本名称"`
  30. }
  31. func (excelInfo *ExcelInfo) Update(cols []string) (err error) {
  32. o := global.DmSQL["data"]
  33. err = o.Model(excelInfo).Select(cols).Updates(excelInfo).Error
  34. return
  35. }
  36. type MyExcelInfoList struct {
  37. ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
  38. Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
  39. ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
  40. ExcelName string `gorm:"column:excel_name" description:"表格名称"`
  41. UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
  42. ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
  43. SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
  44. SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
  45. ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
  46. FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
  47. Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
  48. ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
  49. CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
  50. IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  51. HaveOperaAuth bool `gorm:"column:have_opera_auth" description:"是否有数据权限"`
  52. }
  53. func AddExcelInfo(excelInfo *ExcelInfo, excelEdbMappingList []*ExcelEdbMapping) (err error) {
  54. o := global.DmSQL["data"].Begin()
  55. defer func() {
  56. if err != nil {
  57. _ = o.Rollback()
  58. } else {
  59. _ = o.Commit()
  60. }
  61. }()
  62. err = o.Create(excelInfo).Error
  63. if err != nil {
  64. return
  65. }
  66. dataNum := len(excelEdbMappingList)
  67. if dataNum > 0 {
  68. for k, v := range excelEdbMappingList {
  69. v.ExcelInfoId = excelInfo.ExcelInfoId
  70. excelEdbMappingList[k] = v
  71. }
  72. err = o.CreateInBatches(excelEdbMappingList, utils.MultiAddNum).Error
  73. }
  74. return
  75. }
  76. func EditExcelInfo(excelInfo *ExcelInfo, updateExcelInfoParams []string, excelEdbMappingList []*ExcelEdbMapping) (err error) {
  77. o := global.DmSQL["data"].Begin()
  78. defer func() {
  79. if err != nil {
  80. _ = o.Rollback()
  81. } else {
  82. _ = o.Commit()
  83. }
  84. }()
  85. err = o.Model(excelInfo).Select(updateExcelInfoParams).Updates(excelInfo).Error
  86. if err != nil {
  87. return
  88. }
  89. sql := `DELETE FROM excel_edb_mapping WHERE excel_info_id=? `
  90. err = o.Exec(sql, excelInfo.ExcelInfoId).Error
  91. if err != nil {
  92. return
  93. }
  94. dataNum := len(excelEdbMappingList)
  95. if dataNum > 0 {
  96. for k, v := range excelEdbMappingList {
  97. v.ExcelInfoId = excelInfo.ExcelInfoId
  98. excelEdbMappingList[k] = v
  99. }
  100. err = o.CreateInBatches(excelEdbMappingList, utils.MultiAddNum).Error
  101. }
  102. return
  103. }
  104. func GetExcelInfoAll() (items []*ExcelClassifyItems, err error) {
  105. o := global.DmSQL["data"]
  106. sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
  107. unique_code,sys_user_id,sys_user_real_name,is_join_permission
  108. FROM excel_info where is_delete=0 ORDER BY sort asc,create_time ASC `
  109. err = o.Raw(sql).Scan(&items).Error
  110. return
  111. }
  112. func GetNoContentExcelInfoAll(source, userId int) (items []*ExcelClassifyItems, err error) {
  113. o := global.DmSQL["data"]
  114. sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
  115. unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission
  116. FROM excel_info where is_delete=0 AND source = ? `
  117. pars := []interface{}{source}
  118. if userId > 0 {
  119. sql += ` AND sys_user_id = ? `
  120. pars = append(pars, userId)
  121. }
  122. sql += ` ORDER BY sort asc,excel_info_id desc `
  123. err = o.Raw(sql, pars...).Scan(&items).Error
  124. return
  125. }
  126. func GetAllExcelInfoBySource(source int) (items []*ExcelInfo, err error) {
  127. o := global.DmSQL["data"]
  128. sql := ` SELECT * FROM excel_info where is_delete=0 AND source = ? ORDER BY sort asc,create_time desc `
  129. err = o.Raw(sql, source).Scan(&items).Error
  130. return
  131. }
  132. func GetExcelInfoById(excelInfoId int) (item *ExcelInfo, err error) {
  133. o := global.DmSQL["data"]
  134. sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
  135. err = o.Raw(sql, excelInfoId).First(&item).Error
  136. return
  137. }
  138. func GetExcelInfoByUnicode(unicode string) (item *ExcelInfo, err error) {
  139. o := global.DmSQL["data"]
  140. sql := ` SELECT * FROM excel_info WHERE unique_code = ? AND is_delete = 0 `
  141. err = o.Raw(sql, unicode).First(&item).Error
  142. return
  143. }
  144. func GetExcelInfoViewById(excelInfoId int) (item *ExcelInfoView, err error) {
  145. o := global.DmSQL["data"]
  146. sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
  147. err = o.Raw(sql, excelInfoId).First(&item).Error
  148. return
  149. }
  150. func GetExcelInfoCountByCondition(condition string, pars []interface{}) (count int, err error) {
  151. o := global.DmSQL["data"]
  152. sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
  153. if condition != "" {
  154. sql += condition
  155. }
  156. err = o.Raw(sql, pars...).Scan(&count).Error
  157. return
  158. }
  159. func GetNoContentExcelInfoListByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*ExcelClassifyItems, err error) {
  160. o := global.DmSQL["data"]
  161. sql := `SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
  162. unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission FROM excel_info WHERE 1=1 `
  163. if condition != "" {
  164. sql += condition
  165. }
  166. sql += ` AND is_delete=0 ORDER BY excel_info_id DESC LIMIT ?,? `
  167. pars = append(pars, startSize, pageSize)
  168. err = o.Raw(sql, pars...).Scan(&items).Error
  169. return
  170. }
  171. func GetExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
  172. o := global.DmSQL["data"]
  173. sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
  174. if condition != "" {
  175. sql += condition
  176. }
  177. err = o.Raw(sql, pars...).First(&item).Error
  178. return
  179. }
  180. func GetNextExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
  181. o := global.DmSQL["data"]
  182. sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
  183. if condition != "" {
  184. sql += condition
  185. }
  186. sql += " ORDER BY sort asc , create_time desc LIMIT 1 "
  187. err = o.Raw(sql, pars...).First(&item).Error
  188. return
  189. }
  190. func GetNextExcelInfo(classifyId, classifySort, source int) (item *ExcelInfo, err error) {
  191. o := global.DmSQL["data"]
  192. sql := ` SELECT b.* FROM excel_classify AS a
  193. INNER JOIN excel_info AS b ON a.excel_classify_id=b.excel_classify_id
  194. WHERE (a.sort>? OR (a.sort=? and a.excel_classify_id>?) ) AND a.is_delete=0 AND b.is_delete=0
  195. AND a.source = ? AND b.source = ?
  196. ORDER BY a.sort ASC,b.sort asc,b.create_time desc
  197. LIMIT 1 `
  198. err = o.Raw(sql, classifySort, classifySort, classifyId, source, source).First(&item).Error
  199. return
  200. }
  201. func EditExcelInfoImage(excelInfoId int, imageUrl string) (err error) {
  202. o := global.DmSQL["data"]
  203. sql := ` UPDATE excel_info SET excel_image=?, modify_time = NOW() WHERE excel_info_id = ? AND is_delete=0 `
  204. err = o.Exec(sql, imageUrl, excelInfoId).Error
  205. if err != nil {
  206. fmt.Println("EditExcelInfoImage Err:", err.Error())
  207. return err
  208. }
  209. return
  210. }
  211. func GetExcelInfoByUniqueCode(uniqueCode string) (item *ExcelInfo, err error) {
  212. o := global.DmSQL["data"]
  213. sql := ` SELECT * FROM excel_info WHERE unique_code=? AND is_delete=0 `
  214. err = o.Raw(sql, uniqueCode).First(&item).Error
  215. return
  216. }
  217. func GetFirstExcelInfoByClassifyId(classifyId int) (item *ExcelInfo, err error) {
  218. o := global.DmSQL["data"]
  219. sql := ` SELECT * FROM excel_info WHERE excel_classify_id=? AND is_delete=0 order by sort asc,excel_info_id desc limit 1`
  220. err = o.Raw(sql, classifyId).First(&item).Error
  221. return
  222. }
  223. func UpdateExcelInfoSortByClassifyId(classifyId, nowSort, prevExcelInfoId int, updateSort string, source int) (err error) {
  224. o := global.DmSQL["data"]
  225. sql := ` update excel_info set sort = ` + updateSort + ` WHERE excel_classify_id=? AND source=? AND is_delete=0 AND ( sort > ? `
  226. if prevExcelInfoId > 0 {
  227. sql += ` or (excel_info_id < ` + fmt.Sprint(prevExcelInfoId) + ` and sort = ` + fmt.Sprint(nowSort) + `)`
  228. }
  229. sql += `)`
  230. err = o.Exec(sql, classifyId, source, nowSort).Error
  231. return
  232. }
  233. type ExcelInfoView struct {
  234. ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
  235. ExcelName string `gorm:"column:excel_name" description:"来源名称"`
  236. ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
  237. ExcelClassifyName string `gorm:"column:excel_classify_name" description:"表格名称"`
  238. SysUserId int `gorm:"column:sys_user_id"`
  239. SysUserRealName string `gorm:"column:sys_user_real_name"`
  240. UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
  241. CreateTime time.Time `gorm:"column:create_time"`
  242. ModifyTime time.Time `gorm:"column:modify_time"`
  243. DateType int `gorm:"column:date_type" description:"日期类型:1:00年至今,2:10年至今,3:15年至今,4:年初至今,5:自定义时间"`
  244. StartDate string `gorm:"column:start_date" description:"自定义开始日期"`
  245. EndDate string `gorm:"column:end_date" description:"自定义结束日期"`
  246. IsSetName int `gorm:"column:is_set_name" description:"设置名称"`
  247. EdbInfoIds string `gorm:"column:edb_info_ids" description:"指标id"`
  248. ExcelType int `gorm:"column:excel_type" description:"生成样式:1:曲线图,2:季节性图"`
  249. Calendar string `gorm:"column:calendar" description:"公历/农历"`
  250. SeasonStartDate string `gorm:"column:season_start_date" description:"季节性图开始日期"`
  251. SeasonEndDate string `gorm:"column:season_end_date" description:"季节性图结束日期"`
  252. ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
  253. Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
  254. IsAdd bool `gorm:"column:is_add" description:"true:已加入我的图库,false:未加入我的图库"`
  255. MyExcelId int `gorm:"column:my_excel_id"`
  256. MyExcelClassifyId string `gorm:"column:my_excel_classify_id" description:"我的表格分类,多个用逗号隔开"`
  257. ExcelClassify []*ExcelClassifyView
  258. EdbEndDate string `gorm:"column:edb_end_date" description:"指标最新更新日期"`
  259. LeftMin string `gorm:"column:left_min" description:"表格左侧最小值"`
  260. LeftMax string `gorm:"column:left_max" description:"表格左侧最大值"`
  261. RightMin string `gorm:"column:right_min" description:"表格右侧最小值"`
  262. RightMax string `gorm:"column:right_max" description:"表格右侧最大值"`
  263. }
  264. func GetExcelInfoByClassifyIdAndName(classifyId int, excelName string) (item *ExcelInfo, err error) {
  265. o := global.DmSQL["data"]
  266. sql := ` SELECT * FROM excel_info WHERE excel_classify_id = ? and excel_name=? AND is_delete=0 `
  267. err = o.Raw(sql, classifyId, excelName).First(&item).Error
  268. return
  269. }
  270. func GetNoContentExcelListByCondition(condition string, pars []interface{}, startSize, pageSize int) (item []*MyExcelInfoList, err error) {
  271. o := global.DmSQL["data"]
  272. sql := ` SELECT excel_info_id,source,excel_type,excel_name,unique_code,excel_classify_id,sys_user_id,sys_user_real_name,excel_image,file_url,sort,create_time,modify_time,is_join_permission
  273. FROM excel_info WHERE 1=1 AND is_delete=0 `
  274. if condition != "" {
  275. sql += condition
  276. }
  277. sql += " ORDER BY create_time DESC LIMIT ?,? "
  278. pars = append(pars, startSize, pageSize)
  279. err = o.Raw(sql, pars...).Scan(&item).Error
  280. return
  281. }
  282. func GetExcelListCountByCondition(condition string, pars []interface{}) (count int, err error) {
  283. o := global.DmSQL["data"]
  284. sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
  285. if condition != "" {
  286. sql += condition
  287. }
  288. err = o.Raw(sql, pars...).Scan(&count).Error
  289. return
  290. }
  291. func GetExcelViewInfoByExcelInfoId(excelInfoId int) (item *MyExcelInfoList, err error) {
  292. o := global.DmSQL["data"]
  293. sql := ` SELECT excel_info_id,source,excel_type,excel_name,unique_code,excel_classify_id,sys_user_id,sys_user_real_name,excel_image,file_url,sort,create_time,modify_time,is_join_permission FROM excel_info WHERE excel_info_id = ? AND is_delete=0 `
  294. err = o.Raw(sql, excelInfoId).First(&item).Error
  295. return
  296. }
  297. func GetExcelInfoCountByClassifyId(classifyId int) (total int64, err error) {
  298. o := global.DmSQL["data"]
  299. sql := ` SELECT count(1) total FROM excel_info WHERE excel_classify_id = ? AND is_delete=0 `
  300. err = o.Raw(sql, classifyId).Scan(&total).Error
  301. return
  302. }
  303. func UpdateExcelInfoClassifyId(classifyId, excelInfoId int) (err error) {
  304. o := global.DmSQL["data"]
  305. sql := ` update excel_info set excel_classify_id = ? WHERE excel_info_id=? `
  306. err = o.Exec(sql, classifyId, excelInfoId).Error
  307. return
  308. }
  309. func GetNoContentExcelInfoByName(excelName string, source int) (item *MyExcelInfoList, err error) {
  310. o := global.DmSQL["data"]
  311. sql := ` SELECT excel_info_id,source,excel_type,excel_name,unique_code,excel_classify_id,sys_user_id,sys_user_real_name,excel_image,file_url,sort,create_time,modify_time,is_join_permission
  312. FROM excel_info WHERE excel_name = ? AND source = ? AND is_delete=0 `
  313. err = o.Raw(sql, excelName, source).First(&item).Error
  314. return
  315. }
  316. func GetNoContentExcelInfoByUniqueCode(uniqueCode string) (item *MyExcelInfoList, err error) {
  317. o := global.DmSQL["data"]
  318. sql := ` SELECT excel_info_id,source,excel_type,excel_name,unique_code,excel_classify_id,sys_user_id,sys_user_real_name,excel_image,file_url,sort,create_time,modify_time,is_join_permission
  319. FROM excel_info WHERE unique_code=? AND is_delete=0 `
  320. err = o.Raw(sql, uniqueCode).First(&item).Error
  321. return
  322. }
  323. func GetNoContentExcelInfoByExcelId(excelInfoId int) (item *MyExcelInfoList, err error) {
  324. o := global.DmSQL["data"]
  325. sql := ` SELECT excel_info_id,source,excel_type,excel_name,unique_code,excel_classify_id,sys_user_id,sys_user_real_name,excel_image,file_url,sort,create_time,modify_time,is_join_permission
  326. FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
  327. err = o.Raw(sql, excelInfoId).First(&item).Error
  328. return
  329. }
  330. func AddExcelInfoAndSheet(excelInfo *ExcelInfo, sheetParamsList []AddExcelSheetParams) (err error) {
  331. o := global.DmSQL["data"].Begin()
  332. defer func() {
  333. if err != nil {
  334. _ = o.Rollback()
  335. } else {
  336. _ = o.Commit()
  337. }
  338. }()
  339. err = o.Create(excelInfo).Error
  340. if err != nil {
  341. return
  342. }
  343. for _, sheetInfo := range sheetParamsList {
  344. dataNum := len(sheetInfo.DataList)
  345. excelSheetInfo := &ExcelSheet{
  346. ExcelSheetId: 0,
  347. ExcelInfoId: excelInfo.ExcelInfoId,
  348. SheetName: sheetInfo.SheetName,
  349. PageNum: dataNum,
  350. Index: sheetInfo.Index,
  351. Sort: sheetInfo.Sort,
  352. Config: sheetInfo.Config,
  353. CalcChain: sheetInfo.CalcChain,
  354. ModifyTime: time.Now(),
  355. CreateTime: time.Now(),
  356. }
  357. tmpErr := o.Create(excelSheetInfo).Error
  358. if tmpErr != nil {
  359. err = tmpErr
  360. return
  361. }
  362. if dataNum > 0 {
  363. for k, _ := range sheetInfo.DataList {
  364. sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
  365. sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
  366. }
  367. tmpErr = o.CreateInBatches(sheetInfo.DataList, utils.MultiAddNum).Error
  368. if tmpErr != nil {
  369. err = tmpErr
  370. return
  371. }
  372. }
  373. }
  374. return
  375. }
  376. func SaveExcelInfoAndSheet(excelInfo *ExcelInfo, updateExcelInfoParam []string, sheetParamsList []AddExcelSheetParams) (err error) {
  377. o := global.DmSQL["data"].Begin()
  378. defer func() {
  379. if err != nil {
  380. _ = o.Rollback()
  381. } else {
  382. _ = o.Commit()
  383. }
  384. }()
  385. err = o.Model(excelInfo).Select(updateExcelInfoParam).Updates(excelInfo).Error
  386. if err != nil {
  387. return
  388. }
  389. sql := `DELETE FROM excel_sheet WHERE excel_info_id = ?`
  390. err = o.Exec(sql, excelInfo.ExcelInfoId).Error
  391. if err != nil {
  392. return
  393. }
  394. sql = `DELETE FROM excel_sheet_data WHERE excel_info_id = ?`
  395. err = o.Exec(sql, excelInfo.ExcelInfoId).Error
  396. if err != nil {
  397. return
  398. }
  399. for _, sheetInfo := range sheetParamsList {
  400. dataNum := len(sheetInfo.DataList)
  401. excelSheetInfo := &ExcelSheet{
  402. ExcelSheetId: 0,
  403. ExcelInfoId: excelInfo.ExcelInfoId,
  404. SheetName: sheetInfo.SheetName,
  405. PageNum: dataNum,
  406. Index: sheetInfo.Index,
  407. Sort: sheetInfo.Sort,
  408. Config: sheetInfo.Config,
  409. CalcChain: sheetInfo.CalcChain,
  410. ModifyTime: time.Now(),
  411. CreateTime: time.Now(),
  412. }
  413. tmpErr := o.Create(excelSheetInfo).Error
  414. if tmpErr != nil {
  415. err = tmpErr
  416. return
  417. }
  418. if dataNum > 0 {
  419. for k, _ := range sheetInfo.DataList {
  420. sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
  421. sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
  422. }
  423. tmpErr = o.CreateInBatches(sheetInfo.DataList, utils.MultiAddNum).Error
  424. if tmpErr != nil {
  425. err = tmpErr
  426. return
  427. }
  428. }
  429. }
  430. return
  431. }
  432. type BatchRefreshExcelReq struct {
  433. ExcelCodes []string `gorm:"column:excel_codes" description:"表格编码"`
  434. ReportId int `gorm:"column:report_id" description:"报告ID"`
  435. ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节ID"`
  436. Source string `gorm:"column:source" description:"来源,枚举值:report、english_report、smart_report"`
  437. }
  438. func GetExcelMaxSortByClassifyId(classifyId int, source int) (sort int, err error) {
  439. o := global.DmSQL["data"]
  440. sql := ` SELECT COALESCE(MAX(sort), 0) AS sort FROM excel_info WHERE excel_classify_id=? AND source = ? AND is_delete=0 order by sort desc,excel_info_id desc limit 1`
  441. err = o.Raw(sql, classifyId, source).Scan(&sort).Error
  442. return
  443. }
  444. func GetNoContentExcelListByExcelInfoIdList(excelInfoIdList []string) (items []*MyExcelInfoList, err error) {
  445. num := len(excelInfoIdList)
  446. if num <= 0 {
  447. return
  448. }
  449. o := global.DmSQL["data"]
  450. sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) order by excel_info_id DESC `
  451. err = o.Raw(sql, excelInfoIdList).Scan(&items).Error
  452. return
  453. }
  454. func GetNoContentExcelListByUserId(userIdList []int) (items []*MyExcelInfoList, err error) {
  455. num := len(userIdList)
  456. if num <= 0 {
  457. return
  458. }
  459. o := global.DmSQL["data"]
  460. sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) order by excel_info_id DESC `
  461. err = o.Raw(sql, userIdList).Scan(&items).Error
  462. return
  463. }
  464. func ModifyExcelInfoUserIdByCodeList(excelIdList []string, userId int, userName string) (err error) {
  465. num := len(excelIdList)
  466. if num <= 0 {
  467. return
  468. }
  469. o := global.DmSQL["data"]
  470. sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) `
  471. err = o.Exec(sql, userId, userName, excelIdList).Error
  472. return
  473. }
  474. func ModifyExcelInfoUserIdByOldUserId(oldUserIdList []int, userId int, userName string) (err error) {
  475. num := len(oldUserIdList)
  476. if num <= 0 {
  477. return
  478. }
  479. o := global.DmSQL["data"]
  480. sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE is_delete=0 AND sys_user_id in (` + utils.GetGormInReplace(num) + `) `
  481. err = o.Exec(sql, userId, userName, oldUserIdList).Error
  482. return
  483. }
  484. type ExcelInfoDetail struct {
  485. ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
  486. Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
  487. ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
  488. ExcelName string `gorm:"column:excel_name" description:"表格名称"`
  489. UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
  490. ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
  491. SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
  492. SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
  493. Content string `gorm:"column:content" description:"表格内容"`
  494. ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
  495. FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
  496. Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
  497. IsDelete int `gorm:"column:is_delete" description:"是否删除,0:未删除,1:已删除"`
  498. ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
  499. CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
  500. TableData interface{} `gorm:"column:table_data" description:"表格内容"`
  501. CanEdit bool `gorm:"column:can_edit" description:"是否可编辑"`
  502. Editor string `gorm:"column:editor" description:"编辑人"`
  503. IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
  504. HaveOperaAuth bool `gorm:"column:have_opera_auth" description:"是否有数据权限"`
  505. }