|
@@ -1,11 +1,9 @@
|
|
|
package controllers
|
|
|
|
|
|
import (
|
|
|
- "hongze/hongze_mobile_admin/models/response/contract"
|
|
|
- "hongze/hongze_mobile_admin/models/tables/company_contract"
|
|
|
- "hongze/hongze_mobile_admin/models/tables/company_report_permission"
|
|
|
- "hongze/hongze_mobile_admin/services"
|
|
|
- "hongze/hongze_mobile_admin/utils"
|
|
|
+ "encoding/json"
|
|
|
+ contractReq "hongze/hongze_mobile_admin/models/request/contract"
|
|
|
+ contractService "hongze/hongze_mobile_admin/services/contract"
|
|
|
)
|
|
|
|
|
|
//合同模块
|
|
@@ -13,84 +11,29 @@ type ContractCommon struct {
|
|
|
BaseAuth
|
|
|
}
|
|
|
|
|
|
-// @Title 合同详情详情
|
|
|
-// @Description 合同详情接口接口
|
|
|
-// @Param CompanyId query int true "客户ID"
|
|
|
-// @Param CompanyContractId query int true "合同id"
|
|
|
-// @Success 200 {object} company_contract.CompanyContractDetail
|
|
|
-// @router /detail [get]
|
|
|
-func (this *ContractCommon) ApplyContractDetail() {
|
|
|
- sysUser := this.AdminWx
|
|
|
-
|
|
|
- companyId, _ := this.GetInt("CompanyId")
|
|
|
- if companyId <= 0 {
|
|
|
- this.FailWithMessage("参数错误", "参数错误,客户id小于等于0")
|
|
|
+// @Title 上传签回附件
|
|
|
+// @Description 上传签回附件接口接口
|
|
|
+// @Param request body contract.UploadCheckBackFileReq true "type json string"
|
|
|
+// @Success Ret=200 驳回成功
|
|
|
+// @router /upload_check_back_file [get]
|
|
|
+func (this *ContractCommon) UploadCheckBackFile() {
|
|
|
+ var req contractReq.UploadCheckBackFileReq
|
|
|
+ err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
|
|
|
+ if err != nil {
|
|
|
+ this.FailWithMessage("参数解析异常!", "参数解析失败,Err:"+err.Error())
|
|
|
return
|
|
|
}
|
|
|
- companyContractId, _ := this.GetInt("CompanyContractId")
|
|
|
-
|
|
|
- roleTypeCode := sysUser.RoleTypeCode
|
|
|
- productId := services.GetProductId(roleTypeCode)
|
|
|
- if productId == 0 {
|
|
|
- this.FailWithMessage("当前账户类型异常", "客户类型为:"+roleTypeCode)
|
|
|
+ //合同编号
|
|
|
+ if req.ContractId <= 0 {
|
|
|
+ this.FailWithMessage("请传入合同编号!", "请传入合同编号")
|
|
|
return
|
|
|
}
|
|
|
- detail, err := company_contract.GetCompanyContractDetail(companyId, productId, companyContractId)
|
|
|
- if err != nil {
|
|
|
- this.FailWithMessage("获取信息失败", "获取信息失败,Err:"+err.Error())
|
|
|
+
|
|
|
+ if req.FileUrl == "" {
|
|
|
+ this.FailWithMessage("请先上传附件!", "请先上传附件")
|
|
|
return
|
|
|
}
|
|
|
- productId = detail.ProductId
|
|
|
- if productId == 1 {
|
|
|
- for _, v := range utils.PermissionFiccClassifyArr {
|
|
|
- checkList := make([]int, 0)
|
|
|
- plist := new(company_report_permission.PermissionLookList)
|
|
|
- items, err := company_report_permission.GetPermissionLookItems(productId, v)
|
|
|
- if err != nil {
|
|
|
- this.FailWithMessage("获取失败", "获取权限信息失败,Err:"+err.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- for _, n := range items {
|
|
|
- count, err := company_contract.GetCompanyContractPermissionCheckByContractId(companyId, detail.CompanyContractId, n.ChartPermissionId)
|
|
|
- if err != nil {
|
|
|
- this.FailWithMessage("获取失败", "获取权限信息失败,Err:"+err.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- if count > 0 {
|
|
|
- checkList = append(checkList, n.ChartPermissionId)
|
|
|
- }
|
|
|
- }
|
|
|
- plist.Items = items
|
|
|
- plist.ClassifyName = v
|
|
|
- plist.CheckList = checkList
|
|
|
- detail.PermissionList = append(detail.PermissionList, plist)
|
|
|
- }
|
|
|
- } else {
|
|
|
- classifyName := "权益"
|
|
|
- checkList := make([]int, 0)
|
|
|
- plist := new(company_report_permission.PermissionLookList)
|
|
|
- items, err := company_report_permission.GetPermissionLookItems(productId, classifyName)
|
|
|
- if err != nil {
|
|
|
- this.FailWithMessage("获取失败", "获取权限信息失败,Err:"+err.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- for _, n := range items {
|
|
|
- count, err := company_contract.GetCompanyContractPermissionCheckByContractId(companyId, detail.CompanyContractId, n.ChartPermissionId)
|
|
|
- if err != nil {
|
|
|
- this.FailWithMessage("获取失败", "获取权限信息失败,Err:"+err.Error())
|
|
|
- return
|
|
|
- }
|
|
|
- if count > 0 {
|
|
|
- checkList = append(checkList, n.ChartPermissionId)
|
|
|
- }
|
|
|
- }
|
|
|
- plist.Items = items
|
|
|
- plist.ClassifyName = classifyName
|
|
|
- plist.CheckList = checkList
|
|
|
- detail.PermissionList = append(detail.PermissionList, plist)
|
|
|
- }
|
|
|
- resp := contract.CompanyContractDetailResp{
|
|
|
- detail,
|
|
|
- }
|
|
|
- this.OkDetailed(resp, "获取成功")
|
|
|
+ err = contractService.UploadCheckBackFile(req.ContractId, req.FileUrl, this.AdminWx)
|
|
|
+
|
|
|
+ this.OkWithMessage("上传成功")
|
|
|
}
|