contract.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. package controllers
  2. import (
  3. "encoding/json"
  4. contractReq "hongze/hongze_mobile_admin/models/request/contract"
  5. contractResp "hongze/hongze_mobile_admin/models/response/contract"
  6. "hongze/hongze_mobile_admin/models/tables/contract"
  7. contractService "hongze/hongze_mobile_admin/services/contract"
  8. "hongze/hongze_mobile_admin/utils"
  9. "rdluck_tools/paging"
  10. )
  11. //合同模块
  12. type ContractCommon struct {
  13. BaseAuth
  14. }
  15. // @Title 上传签回附件
  16. // @Description 上传签回附件接口
  17. // @Param request body contract.UploadCheckBackFileReq true "type json string"
  18. // @Success Ret=200 上传成功
  19. // @router /upload_check_back_file [get]
  20. func (this *ContractCommon) UploadCheckBackFile() {
  21. var req contractReq.UploadCheckBackFileReq
  22. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  23. if err != nil {
  24. this.FailWithMessage("参数解析异常!", "参数解析失败,Err:"+err.Error())
  25. return
  26. }
  27. //合同编号
  28. if req.ContractId <= 0 {
  29. this.FailWithMessage("请传入合同编号!", "请传入合同编号")
  30. return
  31. }
  32. if req.FileUrl == "" {
  33. this.FailWithMessage("请先上传附件!", "请先上传附件")
  34. return
  35. }
  36. err = contractService.UploadCheckBackFile(req.ContractId, req.FileUrl, this.AdminWx)
  37. this.OkWithMessage("上传成功")
  38. }
  39. // @Title 获取合同详情
  40. // @Description 获取合同详情接口
  41. // @Param ContractId query int true "合同id"
  42. // @Success 200 {object} contract.ContractDetail
  43. // @router /detail [get]
  44. func (this *ContractCommon) Detail() {
  45. //合同类型、产品类型、合同状态、更新时间、所选销售
  46. //关键字:合同编号、客户名称,社会信用码
  47. contractId, _ := this.GetInt("ContractId")
  48. //合同id
  49. if contractId <= 0 {
  50. this.FailWithMessage("合同id必传!", "合同id必传!")
  51. return
  52. }
  53. contractInfo, err := contractService.GetContractDetail(contractId)
  54. if err != nil {
  55. this.FailWithMessage("获取合同详情失败!", "获取合同详情失败,ERR:"+err.Error())
  56. return
  57. }
  58. contractInfo.StartDateStr = contractInfo.StartDate.Format(utils.FormatDate)
  59. contractInfo.EndDateStr = contractInfo.EndDate.Format(utils.FormatDate)
  60. contractInfo.ModifyTimeStr = contractInfo.ModifyTime.Format(utils.FormatDateTime)
  61. contractInfo.CreateTimeStr = contractInfo.CreateTime.Format(utils.FormatDateTime)
  62. this.OkDetailed(contractInfo, "获取成功")
  63. }
  64. // @Title 根据客户名称获取已存在合同系统中客户名称列表
  65. // @Description 获取合同详情接口
  66. // @Param CompanyName query string true "客户名称"
  67. // @Success 200 {object} []string
  68. // @router /company_list [get]
  69. func (this *ContractCommon) CompanyList() {
  70. companyName := this.GetString("CompanyName")
  71. //合同id
  72. if companyName == "" {
  73. this.FailWithMessage("客户名称必传!", "客户名称必传!")
  74. return
  75. }
  76. companyNameList := make([]string, 0)
  77. list, err := contract.GetCompanyNameList(companyName)
  78. if err != nil {
  79. this.FailWithMessage("获取客户名称列表失败!", "获取客户名称列表失败,ERR:"+err.Error())
  80. return
  81. }
  82. for _, v := range list {
  83. companyNameList = append(companyNameList, v.CompanyName)
  84. }
  85. this.OkDetailed(companyNameList, "获取成功")
  86. }
  87. // @Title 合同列表
  88. // @Description 合同列表接口
  89. // @Param ContractType query string false "合同类型,枚举值:'新签合同','续约合同','补充协议'"
  90. // @Param ContractStatus query string false "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'"
  91. // @Param ProductId query int false "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益"
  92. // @Param ModifyStartTime query string false "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00"
  93. // @Param ModifyEndTime query string false "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59"
  94. // @Param SellerId query string false "选择的销售id"
  95. // @Param Keyword query string false "搜索关键字"
  96. // @Success 200 {object} contract.ContractListResp
  97. // @router /list [get]
  98. func (this *ContractCommon) List() {
  99. //合同类型、产品类型、合同状态、更新时间、所选销售
  100. //关键字:合同编号、客户名称,社会信用码
  101. contractType := this.GetString("ContractType")
  102. contractStatus := this.GetString("ContractStatus")
  103. productId, _ := this.GetInt("ProductId")
  104. modifyStartTime := this.GetString("ModifyStartTime")
  105. modifyEndTime := this.GetString("ModifyEndTime")
  106. sellerIds := this.GetString("SellerId")
  107. keyword := this.GetString("Keyword")
  108. condition := ""
  109. pars := make([]interface{}, 0)
  110. //如果不是超管或者合规,那么只能查看自己的合同
  111. condition += ` AND seller_id = ? `
  112. pars = append(pars, this.AdminWx.AdminId)
  113. //合同类型、、更新时间、所选销售
  114. //关键字:合同编号、客户名称,社会信用码
  115. if contractType != "" {
  116. condition += ` AND contract_type = ? `
  117. pars = append(pars, contractType)
  118. }
  119. //合同状态
  120. if contractStatus != "" {
  121. condition += ` AND status = ? `
  122. pars = append(pars, contractStatus)
  123. }
  124. //产品类型
  125. if productId > 0 {
  126. condition += ` AND product_id = ? `
  127. pars = append(pars, productId)
  128. }
  129. //所选销售
  130. if sellerIds != "" {
  131. condition += ` AND seller_id IN (` + sellerIds + `) `
  132. }
  133. //更新开始时间
  134. if modifyStartTime != "" {
  135. condition += ` AND modify_time >= ? `
  136. pars = append(pars, modifyStartTime)
  137. }
  138. //更新结束时间
  139. if modifyEndTime != "" {
  140. condition += ` AND modify_time <= ? `
  141. pars = append(pars, modifyEndTime)
  142. }
  143. //关键字
  144. if keyword != "" {
  145. condition += ` AND (contract_code LIKE '%` + keyword + `%' OR company_name LIKE '%` + keyword + `%' OR credit_code LIKE '%` + keyword + `%' ) `
  146. }
  147. pageSize, _ := this.GetInt("PageSize")
  148. currentIndex, _ := this.GetInt("CurrentIndex")
  149. var startSize int
  150. if pageSize <= 0 {
  151. pageSize = utils.PageSize20
  152. }
  153. if currentIndex <= 0 {
  154. currentIndex = 1
  155. }
  156. startSize = paging.StartIndex(currentIndex, pageSize)
  157. total, err := contract.GetContractListCount(condition, pars)
  158. if err != nil {
  159. this.FailWithMessage("获取失败", "获取数据总数失败,Err:"+err.Error())
  160. return
  161. }
  162. list, err := contract.GetContractList(condition, pars, startSize, pageSize)
  163. if err != nil {
  164. this.FailWithMessage("获取合同列表失败", "获取合同列表失败,Err:"+err.Error())
  165. return
  166. }
  167. page := paging.GetPaging(currentIndex, pageSize, total)
  168. this.OkDetailed(contractResp.ContractListResp{
  169. List: list,
  170. Paging: page,
  171. }, "获取成功")
  172. }