123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- package excel
- import (
- "eta_gn/eta_chart_lib/global"
- "eta_gn/eta_chart_lib/utils"
- "fmt"
- "time"
- )
- // ExcelInfo excel表格详情表
- //
- // type ExcelInfo struct {
- // ExcelInfoId int `orm:"column(excel_info_id);pk"`
- // Source int `description:"表格来源,1:excel插件的表格,2:自定义表格,3:混合表格,4:自定义分析,默认:1"`
- // ExcelType int `description:"表格类型,1:指标列,2:日期列,默认:1"`
- // ExcelName string `description:"表格名称"`
- // UniqueCode string `description:"表格唯一编码"`
- // ExcelClassifyId int `description:"表格分类id"`
- // SysUserId int `description:"操作人id"`
- // SysUserRealName string `description:"操作人真实姓名"`
- // Content string `description:"表格内容"`
- // ExcelImage string `description:"表格图片"`
- // FileUrl string `description:"表格下载地址"`
- // Sort int `description:"排序字段,数字越小越排前面"`
- // IsDelete int `description:"是否删除,0:未删除,1:已删除"`
- // ModifyTime time.Time `description:"最近修改日期"`
- // CreateTime time.Time `description:"创建日期"`
- // IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- // BalanceType int `description:"平衡表类型:0 动态表,1静态表"`
- // UpdateUserId int `description:"更新人id"`
- // UpdateUserRealName string `description:"更新人真实姓名"`
- // RelExcelInfoId int `description:"平衡表里静态表关联的动态表excel id"`
- // VersionName string `description:"静态表版本名称"`
- // }
- type ExcelInfo struct {
- ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
- Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,3:混合表格,4:自定义分析,默认:1"`
- ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
- ExcelName string `gorm:"column:excel_name" description:"表格名称"`
- UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
- ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
- SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
- SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
- Content string `gorm:"column:content" description:"表格内容"`
- ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
- FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
- Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
- IsDelete int `gorm:"column:is_delete" description:"是否删除,0:未删除,1:已删除"`
- ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
- CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
- IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- BalanceType int `gorm:"column:balance_type" description:"平衡表类型:0 动态表,1静态表"`
- UpdateUserId int `gorm:"column:update_user_id" description:"更新人id"`
- UpdateUserRealName string `gorm:"column:update_user_real_name" description:"更新人真实姓名"`
- RelExcelInfoId int `gorm:"column:rel_excel_info_id" description:"平衡表里静态表关联的动态表excel id"`
- VersionName string `gorm:"column:version_name" description:"静态表版本名称"`
- }
- // Update 更新 excel表格基础信息
- func (excelInfo *ExcelInfo) Update(cols []string) (err error) {
- o := global.DmSQL["data"]
- err = o.Model(excelInfo).Select(cols).Updates(excelInfo).Error
- return
- }
- // type MyExcelInfoList struct {
- // ExcelInfoId int `orm:"column(excel_info_id);pk"`
- // Source int `description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
- // ExcelType int `description:"表格类型,1:指标列,2:日期列,默认:1"`
- // ExcelName string `description:"表格名称"`
- // UniqueCode string `description:"表格唯一编码"`
- // ExcelClassifyId int `description:"表格分类id"`
- // SysUserId int `description:"操作人id"`
- // SysUserRealName string `description:"操作人真实姓名"`
- // ExcelImage string `description:"表格图片"`
- // FileUrl string `description:"表格下载地址"`
- // Sort int `description:"排序字段,数字越小越排前面"`
- // ModifyTime time.Time `description:"最近修改日期"`
- // CreateTime time.Time `description:"创建日期"`
- // IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- // HaveOperaAuth bool `description:"是否有数据权限"`
- // }
- type MyExcelInfoList struct {
- ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
- Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
- ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
- ExcelName string `gorm:"column:excel_name" description:"表格名称"`
- UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
- ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
- SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
- SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
- ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
- FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
- Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
- ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
- CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
- IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- HaveOperaAuth bool `gorm:"column:have_opera_auth" description:"是否有数据权限"`
- }
- // AddExcelInfo 新增表格
- func AddExcelInfo(excelInfo *ExcelInfo, excelEdbMappingList []*ExcelEdbMapping) (err error) {
- o := global.DmSQL["data"].Begin()
- defer func() {
- if err != nil {
- _ = o.Rollback()
- } else {
- _ = o.Commit()
- }
- }()
- // 表格信息入库
- err = o.Create(excelInfo).Error
- if err != nil {
- return
- }
- // excel与指标的关联关系
- dataNum := len(excelEdbMappingList)
- if dataNum > 0 {
- for k, v := range excelEdbMappingList {
- v.ExcelInfoId = excelInfo.ExcelInfoId
- excelEdbMappingList[k] = v
- }
- err = o.CreateInBatches(excelEdbMappingList, utils.MultiAddNum).Error
- }
- return
- }
- // EditExcelInfo 编辑表格
- func EditExcelInfo(excelInfo *ExcelInfo, updateExcelInfoParams []string, excelEdbMappingList []*ExcelEdbMapping) (err error) {
- o := global.DmSQL["data"].Begin()
- defer func() {
- if err != nil {
- _ = o.Rollback()
- } else {
- _ = o.Commit()
- }
- }()
- // ETA表格信息变更
- err = o.Model(excelInfo).Select(updateExcelInfoParams).Updates(excelInfo).Error
- if err != nil {
- return
- }
- // 删除关系表
- sql := `DELETE FROM excel_edb_mapping WHERE excel_info_id=? `
- err = o.Exec(sql, excelInfo.ExcelInfoId).Error
- if err != nil {
- return
- }
- // excel与指标的关联关系
- dataNum := len(excelEdbMappingList)
- if dataNum > 0 {
- for k, v := range excelEdbMappingList {
- v.ExcelInfoId = excelInfo.ExcelInfoId
- excelEdbMappingList[k] = v
- }
- err = o.CreateInBatches(excelEdbMappingList, utils.MultiAddNum).Error
- }
- return
- }
- // GetExcelInfoAll 获取所有表格列表,用于分类展示
- func GetExcelInfoAll() (items []*ExcelClassifyItems, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- unique_code,sys_user_id,sys_user_real_name,is_join_permission
- FROM excel_info where is_delete=0 ORDER BY sort asc,create_time ASC `
- err = o.Raw(sql).Scan(&items).Error
- return
- }
- // GetNoContentExcelInfoAll 获取不含content的表格列表 用于分类展示
- func GetNoContentExcelInfoAll(source, userId int) (items []*ExcelClassifyItems, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission
- FROM excel_info where is_delete=0 AND source = ? `
- pars := []interface{}{source}
- if userId > 0 {
- sql += ` AND sys_user_id = ? `
- pars = append(pars, userId)
- }
- sql += ` ORDER BY sort asc,excel_info_id desc `
- err = o.Raw(sql, pars...).Scan(&items).Error
- return
- }
- // GetAllExcelInfoBySource 根据来源获取包含content的表格列表
- func GetAllExcelInfoBySource(source int) (items []*ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info where is_delete=0 AND source = ? ORDER BY sort asc,create_time desc `
- err = o.Raw(sql, source).Scan(&items).Error
- return
- }
- // GetExcelInfoById 根据id 获取eta表格详情
- func GetExcelInfoById(excelInfoId int) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
- err = o.Raw(sql, excelInfoId).First(&item).Error
- return
- }
- // GetExcelInfoByUnicode 编码获取表格
- func GetExcelInfoByUnicode(unicode string) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE unique_code = ? AND is_delete = 0 `
- err = o.Raw(sql, unicode).First(&item).Error
- return
- }
- func GetExcelInfoViewById(excelInfoId int) (item *ExcelInfoView, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
- err = o.Raw(sql, excelInfoId).First(&item).Error
- return
- }
- func GetExcelInfoCountByCondition(condition string, pars []interface{}) (count int, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars...).Scan(&count).Error
- return
- }
- func GetNoContentExcelInfoListByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*ExcelClassifyItems, err error) {
- o := global.DmSQL["data"]
- sql := `SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission FROM excel_info WHERE 1=1 `
- if condition != "" {
- sql += condition
- }
- sql += ` AND is_delete=0 ORDER BY excel_info_id DESC LIMIT ?,? `
- pars = append(pars, startSize, pageSize)
- err = o.Raw(sql, pars...).Scan(&items).Error
- return
- }
- func GetExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars...).First(&item).Error
- return
- }
- // GetNextExcelInfoByCondition 根据条件获取下一个表格
- func GetNextExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
- if condition != "" {
- sql += condition
- }
- sql += " ORDER BY sort asc , create_time desc LIMIT 1 "
- err = o.Raw(sql, pars...).First(&item).Error
- return
- }
- // GetNextExcelInfo 根据分类id获取下一个excel表格
- func GetNextExcelInfo(classifyId, classifySort, source int) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT b.* FROM excel_classify AS a
- INNER JOIN excel_info AS b ON a.excel_classify_id=b.excel_classify_id
- WHERE (a.sort>? OR (a.sort=? and a.excel_classify_id>?) ) AND a.is_delete=0 AND b.is_delete=0
- AND a.source = ? AND b.source = ?
- ORDER BY a.sort ASC,b.sort asc,b.create_time desc
- LIMIT 1 `
- err = o.Raw(sql, classifySort, classifySort, classifyId, source, source).First(&item).Error
- return
- }
- // EditExcelInfoImage 修改excel表格的图片
- func EditExcelInfoImage(excelInfoId int, imageUrl string) (err error) {
- o := global.DmSQL["data"]
- sql := ` UPDATE excel_info SET excel_image=?, modify_time = NOW() WHERE excel_info_id = ? AND is_delete=0 `
- err = o.Exec(sql, imageUrl, excelInfoId).Error
- if err != nil {
- fmt.Println("EditExcelInfoImage Err:", err.Error())
- return err
- }
- return
- }
- // GetExcelInfoByUniqueCode 根据unique_code来获取excel表格详情
- func GetExcelInfoByUniqueCode(uniqueCode string) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE unique_code=? AND is_delete=0 `
- err = o.Raw(sql, uniqueCode).First(&item).Error
- return
- }
- // GetFirstExcelInfoByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
- func GetFirstExcelInfoByClassifyId(classifyId int) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_classify_id=? AND is_delete=0 order by sort asc,excel_info_id desc limit 1`
- err = o.Raw(sql, classifyId).First(&item).Error
- return
- }
- // UpdateExcelInfoSortByClassifyId 根据表格id更新排序
- func UpdateExcelInfoSortByClassifyId(classifyId, nowSort, prevExcelInfoId int, updateSort string, source int) (err error) {
- o := global.DmSQL["data"]
- sql := ` update excel_info set sort = ` + updateSort + ` WHERE excel_classify_id=? AND source=? AND is_delete=0 AND ( sort > ? `
- // todo 前一个兄弟节点后移
- if prevExcelInfoId > 0 {
- sql += ` or (excel_info_id < ` + fmt.Sprint(prevExcelInfoId) + ` and sort = ` + fmt.Sprint(nowSort) + `)`
- }
- sql += `)`
- err = o.Exec(sql, classifyId, source, nowSort).Error
- return
- }
- // AddExcelInfo 新增表格
- // func AddExcelInfo(excelInfo *ExcelInfo, excelEdbMappingList []*ExcelEdbMapping) (err error) {
- // o, err := orm.NewOrmUsingDB("data").Begin()
- // if err != nil {
- // return
- // }
- // defer func() {
- // if err != nil {
- // _ = o.Rollback()
- // } else {
- // _ = o.Commit()
- // }
- // }()
- // // 表格信息入库
- // lastId, err := o.Insert(excelInfo)
- // if err != nil {
- // return
- // }
- // excelInfo.ExcelInfoId = int(lastId)
- // // excel与指标的关联关系
- // dataNum := len(excelEdbMappingList)
- // if dataNum > 0 {
- // for k, v := range excelEdbMappingList {
- // v.ExcelInfoId = excelInfo.ExcelInfoId
- // excelEdbMappingList[k] = v
- // }
- // _, err = o.InsertMulti(dataNum, excelEdbMappingList)
- // }
- // return
- // }
- // // EditExcelInfo 编辑表格
- // func EditExcelInfo(excelInfo *ExcelInfo, updateExcelInfoParams []string, excelEdbMappingList []*ExcelEdbMapping) (err error) {
- // o, err := orm.NewOrmUsingDB("data").Begin()
- // if err != nil {
- // return
- // }
- // defer func() {
- // if err != nil {
- // _ = o.Rollback()
- // } else {
- // _ = o.Commit()
- // }
- // }()
- // // ETA表格信息变更
- // _, err = o.Update(excelInfo, updateExcelInfoParams...)
- // if err != nil {
- // return
- // }
- // // 删除关系表
- // sql := `DELETE FROM excel_edb_mapping WHERE excel_info_id=? `
- // _, err = o.Raw(sql, excelInfo.ExcelInfoId).Exec()
- // // excel与指标的关联关系
- // dataNum := len(excelEdbMappingList)
- // if dataNum > 0 {
- // for k, v := range excelEdbMappingList {
- // v.ExcelInfoId = excelInfo.ExcelInfoId
- // excelEdbMappingList[k] = v
- // }
- // _, err = o.InsertMulti(dataNum, excelEdbMappingList)
- // }
- // return
- // }
- // GetExcelInfoAll 获取所有表格列表,用于分类展示
- // func GetExcelInfoAll() (items []*ExcelClassifyItems, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- // unique_code,sys_user_id,sys_user_real_name,is_join_permission
- // FROM excel_info where is_delete=0 ORDER BY sort asc,create_time ASC `
- // _, err = o.Raw(sql).QueryRows(&items)
- // return
- // }
- // // GetNoContentExcelInfoAll 获取不含content的表格列表 用于分类展示
- // func GetNoContentExcelInfoAll(source, userId int) (items []*ExcelClassifyItems, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- // unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission
- // FROM excel_info where is_delete=0 AND source = ? `
- // pars := []interface{}{source}
- // if userId > 0 {
- // sql += ` AND sys_user_id = ? `
- // pars = append(pars, userId)
- // }
- // sql += ` ORDER BY sort asc,excel_info_id desc `
- // _, err = o.Raw(sql, pars...).QueryRows(&items)
- // return
- // }
- // // GetAllExcelInfoBySource 根据来源获取包含content的表格列表
- // func GetAllExcelInfoBySource(source int) (items []*ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info where is_delete=0 AND source = ? ORDER BY sort asc,create_time desc `
- // _, err = o.Raw(sql, source).QueryRows(&items)
- // return
- // }
- // // GetExcelInfoById 根据id 获取eta表格详情
- // func GetExcelInfoById(excelInfoId int) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
- // err = o.Raw(sql, excelInfoId).QueryRow(&item)
- // return
- // }
- // // GetExcelInfoByUnicode 编码获取表格
- // func GetExcelInfoByUnicode(unicode string) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE unique_code = ? AND is_delete = 0 `
- // err = o.Raw(sql, unicode).QueryRow(&item)
- // return
- // }
- // func GetExcelInfoViewById(excelInfoId int) (item *ExcelInfoView, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_info_id=? AND is_delete=0 `
- // err = o.Raw(sql, excelInfoId).QueryRow(&item)
- // return
- // }
- // func GetExcelInfoCountByCondition(condition string, pars []interface{}) (count int, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
- // if condition != "" {
- // sql += condition
- // }
- // err = o.Raw(sql, pars).QueryRow(&count)
- // return
- // }
- // func GetNoContentExcelInfoListByCondition(condition string, pars []interface{}, startSize, pageSize int) (items []*ExcelClassifyItems, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := `SELECT excel_info_id,excel_classify_id,excel_name AS excel_classify_name,
- // unique_code,sys_user_id,sys_user_real_name,sort,is_join_permission FROM excel_info WHERE 1=1 `
- // if condition != "" {
- // sql += condition
- // }
- // sql += ` AND is_delete=0 ORDER BY excel_info_id DESC LIMIT ?,? `
- // _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- // return
- // }
- // func GetExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
- // if condition != "" {
- // sql += condition
- // }
- // err = o.Raw(sql, pars).QueryRow(&item)
- // return
- // }
- // // GetNextExcelInfoByCondition 根据条件获取下一个表格
- // func GetNextExcelInfoByCondition(condition string, pars []interface{}) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE 1=1 AND is_delete=0 `
- // if condition != "" {
- // sql += condition
- // }
- // sql += " ORDER BY sort asc , create_time desc LIMIT 1 "
- // err = o.Raw(sql, pars).QueryRow(&item)
- // return
- // }
- // // GetNextExcelInfo 根据分类id获取下一个excel表格
- // func GetNextExcelInfo(classifyId, classifySort, source int) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT b.* FROM excel_classify AS a
- // INNER JOIN excel_info AS b ON a.excel_classify_id=b.excel_classify_id
- // WHERE (a.sort>? OR (a.sort=? and a.excel_classify_id>?) ) AND a.is_delete=0 AND b.is_delete=0
- // AND a.source = ? AND b.source = ?
- // ORDER BY a.sort ASC,b.sort asc,b.create_time desc
- // LIMIT 1 `
- // err = o.Raw(sql, classifySort, classifySort, classifyId, source, source).QueryRow(&item)
- // return
- // }
- // // EditExcelInfoImage 修改excel表格的图片
- // func EditExcelInfoImage(excelInfoId int, imageUrl string) (err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` UPDATE excel_info SET excel_image=?, modify_time = NOW() WHERE excel_info_id = ? AND is_delete=0 `
- // _, err = o.Raw(sql, imageUrl, excelInfoId).Exec()
- // if err != nil {
- // fmt.Println("EditExcelInfoImage Err:", err.Error())
- // return err
- // }
- // return
- // }
- // // GetExcelInfoByUniqueCode 根据unique_code来获取excel表格详情
- // func GetExcelInfoByUniqueCode(uniqueCode string) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE unique_code=? AND is_delete=0 `
- // err = o.Raw(sql, uniqueCode).QueryRow(&item)
- // return
- // }
- // // GetFirstExcelInfoByClassifyId 获取当前分类下,且排序数相同 的排序第一条的数据
- // func GetFirstExcelInfoByClassifyId(classifyId int) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_classify_id=? AND is_delete=0 order by sort asc,excel_info_id desc limit 1`
- // err = o.Raw(sql, classifyId).QueryRow(&item)
- // return
- // }
- // // UpdateExcelInfoSortByClassifyId 根据表格id更新排序
- // func UpdateExcelInfoSortByClassifyId(classifyId, nowSort, prevExcelInfoId int, updateSort string, source int) (err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` update excel_info set sort = ` + updateSort + ` WHERE excel_classify_id=? AND source=? AND is_delete=0 AND ( sort > ? `
- // // todo 前一个兄弟节点后移
- // if prevExcelInfoId > 0 {
- // sql += ` or (excel_info_id < ` + fmt.Sprint(prevExcelInfoId) + ` and sort = ` + fmt.Sprint(nowSort) + `)`
- // }
- // sql += `)`
- // _, err = o.Raw(sql, classifyId, source, nowSort).Exec()
- // return
- // }
- // type ExcelInfoView struct {
- // ExcelInfoId int `orm:"column(excel_info_id);pk"`
- // ExcelName string `description:"来源名称"`
- // ExcelClassifyId int `description:"表格分类id"`
- // ExcelClassifyName string `description:"表格名称"`
- // SysUserId int
- // SysUserRealName string
- // UniqueCode string `description:"表格唯一编码"`
- // CreateTime time.Time
- // ModifyTime time.Time
- // DateType int `description:"日期类型:1:00年至今,2:10年至今,3:15年至今,4:年初至今,5:自定义时间"`
- // StartDate string `description:"自定义开始日期"`
- // EndDate string `description:"自定义结束日期"`
- // IsSetName int `description:"设置名称"`
- // EdbInfoIds string `description:"指标id"`
- // ExcelType int `description:"生成样式:1:曲线图,2:季节性图"`
- // Calendar string `description:"公历/农历"`
- // SeasonStartDate string `description:"季节性图开始日期"`
- // SeasonEndDate string `description:"季节性图开始日期"`
- // ExcelImage string `description:"表格图片"`
- // Sort int `description:"排序字段,数字越小越排前面"`
- // IsAdd bool `description:"true:已加入我的图库,false:未加入我的图库"`
- // MyExcelId int
- // MyExcelClassifyId string `description:"我的表格分类,多个用逗号隔开"`
- // ExcelClassify []*ExcelClassifyView
- // EdbEndDate string `description:"指标最新更新日期"`
- // LeftMin string `description:"表格左侧最小值"`
- // LeftMax string `description:"表格左侧最大值"`
- // RightMin string `description:"表格右侧最小值"`
- // RightMax string `description:"表格右侧最大值"`
- // }
- type ExcelInfoView struct {
- ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
- ExcelName string `gorm:"column:excel_name" description:"来源名称"`
- ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
- ExcelClassifyName string `gorm:"column:excel_classify_name" description:"表格名称"`
- SysUserId int `gorm:"column:sys_user_id"`
- SysUserRealName string `gorm:"column:sys_user_real_name"`
- UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
- CreateTime time.Time `gorm:"column:create_time"`
- ModifyTime time.Time `gorm:"column:modify_time"`
- DateType int `gorm:"column:date_type" description:"日期类型:1:00年至今,2:10年至今,3:15年至今,4:年初至今,5:自定义时间"`
- StartDate string `gorm:"column:start_date" description:"自定义开始日期"`
- EndDate string `gorm:"column:end_date" description:"自定义结束日期"`
- IsSetName int `gorm:"column:is_set_name" description:"设置名称"`
- EdbInfoIds string `gorm:"column:edb_info_ids" description:"指标id"`
- ExcelType int `gorm:"column:excel_type" description:"生成样式:1:曲线图,2:季节性图"`
- Calendar string `gorm:"column:calendar" description:"公历/农历"`
- SeasonStartDate string `gorm:"column:season_start_date" description:"季节性图开始日期"`
- SeasonEndDate string `gorm:"column:season_end_date" description:"季节性图结束日期"`
- ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
- Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
- IsAdd bool `gorm:"column:is_add" description:"true:已加入我的图库,false:未加入我的图库"`
- MyExcelId int `gorm:"column:my_excel_id"`
- MyExcelClassifyId string `gorm:"column:my_excel_classify_id" description:"我的表格分类,多个用逗号隔开"`
- ExcelClassify []*ExcelClassifyView
- EdbEndDate string `gorm:"column:edb_end_date" description:"指标最新更新日期"`
- LeftMin string `gorm:"column:left_min" description:"表格左侧最小值"`
- LeftMax string `gorm:"column:left_max" description:"表格左侧最大值"`
- RightMin string `gorm:"column:right_min" description:"表格右侧最小值"`
- RightMax string `gorm:"column:right_max" description:"表格右侧最大值"`
- }
- // GetExcelInfoByClassifyIdAndName 根据分类id和表格名获取表格信息
- func GetExcelInfoByClassifyIdAndName(classifyId int, excelName string) (item *ExcelInfo, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_classify_id = ? and excel_name=? AND is_delete=0 `
- err = o.Raw(sql, classifyId, excelName).First(&item).Error
- return
- }
- // GetNoContentExcelListByCondition 获取没有content的excel表格列表数据
- func GetNoContentExcelListByCondition(condition string, pars []interface{}, startSize, pageSize int) (item []*MyExcelInfoList, err error) {
- o := global.DmSQL["data"]
- 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 1=1 AND is_delete=0 `
- if condition != "" {
- sql += condition
- }
- //sql += " ORDER BY sort ASC,chart_info_id DESC LIMIT ?,? "
- sql += " ORDER BY create_time DESC LIMIT ?,? "
- pars = append(pars, startSize, pageSize)
- err = o.Raw(sql, pars...).Scan(&item).Error
- return
- }
- func GetExcelListCountByCondition(condition string, pars []interface{}) (count int, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
- if condition != "" {
- sql += condition
- }
- err = o.Raw(sql, pars...).Scan(&count).Error
- return
- }
- // GetExcelViewInfoByExcelInfoId 根据excelInfoId 获取ETA表格详情
- func GetExcelViewInfoByExcelInfoId(excelInfoId int) (item *MyExcelInfoList, err error) {
- o := global.DmSQL["data"]
- 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 `
- err = o.Raw(sql, excelInfoId).First(&item).Error
- return
- }
- // GetExcelInfoCountByClassifyId 根据分类id获取名下表格数量
- func GetExcelInfoCountByClassifyId(classifyId int) (total int64, err error) {
- o := global.DmSQL["data"]
- sql := ` SELECT count(1) total FROM excel_info WHERE excel_classify_id = ? AND is_delete=0 `
- err = o.Raw(sql, classifyId).Scan(&total).Error
- return
- }
- // UpdateExcelInfoClassifyId 更改表格分类
- func UpdateExcelInfoClassifyId(classifyId, excelInfoId int) (err error) {
- o := global.DmSQL["data"]
- sql := ` update excel_info set excel_classify_id = ? WHERE excel_info_id=? `
- err = o.Exec(sql, classifyId, excelInfoId).Error
- return
- }
- // GetNoContentExcelInfoByName 根据名称 获取eta表格详情
- func GetNoContentExcelInfoByName(excelName string, source int) (item *MyExcelInfoList, err error) {
- o := global.DmSQL["data"]
- 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_name = ? AND source = ? AND is_delete=0 `
- err = o.Raw(sql, excelName, source).First(&item).Error
- return
- }
- // GetNoContentExcelInfoByUniqueCode 根据unique_code来获取excel表格详情
- func GetNoContentExcelInfoByUniqueCode(uniqueCode string) (item *MyExcelInfoList, err error) {
- o := global.DmSQL["data"]
- 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 unique_code=? AND is_delete=0 `
- err = o.Raw(sql, uniqueCode).First(&item).Error
- return
- }
- // GetNoContentExcelInfoByExcelId 根据表格id来获取excel表格详情
- func GetNoContentExcelInfoByExcelId(excelInfoId int) (item *MyExcelInfoList, err error) {
- o := global.DmSQL["data"]
- 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 `
- err = o.Raw(sql, excelInfoId).First(&item).Error
- return
- }
- // AddExcelInfoAndSheet 新增excel
- func AddExcelInfoAndSheet(excelInfo *ExcelInfo, sheetParamsList []AddExcelSheetParams) (err error) {
- o := global.DmSQL["data"].Begin()
- defer func() {
- if err != nil {
- _ = o.Rollback()
- } else {
- _ = o.Commit()
- }
- }()
- // 表格信息入库
- err = o.Create(excelInfo).Error
- if err != nil {
- return
- }
- // sheet信息入库
- for _, sheetInfo := range sheetParamsList {
- dataNum := len(sheetInfo.DataList)
- //sheet信息入库
- excelSheetInfo := &ExcelSheet{
- ExcelSheetId: 0,
- ExcelInfoId: excelInfo.ExcelInfoId,
- SheetName: sheetInfo.SheetName,
- PageNum: dataNum,
- Index: sheetInfo.Index,
- Sort: sheetInfo.Sort,
- Config: sheetInfo.Config,
- CalcChain: sheetInfo.CalcChain,
- ModifyTime: time.Now(),
- CreateTime: time.Now(),
- }
- tmpErr := o.Create(excelSheetInfo).Error
- if tmpErr != nil {
- err = tmpErr
- return
- }
- // data信息入库
- if dataNum > 0 {
- for k, _ := range sheetInfo.DataList {
- sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
- sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
- }
- tmpErr = o.CreateInBatches(sheetInfo.DataList, utils.MultiAddNum).Error
- if tmpErr != nil {
- err = tmpErr
- return
- }
- }
- }
- return
- }
- // SaveExcelInfoAndSheet 编辑保存
- func SaveExcelInfoAndSheet(excelInfo *ExcelInfo, updateExcelInfoParam []string, sheetParamsList []AddExcelSheetParams) (err error) {
- o := global.DmSQL["data"].Begin()
- defer func() {
- if err != nil {
- _ = o.Rollback()
- } else {
- _ = o.Commit()
- }
- }()
- // 表格信息入库
- err = o.Model(excelInfo).Select(updateExcelInfoParam).Updates(excelInfo).Error
- if err != nil {
- return
- }
- // 先删除历史的sheet信息
- sql := `DELETE FROM excel_sheet WHERE excel_info_id = ?`
- err = o.Exec(sql, excelInfo.ExcelInfoId).Error
- if err != nil {
- return
- }
- // 再删除历史sheet中的cell data信息
- sql = `DELETE FROM excel_sheet_data WHERE excel_info_id = ?`
- err = o.Exec(sql, excelInfo.ExcelInfoId).Error
- if err != nil {
- return
- }
- // sheet信息入库
- for _, sheetInfo := range sheetParamsList {
- dataNum := len(sheetInfo.DataList)
- //sheet信息入库
- excelSheetInfo := &ExcelSheet{
- ExcelSheetId: 0,
- ExcelInfoId: excelInfo.ExcelInfoId,
- SheetName: sheetInfo.SheetName,
- PageNum: dataNum,
- Index: sheetInfo.Index,
- Sort: sheetInfo.Sort,
- Config: sheetInfo.Config,
- CalcChain: sheetInfo.CalcChain,
- ModifyTime: time.Now(),
- CreateTime: time.Now(),
- }
- tmpErr := o.Create(excelSheetInfo).Error
- if tmpErr != nil {
- err = tmpErr
- return
- }
- // data信息入库
- if dataNum > 0 {
- for k, _ := range sheetInfo.DataList {
- sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
- sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
- }
- tmpErr = o.CreateInBatches(sheetInfo.DataList, utils.MultiAddNum).Error
- if tmpErr != nil {
- err = tmpErr
- return
- }
- }
- }
- return
- }
- // // GetExcelInfoByClassifyIdAndName 根据分类id和表格名获取表格信息
- // func GetExcelInfoByClassifyIdAndName(classifyId int, excelName string) (item *ExcelInfo, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_classify_id = ? and excel_name=? AND is_delete=0 `
- // err = o.Raw(sql, classifyId, excelName).QueryRow(&item)
- // return
- // }
- // // GetNoContentExcelListByCondition 获取没有content的excel表格列表数据
- // func GetNoContentExcelListByCondition(condition string, pars []interface{}, startSize, pageSize int) (item []*MyExcelInfoList, err error) {
- // o := orm.NewOrmUsingDB("data")
- // 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 1=1 AND is_delete=0 `
- // if condition != "" {
- // sql += condition
- // }
- // //sql += " ORDER BY sort ASC,chart_info_id DESC LIMIT ?,? "
- // sql += " ORDER BY create_time DESC LIMIT ?,? "
- // _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&item)
- // return
- // }
- // func GetExcelListCountByCondition(condition string, pars []interface{}) (count int, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT COUNT(1) AS count FROM excel_info WHERE 1=1 AND is_delete=0 `
- // if condition != "" {
- // sql += condition
- // }
- // err = o.Raw(sql, pars).QueryRow(&count)
- // return
- // }
- // // GetExcelViewInfoByExcelInfoId 根据excelInfoId 获取ETA表格详情
- // func GetExcelViewInfoByExcelInfoId(excelInfoId int) (item *MyExcelInfoList, err error) {
- // o := orm.NewOrmUsingDB("data")
- // 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 `
- // err = o.Raw(sql, excelInfoId).QueryRow(&item)
- // return
- // }
- // // GetExcelInfoCountByClassifyId 根据分类id获取名下表格数量
- // func GetExcelInfoCountByClassifyId(classifyId int) (total int64, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT count(1) total FROM excel_info WHERE excel_classify_id = ? AND is_delete=0 `
- // err = o.Raw(sql, classifyId).QueryRow(&total)
- // return
- // }
- // // UpdateExcelInfoClassifyId 更改表格分类
- // func UpdateExcelInfoClassifyId(classifyId, excelInfoId int) (err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` update excel_info set excel_classify_id = ? WHERE excel_info_id=? `
- // _, err = o.Raw(sql, classifyId, excelInfoId).Exec()
- // return
- // }
- // // GetNoContentExcelInfoByName 根据名称 获取eta表格详情
- // func GetNoContentExcelInfoByName(excelName string, source int) (item *MyExcelInfoList, err error) {
- // o := orm.NewOrmUsingDB("data")
- // 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_name = ? AND source = ? AND is_delete=0 `
- // err = o.Raw(sql, excelName, source).QueryRow(&item)
- // return
- // }
- // // GetNoContentExcelInfoByUniqueCode 根据unique_code来获取excel表格详情
- // func GetNoContentExcelInfoByUniqueCode(uniqueCode string) (item *MyExcelInfoList, err error) {
- // o := orm.NewOrmUsingDB("data")
- // 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 unique_code=? AND is_delete=0 `
- // err = o.Raw(sql, uniqueCode).QueryRow(&item)
- // return
- // }
- // // GetNoContentExcelInfoByExcelId 根据表格id来获取excel表格详情
- // func GetNoContentExcelInfoByExcelId(excelInfoId int) (item *MyExcelInfoList, err error) {
- // o := orm.NewOrmUsingDB("data")
- // 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 `
- // err = o.Raw(sql, excelInfoId).QueryRow(&item)
- // return
- // }
- // // AddExcelInfoAndSheet 新增excel
- // func AddExcelInfoAndSheet(excelInfo *ExcelInfo, sheetParamsList []AddExcelSheetParams) (err error) {
- // o, err := orm.NewOrmUsingDB("data").Begin()
- // if err != nil {
- // return
- // }
- // defer func() {
- // if err != nil {
- // _ = o.Rollback()
- // } else {
- // _ = o.Commit()
- // }
- // }()
- // // 表格信息入库
- // lastId, err := o.Insert(excelInfo)
- // if err != nil {
- // return
- // }
- // excelInfo.ExcelInfoId = int(lastId)
- // // sheet信息入库
- // for _, sheetInfo := range sheetParamsList {
- // dataNum := len(sheetInfo.DataList)
- // //sheet信息入库
- // excelSheetInfo := &ExcelSheet{
- // ExcelSheetId: 0,
- // ExcelInfoId: excelInfo.ExcelInfoId,
- // SheetName: sheetInfo.SheetName,
- // PageNum: dataNum,
- // Index: sheetInfo.Index,
- // Sort: sheetInfo.Sort,
- // Config: sheetInfo.Config,
- // CalcChain: sheetInfo.CalcChain,
- // ModifyTime: time.Now(),
- // CreateTime: time.Now(),
- // }
- // sheetId, tmpErr := o.Insert(excelSheetInfo)
- // if tmpErr != nil {
- // err = tmpErr
- // return
- // }
- // excelSheetInfo.ExcelSheetId = int(sheetId)
- // // data信息入库
- // if dataNum > 0 {
- // for k, _ := range sheetInfo.DataList {
- // sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
- // sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
- // }
- // _, tmpErr = o.InsertMulti(dataNum, sheetInfo.DataList)
- // if tmpErr != nil {
- // err = tmpErr
- // return
- // }
- // }
- // }
- // return
- // }
- // // SaveExcelInfoAndSheet 编辑保存
- // func SaveExcelInfoAndSheet(excelInfo *ExcelInfo, updateExcelInfoParam []string, sheetParamsList []AddExcelSheetParams) (err error) {
- // o, err := orm.NewOrmUsingDB("data").Begin()
- // if err != nil {
- // return
- // }
- // defer func() {
- // if err != nil {
- // _ = o.Rollback()
- // } else {
- // _ = o.Commit()
- // }
- // }()
- // // 表格信息入库
- // _, err = o.Update(excelInfo, updateExcelInfoParam...)
- // if err != nil {
- // return
- // }
- // // 先删除历史的sheet信息
- // sql := `DELETE FROM excel_sheet WHERE excel_info_id = ?`
- // _, err = o.Raw(sql, excelInfo.ExcelInfoId).Exec()
- // if err != nil {
- // return
- // }
- // // 再删除历史sheet中的cell data信息
- // sql = `DELETE FROM excel_sheet_data WHERE excel_info_id = ?`
- // _, err = o.Raw(sql, excelInfo.ExcelInfoId).Exec()
- // if err != nil {
- // return
- // }
- // // sheet信息入库
- // for _, sheetInfo := range sheetParamsList {
- // dataNum := len(sheetInfo.DataList)
- // //sheet信息入库
- // excelSheetInfo := &ExcelSheet{
- // ExcelSheetId: 0,
- // ExcelInfoId: excelInfo.ExcelInfoId,
- // SheetName: sheetInfo.SheetName,
- // PageNum: dataNum,
- // Index: sheetInfo.Index,
- // Sort: sheetInfo.Sort,
- // Config: sheetInfo.Config,
- // CalcChain: sheetInfo.CalcChain,
- // ModifyTime: time.Now(),
- // CreateTime: time.Now(),
- // }
- // sheetId, tmpErr := o.Insert(excelSheetInfo)
- // if tmpErr != nil {
- // err = tmpErr
- // return
- // }
- // excelSheetInfo.ExcelSheetId = int(sheetId)
- // // data信息入库
- // if dataNum > 0 {
- // for k, _ := range sheetInfo.DataList {
- // sheetInfo.DataList[k].ExcelSheetId = excelSheetInfo.ExcelSheetId
- // sheetInfo.DataList[k].ExcelInfoId = excelSheetInfo.ExcelInfoId
- // }
- // _, tmpErr = o.InsertMulti(dataNum, sheetInfo.DataList)
- // if tmpErr != nil {
- // err = tmpErr
- // return
- // }
- // }
- // }
- // return
- // }
- // type BatchRefreshExcelReq struct {
- // ExcelCodes []string `description:"表格编码"`
- // ReportId int `description:"报告ID"`
- // ReportChapterId int `description:"报告章节ID"`
- // Source string `description:"来源,枚举值:report、english_report、smart_report"`
- // }
- //
- // BatchRefreshExcelReq 批量刷新表格请求
- type BatchRefreshExcelReq struct {
- ExcelCodes []string `gorm:"column:excel_codes" description:"表格编码"`
- ReportId int `gorm:"column:report_id" description:"报告ID"`
- ReportChapterId int `gorm:"column:report_chapter_id" description:"报告章节ID"`
- Source string `gorm:"column:source" description:"来源,枚举值:report、english_report、smart_report"`
- }
- // GetExcelMaxSortByClassifyId 获取当前分类下,且排序数最大的excel
- func GetExcelMaxSortByClassifyId(classifyId int, source int) (sort int, err error) {
- o := global.DmSQL["data"]
- 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`
- err = o.Raw(sql, classifyId, source).Scan(&sort).Error
- return
- }
- // GetNoContentExcelListByExcelInfoIdList
- // @Description: 根据ETA表格ID列表获取列表信息
- // @param excelInfoIdList []string
- // @return items
- // @return err
- func GetNoContentExcelListByExcelInfoIdList(excelInfoIdList []string) (items []*MyExcelInfoList, err error) {
- num := len(excelInfoIdList)
- if num <= 0 {
- return
- }
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) order by excel_info_id DESC `
- err = o.Raw(sql, excelInfoIdList).Scan(&items).Error
- return
- }
- // GetNoContentExcelListByUserId
- // @Description: 根据ETA表格ID列表获取列表信息
- // @param userIdList []int
- // @return items
- // @return err
- func GetNoContentExcelListByUserId(userIdList []int) (items []*MyExcelInfoList, err error) {
- num := len(userIdList)
- if num <= 0 {
- return
- }
- o := global.DmSQL["data"]
- sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) order by excel_info_id DESC `
- err = o.Raw(sql, userIdList).Scan(&items).Error
- return
- }
- // // ModifyExcelInfoUserIdByCodeList
- // // @Description: 根据编码列表修改表格信息
- // // @author: Roc
- // // @datetime 2024-03-26 14:16:30
- // // @param excelIdList []string
- // // @param userId int
- // // @param userName string
- // // @return err error
- func ModifyExcelInfoUserIdByCodeList(excelIdList []string, userId int, userName string) (err error) {
- num := len(excelIdList)
- if num <= 0 {
- return
- }
- o := global.DmSQL["data"]
- sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE excel_info_id in (` + utils.GetGormInReplace(num) + `) `
- err = o.Exec(sql, userId, userName, excelIdList).Error
- return
- }
- // // ModifyExcelInfoUserIdByOldUserId
- // // @Description: 根据旧的用户id修改创建人
- // // @author: Roc
- // // @datetime 2024-03-25 19:14:59
- // // @param oldUserId int
- // // @param userId int
- // // @param userName string
- // // @return err error
- func ModifyExcelInfoUserIdByOldUserId(oldUserIdList []int, userId int, userName string) (err error) {
- num := len(oldUserIdList)
- if num <= 0 {
- return
- }
- o := global.DmSQL["data"]
- sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE is_delete=0 AND sys_user_id in (` + utils.GetGormInReplace(num) + `) `
- err = o.Exec(sql, userId, userName, oldUserIdList).Error
- return
- }
- // GetExcelMaxSortByClassifyId 获取当前分类下,且排序数最大的excel
- // func GetExcelMaxSortByClassifyId(classifyId int, source int) (sort int, err error) {
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT Max(sort) 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`
- // err = o.Raw(sql, classifyId, source).QueryRow(&sort)
- // return
- // }
- // // GetNoContentExcelListByExcelInfoIdList
- // // @Description: 根据ETA表格ID列表获取列表信息
- // // @param excelInfoIdList []string
- // // @return items
- // // @return err
- // func GetNoContentExcelListByExcelInfoIdList(excelInfoIdList []string) (items []*MyExcelInfoList, err error) {
- // num := len(excelInfoIdList)
- // if num <= 0 {
- // return
- // }
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetOrmInReplace(num) + `) order by excel_info_id DESC `
- // _, err = o.Raw(sql, excelInfoIdList).QueryRows(&items)
- // return
- // }
- // // GetNoContentExcelListByUserId
- // // @Description: 根据ETA表格ID列表获取列表信息
- // // @param userIdList []int
- // // @return items
- // // @return err
- // func GetNoContentExcelListByUserId(userIdList []int) (items []*MyExcelInfoList, err error) {
- // num := len(userIdList)
- // if num <= 0 {
- // return
- // }
- // o := orm.NewOrmUsingDB("data")
- // sql := ` SELECT * FROM excel_info WHERE excel_info_id in (` + utils.GetOrmInReplace(num) + `) order by excel_info_id DESC `
- // _, err = o.Raw(sql, userIdList).QueryRows(&items)
- // return
- // }
- // // ModifyExcelInfoUserIdByCodeList
- // // @Description: 根据编码列表修改表格信息
- // // @author: Roc
- // // @datetime 2024-03-26 14:16:30
- // // @param excelIdList []string
- // // @param userId int
- // // @param userName string
- // // @return err error
- // func ModifyExcelInfoUserIdByCodeList(excelIdList []string, userId int, userName string) (err error) {
- // num := len(excelIdList)
- // if num <= 0 {
- // return
- // }
- // o := orm.NewOrmUsingDB("data")
- // sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE excel_info_id in (` + utils.GetOrmInReplace(num) + `) `
- // _, err = o.Raw(sql, userId, userName, excelIdList).Exec()
- // return
- // }
- // // ModifyExcelInfoUserIdByOldUserId
- // // @Description: 根据旧的用户id修改创建人
- // // @author: Roc
- // // @datetime 2024-03-25 19:14:59
- // // @param oldUserId int
- // // @param userId int
- // // @param userName string
- // // @return err error
- // func ModifyExcelInfoUserIdByOldUserId(oldUserIdList []int, userId int, userName string) (err error) {
- // num := len(oldUserIdList)
- // if num <= 0 {
- // return
- // }
- // o := orm.NewOrmUsingDB("data")
- // sql := `UPDATE excel_info SET sys_user_id=?,sys_user_real_name=? WHERE is_delete=0 AND sys_user_id in (` + utils.GetOrmInReplace(num) + `) `
- // _, err = o.Raw(sql, userId, userName, oldUserIdList).Exec()
- // return
- // }
- // type ExcelInfoDetail struct {
- // ExcelInfoId int `orm:"column(excel_info_id);pk"`
- // Source int `description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
- // ExcelType int `description:"表格类型,1:指标列,2:日期列,默认:1"`
- // ExcelName string `description:"表格名称"`
- // UniqueCode string `description:"表格唯一编码"`
- // ExcelClassifyId int `description:"表格分类id"`
- // SysUserId int `description:"操作人id"`
- // SysUserRealName string `description:"操作人真实姓名"`
- // Content string `description:"表格内容"`
- // ExcelImage string `description:"表格图片"`
- // FileUrl string `description:"表格下载地址"`
- // Sort int `description:"排序字段,数字越小越排前面"`
- // IsDelete int `description:"是否删除,0:未删除,1:已删除"`
- // ModifyTime time.Time `description:"最近修改日期"`
- // CreateTime time.Time `description:"创建日期"`
- // TableData interface{} `description:"表格内容"`
- // //Button ExcelInfoDetailButton `description:"操作权限"`
- // CanEdit bool `description:"是否可编辑"`
- // Editor string `description:"编辑人"`
- // IsJoinPermission int `description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- // HaveOperaAuth bool `description:"是否有数据权限"`
- // }
- //
- // ExcelInfoDetail excel表格详情(前端使用)
- type ExcelInfoDetail struct {
- ExcelInfoId int `gorm:"column:excel_info_id;primaryKey" orm:"column(excel_info_id);pk"`
- Source int `gorm:"column:source" description:"表格来源,1:excel插件的表格,2:自定义表格,默认:1"`
- ExcelType int `gorm:"column:excel_type" description:"表格类型,1:指标列,2:日期列,默认:1"`
- ExcelName string `gorm:"column:excel_name" description:"表格名称"`
- UniqueCode string `gorm:"column:unique_code" description:"表格唯一编码"`
- ExcelClassifyId int `gorm:"column:excel_classify_id" description:"表格分类id"`
- SysUserId int `gorm:"column:sys_user_id" description:"操作人id"`
- SysUserRealName string `gorm:"column:sys_user_real_name" description:"操作人真实姓名"`
- Content string `gorm:"column:content" description:"表格内容"`
- ExcelImage string `gorm:"column:excel_image" description:"表格图片"`
- FileUrl string `gorm:"column:file_url" description:"表格下载地址"`
- Sort int `gorm:"column:sort" description:"排序字段,数字越小越排前面"`
- IsDelete int `gorm:"column:is_delete" description:"是否删除,0:未删除,1:已删除"`
- ModifyTime time.Time `gorm:"column:modify_time" description:"最近修改日期"`
- CreateTime time.Time `gorm:"column:create_time" description:"创建日期"`
- TableData interface{} `gorm:"column:table_data" description:"表格内容"`
- CanEdit bool `gorm:"column:can_edit" description:"是否可编辑"`
- Editor string `gorm:"column:editor" description:"编辑人"`
- IsJoinPermission int `gorm:"column:is_join_permission" description:"是否加入权限管控,0:不加入;1:加入;默认:0"`
- HaveOperaAuth bool `gorm:"column:have_opera_auth" description:"是否有数据权限"`
- }
|