dictionary.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. package system
  2. import (
  3. "errors"
  4. "fmt"
  5. "go-nc/configs/global"
  6. "go-nc/internal/utils"
  7. "go-nc/model"
  8. "github.com/gin-gonic/gin"
  9. "github.com/jinzhu/copier"
  10. )
  11. // 创建字典
  12. func CreateDictionary(c *gin.Context) {
  13. type Param struct {
  14. Label string `json:"label" validate:"required"` // key
  15. Value string `json:"value" validate:"required"` // value
  16. TypeKey string `json:"typeKey" validate:"required"` // 类型
  17. TypeLabel string `json:"typeLabel" validate:"required"`
  18. Remark string `json:"remark" validate:"required"` // 备注
  19. }
  20. var param Param
  21. if err := c.ShouldBindJSON(&param); err != nil {
  22. c.Error(errors.New("缺少参数:" + err.Error()))
  23. return
  24. }
  25. err := utils.ValidateStruct(param)
  26. if err != nil {
  27. c.Error(err)
  28. return
  29. }
  30. // 验证字典是否存在
  31. // if err := verifyDictionary(param.TypeKey, param.Value); err != nil {
  32. // c.Error(err)
  33. // return
  34. // }
  35. // 获取token
  36. userInfoInterface, _ := c.Get("userInfo")
  37. userInfo, _ := userInfoInterface.(model.Sys_user)
  38. // 创建
  39. dictionary := model.Sys_dictionary{}
  40. dictionary.Label = param.Label
  41. dictionary.Value = param.Value
  42. dictionary.TypeKey = param.TypeKey
  43. dictionary.TypeLabel = param.TypeLabel
  44. dictionary.CreateUserId = userInfo.Id
  45. dictionary.Remark = param.Remark
  46. if err := global.App.DB.Create(&dictionary).Error; err != nil {
  47. c.Error(err)
  48. return
  49. }
  50. c.Set("res_data", "创建成功!")
  51. }
  52. // // 获取字典-下级:管理中使用
  53. // func GetDictionary(c *gin.Context) {
  54. // TypeKey := c.Query("typeKey")
  55. // if TypeKey == "" {
  56. // c.Error(errors.New("缺少参数:typeKey"))
  57. // return
  58. // }
  59. // var dictionary []model.Sys_dictionary
  60. // if err := global.App.DB.Where("type_key = ?", TypeKey).Find(&dictionary).Error; err != nil {
  61. // c.Error(err)
  62. // return
  63. // }
  64. // c.Set("res_data", dictionary)
  65. // }
  66. // 字典列表-上级: 管理中使用
  67. func DictionaryList(c *gin.Context) {
  68. type Param struct {
  69. TypeLabel string `json:"typeLabel"`
  70. TypeKey string `json:"typeKey"`
  71. }
  72. var param Param
  73. param.TypeLabel = ""
  74. param.TypeKey = ""
  75. if err := c.ShouldBindJSON(&param); err != nil {
  76. c.Error(errors.New("缺少参数:" + err.Error()))
  77. return
  78. }
  79. var data []model.Sys_dictionary
  80. if err := global.App.DB.Model(&model.Sys_dictionary{}).Select("id", "type_label", "type_key", "label", "value").
  81. Where("type_label LIKE ?", "%"+param.TypeLabel+"%").
  82. Where("type_key LIKE ?", "%"+param.TypeKey+"%").
  83. Find(&data).Error; err != nil {
  84. c.Error(err)
  85. return
  86. }
  87. // data根据对type_key去重
  88. type resultType struct {
  89. Id uint `json:"id"`
  90. TypeLabel string `json:"typeLabel"`
  91. TypeKey string `json:"typeKey"`
  92. Children []model.Sys_dictionary `json:"children"`
  93. }
  94. // 过滤重复的type_key
  95. var result []resultType
  96. for i, v := range data {
  97. if i == 0 {
  98. result = append(result, resultType{Id: v.Id, TypeLabel: v.TypeLabel, TypeKey: v.TypeKey, Children: []model.Sys_dictionary{}})
  99. }
  100. for j := 0; j < len(result); j++ {
  101. if result[j].TypeKey == v.TypeKey {
  102. result[j].Children = append(result[j].Children, model.Sys_dictionary{Model: model.Model{Id: v.Id}, Label: v.Label, Value: v.Value})
  103. break
  104. }
  105. if j == len(result)-1 {
  106. result = append(result, resultType{Id: v.Id, TypeLabel: v.TypeLabel, TypeKey: v.TypeKey, Children: []model.Sys_dictionary{}})
  107. result[j+1].Children = append(result[j+1].Children, model.Sys_dictionary{Model: model.Model{Id: v.Id}, Label: v.Label, Value: v.Value})
  108. break
  109. }
  110. }
  111. }
  112. c.Set("res_data", result)
  113. }
  114. // 删除字典
  115. func DeleteDictionary(c *gin.Context) {
  116. id := c.Query("id")
  117. if id == "" {
  118. c.Error(errors.New("缺少参数:id"))
  119. return
  120. }
  121. if err := global.App.DB.Delete(&model.Sys_dictionary{}, id).Error; err != nil {
  122. c.Error(err)
  123. return
  124. }
  125. c.Set("res_data", "删除成功!")
  126. }
  127. // 更新字典
  128. func UpdateDictionary(c *gin.Context) {
  129. type Param struct {
  130. Id uint `json:"id" validate:"required"`
  131. Label string `json:"label" validate:"required"` // key
  132. Value string `json:"value" validate:"required"` // value
  133. TypeKey string `json:"typeKey" validate:"required"` // 类型
  134. TypeLabel string `json:"typeLabel" validate:"required"`
  135. Remark string `json:"remark" validate:"required"` // 备注
  136. }
  137. var param Param
  138. if err := c.ShouldBindJSON(&param); err != nil {
  139. c.Error(errors.New("缺少参数:" + err.Error()))
  140. return
  141. }
  142. err := utils.ValidateStruct(param)
  143. if err != nil {
  144. c.Error(err)
  145. return
  146. }
  147. // 获取token
  148. userInfoInterface, _ := c.Get("userInfo")
  149. userInfo, _ := userInfoInterface.(model.Sys_user)
  150. // 创建
  151. dictionary := model.Sys_dictionary{}
  152. dictionary.Id = param.Id
  153. dictionary.Label = param.Label
  154. dictionary.Value = param.Value
  155. dictionary.TypeKey = param.TypeKey
  156. dictionary.TypeLabel = param.TypeLabel
  157. dictionary.UpdateUserId = userInfo.Id
  158. dictionary.Remark = param.Remark
  159. if err := global.App.DB.Updates(&dictionary).Error; err != nil {
  160. c.Error(err)
  161. return
  162. }
  163. c.Set("res_data", "修改成功!")
  164. }
  165. // // 验证字典是否存在
  166. // func verifyDictionary(label string, key string) error {
  167. // var dictionary model.Sys_dictionary
  168. // // 允许查询空出来的数据
  169. // if err := global.App.DB.
  170. // Where("label = ?", label).
  171. // Where("value = ?", key).
  172. // First(&dictionary).Error; err != nil {
  173. // if err == gorm.ErrRecordNotFound {
  174. // return nil
  175. // }
  176. // return err
  177. // }
  178. // if dictionary.Id != 0 {
  179. // return errors.New("该字典名称或者值已存在!")
  180. // }
  181. // return nil
  182. // }
  183. // 业务-获取
  184. func GetEnu(c *gin.Context) {
  185. TypeKey := c.Query("typeKey")
  186. if TypeKey == "" {
  187. c.Error(errors.New("缺少参数:typeKey"))
  188. return
  189. }
  190. var dictionary []model.Sys_dictionary
  191. if err := global.App.DB.Where("type_key = ?", TypeKey).Select("label", "value").Find(&dictionary).Error; err != nil {
  192. c.Error(err)
  193. return
  194. }
  195. fmt.Println("dictionary======", dictionary, TypeKey)
  196. type resultType struct {
  197. Label string `json:"label"`
  198. Value string `json:"value"`
  199. }
  200. var result []resultType
  201. copier.Copy(&result, &dictionary)
  202. c.Set("res_data", result)
  203. }