contract.go 8.0 KB

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