contract.go 8.6 KB

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