contract.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. package crm
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/go-playground/validator/v10"
  5. "hongze/fms_api/controller/resp"
  6. "hongze/fms_api/global"
  7. "hongze/fms_api/models/base"
  8. "hongze/fms_api/models/crm"
  9. "hongze/fms_api/models/system"
  10. "hongze/fms_api/utils"
  11. "strings"
  12. )
  13. // ContractController CRM系统合同
  14. type ContractController struct{}
  15. // SearchList
  16. // @Title 搜索合同
  17. // @Description 搜索合同
  18. // @Param Keyword query string false "关键词"
  19. // @Param ProductId query int false "合同类型: 0-全部; 1-FICC; 2-权益"
  20. // @Success 200 {object} crm.ContractSearchListResp
  21. // @router /crm/contract/search_list [get]
  22. func (rg *ContractController) SearchList(c *gin.Context) {
  23. var req crm.ContractSearchListReq
  24. if e := c.BindQuery(&req); e != nil {
  25. err, ok := e.(validator.ValidationErrors)
  26. if !ok {
  27. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  28. return
  29. }
  30. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  31. return
  32. }
  33. // 补充协议暂不查询
  34. cond := `status IN ('已审批', '已签回') AND contract_type IN ('新签合同', '续约合同')`
  35. pars := make([]interface{}, 0)
  36. if req.Keyword != "" {
  37. kw := "%" + req.Keyword + "%"
  38. cond += ` AND (company_name LIKE ? OR contract_code LIKE ?)`
  39. pars = append(pars, kw, kw)
  40. }
  41. if req.ProductId > 0 {
  42. cond += ` AND product_id = ?`
  43. pars = append(pars, req.ProductId)
  44. }
  45. page := new(base.Page)
  46. page.SetPageSize(req.PageSize)
  47. page.SetCurrent(req.Current)
  48. page.AddOrderItem(base.OrderItem{Column: "create_time", Asc: false})
  49. ob := new(crm.Contract)
  50. total, list, e := ob.PageList(page, cond, pars)
  51. if e != nil {
  52. resp.FailMsg("获取失败", "获取合同登记列表, Err: "+e.Error(), c)
  53. return
  54. }
  55. // 获取代付合同实际使用方
  56. peyContractIds := make([]int, 0)
  57. for i := range list {
  58. if list[i].ContractBusinessType == "代付合同" {
  59. peyContractIds = append(peyContractIds, list[i].ContractId)
  60. }
  61. }
  62. payCompanyMap := make(map[int]string, 0)
  63. if len(peyContractIds) > 0 {
  64. payCond := `a.status IN ('已签回', '已审批') AND b.payment_on_behalf_contract_id IN ?`
  65. payPars := make([]interface{}, 0)
  66. payPars = append(payPars, peyContractIds)
  67. payList, e := crm.GetPayCompanyByContractIds(payCond, payPars)
  68. if e != nil {
  69. resp.FailMsg("获取失败", "获取代付合同信息失败, Err: "+e.Error(), c)
  70. return
  71. }
  72. for i := range payList {
  73. payCompanyMap[payList[i].PayOnBehalfContractId] = payList[i].CompanyName
  74. }
  75. }
  76. respList := make([]*crm.ContractSearchListResp, 0)
  77. for i := range list {
  78. respList = append(respList, &crm.ContractSearchListResp{
  79. ContractId: list[i].ContractId,
  80. ContractCode: list[i].ContractCode,
  81. ProductId: list[i].ProductId,
  82. CompanyName: list[i].CompanyName,
  83. PayCompanyName: payCompanyMap[list[i].ContractId],
  84. SellerId: list[i].SellerId,
  85. SellerName: list[i].SellerName,
  86. ContractTypeKey: crm.ContractTypeFmsMap[list[i].ContractType],
  87. ContractType: list[i].ContractType,
  88. Price: list[i].Price,
  89. StartDate: utils.TimeTransferString(utils.FormatDate, list[i].StartDate),
  90. EndDate: utils.TimeTransferString(utils.FormatDate, list[i].EndDate),
  91. })
  92. }
  93. page.SetTotal(total)
  94. baseData := new(base.BaseData)
  95. baseData.SetPage(page)
  96. baseData.SetList(respList)
  97. resp.OkData("获取成功", baseData, c)
  98. }
  99. // PermissionList
  100. // @Title 合同品种列表
  101. // @Description 合同品种列表
  102. // @Param ProductId query int false "品种类型: 1-FICC(默认); 2-权益"
  103. // @Success 200 {object} crm.PermissionSetResp
  104. // @router /crm/contract/permission_list [get]
  105. func (rg *ContractController) PermissionList(c *gin.Context) {
  106. var req crm.ContractPermissionListReq
  107. if e := c.BindQuery(&req); e != nil {
  108. err, ok := e.(validator.ValidationErrors)
  109. if !ok {
  110. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  111. return
  112. }
  113. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  114. return
  115. }
  116. // 默认FICC
  117. productId := req.ProductId
  118. if productId == 0 {
  119. productId = 1
  120. }
  121. respList := new(crm.PermissionSetResp)
  122. // FICC
  123. if productId == 1 {
  124. // 获取品种分类配置
  125. sysConf := new(system.SysConfig)
  126. confCond := `config_code = ?`
  127. confPars := make([]interface{}, 0)
  128. confPars = append(confPars, system.ConfigKeyCrmPermissionFiccClassify)
  129. confItem, e := sysConf.FetchByCondition(confCond, confPars)
  130. if e != nil {
  131. resp.FailData("获取失败", "Err:"+e.Error(), c)
  132. return
  133. }
  134. if confItem.ConfigValue == "" {
  135. resp.FailData("获取失败", "FICC品种分类配置为空", c)
  136. return
  137. }
  138. classifyArr := strings.Split(confItem.ConfigValue, ",")
  139. if len(classifyArr) == 0 {
  140. resp.FailData("获取失败", "FICC品种分类配置为空", c)
  141. return
  142. }
  143. // 获取FICC权限
  144. ficcCond := `enabled = 1 AND permission_type = 0 AND product_id = ? AND classify_name IN ?`
  145. ficcPars := make([]interface{}, 0)
  146. ficcPars = append(ficcPars, productId, classifyArr)
  147. items, e := crm.GetPermissionSetItemsByCondition(ficcCond, ficcPars)
  148. if e != nil {
  149. resp.FailData("获取失败", "获取FICC权限信息失败, Err: "+e.Error(), c)
  150. return
  151. }
  152. ficcItemMap := make(map[string][]*crm.PermissionSetItem, 0)
  153. for i := range items {
  154. if ficcItemMap[items[i].ClassifyName] == nil {
  155. ficcItemMap[items[i].ClassifyName] = make([]*crm.PermissionSetItem, 0)
  156. }
  157. ficcItemMap[items[i].ClassifyName] = append(ficcItemMap[items[i].ClassifyName], items[i])
  158. }
  159. for i := range classifyArr {
  160. if classifyArr[i] == "市场策略" {
  161. continue
  162. }
  163. checkList := make([]int, 0)
  164. if classifyArr[i] == "宏观经济" {
  165. checkList = append(checkList, 1)
  166. }
  167. p := new(crm.PermissionSetList)
  168. p.ClassifyName = classifyArr[i]
  169. p.Items = ficcItemMap[classifyArr[i]]
  170. p.CheckList = make([]int, 0)
  171. respList.List = append(respList.List, p)
  172. }
  173. }
  174. // 权益
  175. if productId == 2 {
  176. raiCond := `enabled = 1 AND permission_type = 0 AND product_id = ? AND classify_name = ?`
  177. raiPars := make([]interface{}, 0)
  178. raiPars = append(raiPars, productId, crm.CompanyProductRaiName)
  179. items, e := crm.GetPermissionSetItemsByCondition(raiCond, raiPars)
  180. if e != nil {
  181. resp.FailData("获取失败", "获取权益权限信息失败, Err: "+e.Error(), c)
  182. return
  183. }
  184. p := new(crm.PermissionSetList)
  185. p.ClassifyName = crm.CompanyProductRaiName
  186. p.Items = items
  187. p.CheckList = make([]int, 0)
  188. respList.List = append(respList.List, p)
  189. }
  190. resp.OkData("获取成功", respList, c)
  191. }