|
@@ -76,21 +76,20 @@ type ContractSearchListReq struct {
|
|
|
|
|
|
// ContractSearchListResp CRM系统合同-搜索列表响应体
|
|
|
type ContractSearchListResp struct {
|
|
|
- ContractId int `json:"contract_id" description:"合同ID"`
|
|
|
- ContractCode string `json:"contract_code" description:"合同编号"`
|
|
|
- ProductId int `json:"product_id" description:"产品ID"`
|
|
|
- CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
- //PayContractCode string `json:"pay_contract_code" description:"代付合同编号"`
|
|
|
- RelateContractCode string `json:"relate_contract_code" description:"代付合同关联的实际使用方合同编号"`
|
|
|
- //PayCompanyName string `json:"pay_company_name" description:"代付客户名称"`
|
|
|
- ActualCompanyName string `json:"actual_company_name" description:"实际使用方"`
|
|
|
- SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
- SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
- ContractTypeKey int `json:"contract_type_key" description:"FMS合同类型: 1-新签; 2-续约; 3-代付; 4-补充协议;"`
|
|
|
- ContractType string `json:"contract_type" description:"CRM合同类型: 新签合同; 续约合同; 补充协议;"`
|
|
|
- Price float64 `json:"price" description:"合同金额"`
|
|
|
- StartDate string `json:"start_date" description:"合同开始日期"`
|
|
|
- EndDate string `json:"end_date" description:"合同结束日期"`
|
|
|
+ ContractId int `json:"contract_id" description:"合同ID"`
|
|
|
+ ContractCode string `json:"contract_code" description:"合同编号"`
|
|
|
+ ProductId int `json:"product_id" description:"产品ID"`
|
|
|
+ CompanyName string `json:"company_name" description:"客户名称"`
|
|
|
+ RelateContractCode string `json:"relate_contract_code" description:"代付合同关联的实际使用方合同编号"`
|
|
|
+ ActualCompanyName string `json:"actual_company_name" description:"实际使用方"`
|
|
|
+ SellerId int `json:"seller_id" description:"销售ID"`
|
|
|
+ SellerName string `json:"seller_name" description:"销售名称"`
|
|
|
+ ContractTypeKey int `json:"contract_type_key" description:"FMS合同类型: 1-新签; 2-续约; 3-代付; 4-补充协议;"`
|
|
|
+ ContractType string `json:"contract_type" description:"CRM合同类型: 新签合同; 续约合同; 补充协议;"`
|
|
|
+ Price float64 `json:"price" description:"合同金额"`
|
|
|
+ StartDate string `json:"start_date" description:"合同开始日期"`
|
|
|
+ EndDate string `json:"end_date" description:"合同结束日期"`
|
|
|
+ ActualPayCompanies string `json:"actual_pay_companies" description:"该合同关联的所有代付方, 英文逗号拼接"`
|
|
|
}
|
|
|
|
|
|
// PayCompanyRelation 代付合同
|
|
@@ -101,7 +100,7 @@ type PayCompanyRelation struct {
|
|
|
PaymentOnBehalfContractId int `description:"实际使用方合同ID"`
|
|
|
}
|
|
|
|
|
|
-// GetPayCompanyByContractIds 通过合同IDs获取代付客户信息
|
|
|
+// GetPayCompanyByContractIds 通过代付合同IDs获取关联客户信息
|
|
|
func GetPayCompanyByContractIds(condition string, pars []interface{}) (results []*PayCompanyRelation, err error) {
|
|
|
results = make([]*PayCompanyRelation, 0)
|
|
|
query := global.MYSQL["report"].
|
|
@@ -114,6 +113,26 @@ func GetPayCompanyByContractIds(condition string, pars []interface{}) (results [
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// ContractActualPayCompanies 代付合同信息
|
|
|
+type ContractActualPayCompanies struct {
|
|
|
+ ContractId int `json:"contract_id" description:"业务合同ID"`
|
|
|
+ ActualPayCompanies string `json:"actual_pay_companies" description:"关联的代付方名称, 英文逗号拼接"`
|
|
|
+}
|
|
|
+
|
|
|
+// GetContractActualPayCompaniesByContractIds 通过合同IDs获取代付客户信息
|
|
|
+func GetContractActualPayCompaniesByContractIds(condition string, pars []interface{}) (results []*ContractActualPayCompanies, err error) {
|
|
|
+ results = make([]*ContractActualPayCompanies, 0)
|
|
|
+ query := global.MYSQL["report"].
|
|
|
+ Table("contract_relation AS a").
|
|
|
+ Select("a.contract_id, GROUP_CONCAT(DISTINCT b.company_name) AS actual_pay_companies").
|
|
|
+ Joins("JOIN contract AS b ON a.payment_on_behalf_contract_id = b.contract_id").
|
|
|
+ Where("b.is_delete = 0").
|
|
|
+ Where(condition, pars...).
|
|
|
+ Group("a.contract_id")
|
|
|
+ err = query.Find(&results).Error
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
// ContractDetail 合同详情信息(包含服务信息等)
|
|
|
type ContractDetail struct {
|
|
|
Contract
|