contract.go 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. businessContractIds := make([]int, 0)
  58. payContractIds := make([]int, 0)
  59. for i := range list {
  60. if list[i].ContractBusinessType == crm.ContractTypePayment {
  61. payContractIds = append(payContractIds, list[i].ContractId)
  62. } else {
  63. businessContractIds = append(businessContractIds, list[i].ContractId)
  64. }
  65. }
  66. payCompanyMap := make(map[int]string, 0) // 代付合同实际使用方
  67. payContractCodeMap := make(map[int]string, 0) // 代付合同实际使用方合同编号
  68. if len(payContractIds) > 0 {
  69. payCond := `a.status IN ('已签回', '已审批') AND b.payment_on_behalf_contract_id IN ?`
  70. payPars := make([]interface{}, 0)
  71. payPars = append(payPars, payContractIds)
  72. payList, e := crm.GetPayCompanyByContractIds(payCond, payPars)
  73. if e != nil {
  74. resp.FailMsg("获取失败", "获取代付合同实际使用方信息失败, Err: "+e.Error(), c)
  75. return
  76. }
  77. for i := range payList {
  78. payCompanyMap[payList[i].PaymentOnBehalfContractId] = payList[i].CompanyName
  79. payContractCodeMap[payList[i].PaymentOnBehalfContractId] = payList[i].ContractCode
  80. }
  81. }
  82. // 获取业务合同的所有代付方信息
  83. businessPayMap := make(map[int]string, 0)
  84. if len(businessContractIds) > 0 {
  85. businessCond := `b.status IN ('已签回', '已审批') AND a.contract_id IN ?`
  86. businessPars := make([]interface{}, 0)
  87. businessPars = append(businessPars, businessContractIds)
  88. businessPayCompanies, e := crm.GetContractActualPayCompaniesByContractIds(businessCond, businessPars)
  89. if e != nil {
  90. resp.FailMsg("获取失败", "获取业务合同代付方信息失败, Err: "+e.Error(), c)
  91. return
  92. }
  93. for i := range businessPayCompanies {
  94. businessPayMap[businessPayCompanies[i].ContractId] = businessPayCompanies[i].ActualPayCompanies
  95. }
  96. }
  97. respList := make([]*crm.ContractSearchListResp, 0)
  98. for i := range list {
  99. contractType := list[i].ContractType
  100. contractTypeKey := crm.ContractTypeFmsMap[list[i].ContractType]
  101. if list[i].ContractBusinessType == crm.ContractTypePayment {
  102. contractType = crm.ContractTypePayment
  103. contractTypeKey = fms.ContractTypeAgentPay
  104. }
  105. respItem := &crm.ContractSearchListResp{
  106. ContractId: list[i].ContractId,
  107. ContractCode: list[i].ContractCode,
  108. ProductId: list[i].ProductId,
  109. CompanyName: list[i].CompanyName,
  110. RelateContractCode: payContractCodeMap[list[i].ContractId],
  111. ActualCompanyName: payCompanyMap[list[i].ContractId],
  112. SellerId: list[i].SellerId,
  113. SellerName: list[i].SellerName,
  114. ContractTypeKey: contractTypeKey,
  115. ContractType: contractType,
  116. ContractBusinessTypeInt: 0,
  117. Price: list[i].Price,
  118. StartDate: utils.TimeTransferString(utils.FormatDate, list[i].StartDate),
  119. EndDate: utils.TimeTransferString(utils.FormatDate, list[i].EndDate),
  120. ActualPayCompanies: businessPayMap[list[i].ContractId],
  121. }
  122. if list[i].ContractBusinessType == crm.ContractTypePayment {
  123. respItem.ContractBusinessTypeInt = 2
  124. }else {
  125. respItem.ContractBusinessTypeInt = 1
  126. }
  127. if list[i].ContractType == "新签合同"{
  128. respItem.ContractTypeInt = 1
  129. } else if list[i].ContractType == "续约合同"{
  130. respItem.ContractTypeInt = 2
  131. } else if list[i].ContractType == "补充协议"{
  132. respItem.ContractTypeInt = 3
  133. }
  134. respList = append(respList, respItem)
  135. }
  136. page.SetTotal(total)
  137. baseData := new(base.BaseData)
  138. baseData.SetPage(page)
  139. baseData.SetList(respList)
  140. resp.OkData("获取成功", baseData, c)
  141. }
  142. // PermissionList
  143. // @Title 合同品种列表
  144. // @Description 合同品种列表
  145. // @Param ProductId query int false "品种类型: 1-FICC(默认); 2-权益"
  146. // @Success 200 {object} crm.PermissionSetResp
  147. // @router /crm/contract/permission_list [get]
  148. func (rg *ContractController) PermissionList(c *gin.Context) {
  149. var req crm.ContractPermissionListReq
  150. if e := c.BindQuery(&req); e != nil {
  151. err, ok := e.(validator.ValidationErrors)
  152. if !ok {
  153. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  154. return
  155. }
  156. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  157. return
  158. }
  159. // 默认FICC
  160. productId := req.ProductId
  161. if productId == 0 {
  162. productId = 1
  163. }
  164. respList := new(crm.PermissionSetResp)
  165. // FICC
  166. if productId == 1 {
  167. // 获取品种分类配置
  168. sysConf := new(system.SysConfig)
  169. confCond := `config_code = ?`
  170. confPars := make([]interface{}, 0)
  171. confPars = append(confPars, system.ConfigKeyCrmPermissionFiccClassify)
  172. confItem, e := sysConf.FetchByCondition(confCond, confPars)
  173. if e != nil {
  174. resp.FailData("获取失败", "Err:"+e.Error(), c)
  175. return
  176. }
  177. if confItem.ConfigValue == "" {
  178. resp.FailData("获取失败", "FICC品种分类配置为空", c)
  179. return
  180. }
  181. classifyArr := strings.Split(confItem.ConfigValue, ",")
  182. if len(classifyArr) == 0 {
  183. resp.FailData("获取失败", "FICC品种分类配置为空", c)
  184. return
  185. }
  186. // 获取FICC权限
  187. ficcCond := `enabled = 1 AND permission_type = 0 AND product_id = ? AND classify_name IN ?`
  188. ficcPars := make([]interface{}, 0)
  189. ficcPars = append(ficcPars, productId, classifyArr)
  190. items, e := crm.GetPermissionSetItemsByCondition(ficcCond, ficcPars)
  191. if e != nil {
  192. resp.FailData("获取失败", "获取FICC权限信息失败, Err: "+e.Error(), c)
  193. return
  194. }
  195. ficcItemMap := make(map[string][]*crm.PermissionSetItem, 0)
  196. for i := range items {
  197. if ficcItemMap[items[i].ClassifyName] == nil {
  198. ficcItemMap[items[i].ClassifyName] = make([]*crm.PermissionSetItem, 0)
  199. }
  200. ficcItemMap[items[i].ClassifyName] = append(ficcItemMap[items[i].ClassifyName], items[i])
  201. }
  202. for i := range classifyArr {
  203. if classifyArr[i] == "市场策略" {
  204. continue
  205. }
  206. checkList := make([]int, 0)
  207. if classifyArr[i] == "宏观经济" {
  208. checkList = append(checkList, 1)
  209. }
  210. p := new(crm.PermissionSetList)
  211. p.ClassifyName = classifyArr[i]
  212. p.Items = ficcItemMap[classifyArr[i]]
  213. p.CheckList = make([]int, 0)
  214. respList.List = append(respList.List, p)
  215. }
  216. }
  217. // 权益
  218. if productId == 2 {
  219. raiCond := `enabled = 1 AND permission_type = 0 AND product_id = ? AND classify_name = ?`
  220. raiPars := make([]interface{}, 0)
  221. raiPars = append(raiPars, productId, crm.CompanyProductRaiName)
  222. items, e := crm.GetPermissionSetItemsByCondition(raiCond, raiPars)
  223. if e != nil {
  224. resp.FailData("获取失败", "获取权益权限信息失败, Err: "+e.Error(), c)
  225. return
  226. }
  227. p := new(crm.PermissionSetList)
  228. p.ClassifyName = crm.CompanyProductRaiName
  229. p.Items = items
  230. p.CheckList = make([]int, 0)
  231. respList.List = append(respList.List, p)
  232. }
  233. resp.OkData("获取成功", respList, c)
  234. }
  235. // ServiceDetail
  236. // @Title 获取合同的套餐及品种权限
  237. // @Description 获取合同的套餐及品种权限
  238. // @Param ContractId query int true "合同ID"
  239. // @Success 200 {object} crm.ContractDetail
  240. // @router /crm/contract/service_detail [get]
  241. func (rg *ContractController) ServiceDetail(c *gin.Context) {
  242. var req crm.ContractServiceDetailReq
  243. if e := c.BindQuery(&req); e != nil {
  244. err, ok := e.(validator.ValidationErrors)
  245. if !ok {
  246. resp.FailData("参数解析失败", "Err:"+e.Error(), c)
  247. return
  248. }
  249. resp.FailData("参数解析失败", err.Translate(global.Trans), c)
  250. return
  251. }
  252. contractDetail, e := crmService.GetContractDetail(req.ContractId)
  253. if e != nil {
  254. global.LOG.Error(e.Error())
  255. resp.FailMsg("获取失败", "获取合同套餐及品种信息失败, Err: "+e.Error(), c)
  256. return
  257. }
  258. // 获取合同服务中的权限ID, 填充contractDetail.Service.ChartPermissionIds字段
  259. _, e = crmService.GetServicePermissionMap(contractDetail.Service)
  260. if e != nil {
  261. resp.FailMsg("获取失败", "获取合同服务中的权限ID失败, Err: "+e.Error(), c)
  262. return
  263. }
  264. resp.OkData("获取成功", contractDetail, c)
  265. }