contract.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. // @Param Status query string true "合同状态"
  68. // @Success 200 {object} []string
  69. // @router /company_list [get]
  70. func (this *ContractCommon) CompanyList() {
  71. companyName := this.GetString("CompanyName")
  72. //合同id
  73. if companyName == "" {
  74. this.FailWithMessage("客户名称必传!", "客户名称必传!")
  75. return
  76. }
  77. status := this.GetString("Status")
  78. companyNameList := make([]string, 0)
  79. list, err := contract.GetCompanyNameList(companyName, status)
  80. if err != nil {
  81. this.FailWithMessage("获取客户名称列表失败!", "获取客户名称列表失败,ERR:"+err.Error())
  82. return
  83. }
  84. for _, v := range list {
  85. companyNameList = append(companyNameList, v.CompanyName)
  86. }
  87. this.OkDetailed(companyNameList, "获取成功")
  88. }
  89. // @Title 合同列表
  90. // @Description 合同列表接口
  91. // @Param ContractType query string false "合同类型,枚举值:'新签合同','续约合同','补充协议'"
  92. // @Param ContractStatus query string false "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'"
  93. // @Param ProductId query int false "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益"
  94. // @Param ModifyStartTime query string false "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00"
  95. // @Param ModifyEndTime query string false "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59"
  96. // @Param SellerId query string false "选择的销售id"
  97. // @Param Keyword query string false "搜索关键字"
  98. // @Success 200 {object} contract.ContractListResp
  99. // @router /list [get]
  100. func (this *ContractCommon) List() {
  101. //合同类型、产品类型、合同状态、更新时间、所选销售
  102. //关键字:合同编号、客户名称,社会信用码
  103. contractType := this.GetString("ContractType")
  104. contractStatus := this.GetString("ContractStatus")
  105. productId, _ := this.GetInt("ProductId")
  106. modifyStartTime := this.GetString("ModifyStartTime")
  107. modifyEndTime := this.GetString("ModifyEndTime")
  108. sellerIds := this.GetString("SellerId")
  109. keyword := this.GetString("Keyword")
  110. condition := ""
  111. pars := make([]interface{}, 0)
  112. //如果不是超管或者合规,那么只能查看自己的合同
  113. condition += ` AND seller_id = ? `
  114. pars = append(pars, this.AdminWx.AdminId)
  115. //合同类型、、更新时间、所选销售
  116. //关键字:合同编号、客户名称,社会信用码
  117. if contractType != "" {
  118. condition += ` AND contract_type = ? `
  119. pars = append(pars, contractType)
  120. }
  121. //合同状态
  122. if contractStatus != "" {
  123. condition += ` AND status = ? `
  124. pars = append(pars, contractStatus)
  125. }
  126. //产品类型
  127. if productId > 0 {
  128. condition += ` AND product_id = ? `
  129. pars = append(pars, productId)
  130. }
  131. //所选销售
  132. if sellerIds != "" {
  133. condition += ` AND seller_id IN (` + sellerIds + `) `
  134. }
  135. //更新开始时间
  136. if modifyStartTime != "" {
  137. condition += ` AND modify_time >= ? `
  138. pars = append(pars, modifyStartTime)
  139. }
  140. //更新结束时间
  141. if modifyEndTime != "" {
  142. condition += ` AND modify_time <= ? `
  143. pars = append(pars, modifyEndTime)
  144. }
  145. //关键字
  146. if keyword != "" {
  147. condition += ` AND (contract_code LIKE '%` + keyword + `%' OR company_name LIKE '%` + keyword + `%' OR credit_code LIKE '%` + keyword + `%' ) `
  148. }
  149. pageSize, _ := this.GetInt("PageSize")
  150. currentIndex, _ := this.GetInt("CurrentIndex")
  151. var startSize int
  152. if pageSize <= 0 {
  153. pageSize = utils.PageSize20
  154. }
  155. if currentIndex <= 0 {
  156. currentIndex = 1
  157. }
  158. startSize = paging.StartIndex(currentIndex, pageSize)
  159. total, err := contract.GetContractListCount(condition, pars)
  160. if err != nil {
  161. this.FailWithMessage("获取失败", "获取数据总数失败,Err:"+err.Error())
  162. return
  163. }
  164. list, err := contract.GetContractList(condition, pars, startSize, pageSize)
  165. if err != nil {
  166. this.FailWithMessage("获取合同列表失败", "获取合同列表失败,Err:"+err.Error())
  167. return
  168. }
  169. page := paging.GetPaging(currentIndex, pageSize, total)
  170. this.OkDetailed(contractResp.ContractListResp{
  171. List: list,
  172. Paging: page,
  173. }, "获取成功")
  174. }