|
@@ -3,9 +3,11 @@ package controllers
|
|
import (
|
|
import (
|
|
"encoding/json"
|
|
"encoding/json"
|
|
contractReq "hongze/hongze_mobile_admin/models/request/contract"
|
|
contractReq "hongze/hongze_mobile_admin/models/request/contract"
|
|
|
|
+ contractResp "hongze/hongze_mobile_admin/models/response/contract"
|
|
"hongze/hongze_mobile_admin/models/tables/contract"
|
|
"hongze/hongze_mobile_admin/models/tables/contract"
|
|
contractService "hongze/hongze_mobile_admin/services/contract"
|
|
contractService "hongze/hongze_mobile_admin/services/contract"
|
|
"hongze/hongze_mobile_admin/utils"
|
|
"hongze/hongze_mobile_admin/utils"
|
|
|
|
+ "rdluck_tools/paging"
|
|
)
|
|
)
|
|
|
|
|
|
//合同模块
|
|
//合同模块
|
|
@@ -16,7 +18,7 @@ type ContractCommon struct {
|
|
// @Title 上传签回附件
|
|
// @Title 上传签回附件
|
|
// @Description 上传签回附件接口
|
|
// @Description 上传签回附件接口
|
|
// @Param request body contract.UploadCheckBackFileReq true "type json string"
|
|
// @Param request body contract.UploadCheckBackFileReq true "type json string"
|
|
-// @Success Ret=200 驳回成功
|
|
|
|
|
|
+// @Success Ret=200 上传成功
|
|
// @router /upload_check_back_file [get]
|
|
// @router /upload_check_back_file [get]
|
|
func (this *ContractCommon) UploadCheckBackFile() {
|
|
func (this *ContractCommon) UploadCheckBackFile() {
|
|
var req contractReq.UploadCheckBackFileReq
|
|
var req contractReq.UploadCheckBackFileReq
|
|
@@ -93,3 +95,97 @@ func (this *ContractCommon) CompanyList() {
|
|
|
|
|
|
this.OkDetailed(companyNameList, "获取成功")
|
|
this.OkDetailed(companyNameList, "获取成功")
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// @Title 合同列表
|
|
|
|
+// @Description 合同列表接口
|
|
|
|
+// @Param ContractType query string false "合同类型,枚举值:'新签合同','续约合同','补充协议'"
|
|
|
|
+// @Param ContractStatus query string false "合同状态,枚举值:'待提交','待审批','已撤回','已审批','已驳回','已作废'"
|
|
|
|
+// @Param ProductId query int false "客户类型:传0或者不传为当前账号权限,1 代表是:ficc;2 代表是:权益"
|
|
|
|
+// @Param ModifyStartTime query string false "服务更新时间的选择开始时间,格式:2021-05-23 00:00:00"
|
|
|
|
+// @Param ModifyEndTime query string false "服务更新时间的选择结束时间,格式:2021-05-26 23:59:59"
|
|
|
|
+// @Param SellerId query string false "选择的销售id"
|
|
|
|
+// @Param Keyword query string false "搜索关键字"
|
|
|
|
+// @Success 200 {object} contract.ContractListResp
|
|
|
|
+// @router /list [get]
|
|
|
|
+func (this *ContractCommon) List() {
|
|
|
|
+ //合同类型、产品类型、合同状态、更新时间、所选销售
|
|
|
|
+ //关键字:合同编号、客户名称,社会信用码
|
|
|
|
+ contractType := this.GetString("ContractType")
|
|
|
|
+ contractStatus := this.GetString("ContractStatus")
|
|
|
|
+ productId, _ := this.GetInt("ProductId")
|
|
|
|
+ modifyStartTime := this.GetString("ModifyStartTime")
|
|
|
|
+ modifyEndTime := this.GetString("ModifyEndTime")
|
|
|
|
+ sellerIds := this.GetString("SellerId")
|
|
|
|
+ keyword := this.GetString("Keyword")
|
|
|
|
+
|
|
|
|
+ condition := ""
|
|
|
|
+ pars := make([]interface{}, 0)
|
|
|
|
+ //如果不是超管或者合规,那么只能查看自己的合同
|
|
|
|
+ condition += ` AND seller_id = ? `
|
|
|
|
+ pars = append(pars, this.AdminWx.AdminId)
|
|
|
|
+ //合同类型、、更新时间、所选销售
|
|
|
|
+ //关键字:合同编号、客户名称,社会信用码
|
|
|
|
+ if contractType != "" {
|
|
|
|
+ condition += ` AND contract_type = ? `
|
|
|
|
+ pars = append(pars, contractType)
|
|
|
|
+ }
|
|
|
|
+ //合同状态
|
|
|
|
+ if contractStatus != "" {
|
|
|
|
+ condition += ` AND status = ? `
|
|
|
|
+ pars = append(pars, contractStatus)
|
|
|
|
+ }
|
|
|
|
+ //产品类型
|
|
|
|
+ if productId > 0 {
|
|
|
|
+ condition += ` AND product_id = ? `
|
|
|
|
+ pars = append(pars, productId)
|
|
|
|
+ }
|
|
|
|
+ //所选销售
|
|
|
|
+ if sellerIds != "" {
|
|
|
|
+ condition += ` AND seller_id IN (` + sellerIds + `) `
|
|
|
|
+ }
|
|
|
|
+ //更新开始时间
|
|
|
|
+ if modifyStartTime != "" {
|
|
|
|
+ condition += ` AND modify_time >= ? `
|
|
|
|
+ pars = append(pars, modifyStartTime)
|
|
|
|
+ }
|
|
|
|
+ //更新结束时间
|
|
|
|
+ if modifyEndTime != "" {
|
|
|
|
+ condition += ` AND modify_time <= ? `
|
|
|
|
+ pars = append(pars, modifyEndTime)
|
|
|
|
+ }
|
|
|
|
+ //关键字
|
|
|
|
+ if keyword != "" {
|
|
|
|
+ condition += ` AND (contract_code LIKE '%` + keyword + `%' OR company_name LIKE '%` + keyword + `%' OR credit_code LIKE '%` + keyword + `%' ) `
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ pageSize, _ := this.GetInt("PageSize")
|
|
|
|
+ currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
|
+
|
|
|
|
+ var startSize int
|
|
|
|
+ if pageSize <= 0 {
|
|
|
|
+ pageSize = utils.PageSize20
|
|
|
|
+ }
|
|
|
|
+ if currentIndex <= 0 {
|
|
|
|
+ currentIndex = 1
|
|
|
|
+ }
|
|
|
|
+ startSize = paging.StartIndex(currentIndex, pageSize)
|
|
|
|
+
|
|
|
|
+ total, err := contract.GetContractListCount(condition, pars)
|
|
|
|
+ if err != nil {
|
|
|
|
+ this.FailWithMessage("获取失败", "获取数据总数失败,Err:"+err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ list, err := contract.GetContractList(condition, pars, startSize, pageSize)
|
|
|
|
+ if err != nil {
|
|
|
|
+ this.FailWithMessage("获取合同列表失败", "获取合同列表失败,Err:"+err.Error())
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ page := paging.GetPaging(currentIndex, pageSize, total)
|
|
|
|
+
|
|
|
|
+ this.OkDetailed(contractResp.ContractListResp{
|
|
|
|
+ List: list,
|
|
|
|
+ Paging: page,
|
|
|
|
+ }, "获取成功")
|
|
|
|
+}
|