|
@@ -14,6 +14,7 @@ type StackCompanyStatistic struct {
|
|
ProductId int `description:"客户产品id"`
|
|
ProductId int `description:"客户产品id"`
|
|
ProductName string `description:"客户产品名称"`
|
|
ProductName string `description:"客户产品名称"`
|
|
ContractNum int `description:"第几份合同,默认是:1"`
|
|
ContractNum int `description:"第几份合同,默认是:1"`
|
|
|
|
+ ContractId int `description:"合同id,默认是:0"`
|
|
SellerId int `description:"所属销售id"`
|
|
SellerId int `description:"所属销售id"`
|
|
SellerName string `description:"所属销售名称"`
|
|
SellerName string `description:"所属销售名称"`
|
|
GroupId int `description:"所属销售分组id"`
|
|
GroupId int `description:"所属销售分组id"`
|
|
@@ -87,29 +88,30 @@ GROUP BY company_id,product_id `
|
|
|
|
|
|
//增量客户统计报表列表数据结构
|
|
//增量客户统计报表列表数据结构
|
|
type IncrementalList struct {
|
|
type IncrementalList struct {
|
|
- CompanyContractId int `description:"合同id"`
|
|
|
|
- ContractType string `description:"合同类型"`
|
|
|
|
- CompanyId int `description:"企业客户id"`
|
|
|
|
- CompanyName string `description:"企业客户名称"`
|
|
|
|
- ProductId int `description:"产品id"`
|
|
|
|
- ProductName string `description:"产品名称"`
|
|
|
|
- CompanyProductId int `description:"客户购买产品授权id"`
|
|
|
|
- ContractCode string `description:"合同编码"`
|
|
|
|
- StartDate string `description:"合同开始日期"`
|
|
|
|
- EndDate string `description:"合同结束日期"`
|
|
|
|
- Money float64 `description:"合同金额"`
|
|
|
|
- PayMethod string `description:"付款方式"`
|
|
|
|
- PayChannel string `description:"付款渠道"`
|
|
|
|
- ImgUrl string `description:"合同图片"`
|
|
|
|
- CreateTime string `description:"合同创建时间"`
|
|
|
|
- ModifyTime string `description:"合同修改时间"`
|
|
|
|
- Status string `description:"合同审批状态,0:待审批,1:已审批;默认:1"`
|
|
|
|
- RegionType string `description:"企业客户所属区域;可选范围:国内,海外"`
|
|
|
|
- SellerId int `description:"归属销售id"`
|
|
|
|
- GroupId int `description:"归属分组id"`
|
|
|
|
- DepartmentId int `description:"归属部门id"`
|
|
|
|
- SellerName string `description:"归属销售名称"`
|
|
|
|
- ExpireDay string `description:"剩余可用天数"`
|
|
|
|
|
|
+ CompanyOperationRecordId int `description:"操作记录id"`
|
|
|
|
+ CompanyContractId int `description:"合同id"`
|
|
|
|
+ ContractType string `description:"合同类型"`
|
|
|
|
+ CompanyId int `description:"企业客户id"`
|
|
|
|
+ CompanyName string `description:"企业客户名称"`
|
|
|
|
+ ProductId int `description:"产品id"`
|
|
|
|
+ ProductName string `description:"产品名称"`
|
|
|
|
+ CompanyProductId int `description:"客户购买产品授权id"`
|
|
|
|
+ ContractCode string `description:"合同编码"`
|
|
|
|
+ StartDate string `description:"合同开始日期"`
|
|
|
|
+ EndDate string `description:"合同结束日期"`
|
|
|
|
+ Money float64 `description:"合同金额"`
|
|
|
|
+ PayMethod string `description:"付款方式"`
|
|
|
|
+ PayChannel string `description:"付款渠道"`
|
|
|
|
+ ImgUrl string `description:"合同图片"`
|
|
|
|
+ CreateTime string `description:"合同创建时间"`
|
|
|
|
+ ModifyTime string `description:"合同修改时间"`
|
|
|
|
+ Status string `description:"合同审批状态,0:待审批,1:已审批;默认:1"`
|
|
|
|
+ RegionType string `description:"企业客户所属区域;可选范围:国内,海外"`
|
|
|
|
+ SellerId int `description:"归属销售id"`
|
|
|
|
+ GroupId int `description:"归属分组id"`
|
|
|
|
+ DepartmentId int `description:"归属部门id"`
|
|
|
|
+ SellerName string `description:"归属销售名称"`
|
|
|
|
+ ExpireDay string `description:"剩余可用天数"`
|
|
}
|
|
}
|
|
|
|
|
|
//未续约客户数(存量客户)
|
|
//未续约客户数(存量客户)
|
|
@@ -132,3 +134,64 @@ ORDER BY create_time DESC , company_id DESC `
|
|
total, err = o.Raw(sql, dateTime).QueryRows(&items)
|
|
total, err = o.Raw(sql, dateTime).QueryRows(&items)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// GetIncrementalCompanyListByOperationRecord 获取未续约客户报表列表数据(根据新增客户时间来展示)
|
|
|
|
+func GetIncrementalCompanyListByOperationRecord(condition string, pars []interface{}) (items []*IncrementalList, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+ sql := `SELECT a.id company_operation_record_id,a.company_id,b.company_name,c.seller_id,c.seller_name,
|
|
|
|
+a.product_id,a.product_name,a.create_time,b.region_type,c.renewal_reason FROM company_operation_record a
|
|
|
|
+ RIGHT JOIN company b ON a.company_id = b.company_id
|
|
|
|
+ JOIN company_product c ON b.company_id = c.company_id and a.product_id=c.product_id WHERE 1 = 1 `
|
|
|
|
+
|
|
|
|
+ if condition != "" {
|
|
|
|
+ sql += condition
|
|
|
|
+ }
|
|
|
|
+ sql = `select * from (` + sql + ` order by create_time asc) f group by company_id,product_id order by create_time desc,company_id desc `
|
|
|
|
+ _, err = o.Raw(sql, pars).QueryRows(&items)
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// GetTodayStackCompanyList 获取当天存量客户报表列表数据(新签客户,根据合同来展示)
|
|
|
|
+func GetTodayStackCompanyList(condition string, pars []interface{}) (items []*IncrementalList, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+
|
|
|
|
+ sql := `SELECT a.*,b.region_type,c.seller_id,c.seller_name,b.company_name,c.renewal_reason FROM company_contract a
|
|
|
|
+ JOIN company b ON a.company_id = b.company_id
|
|
|
|
+ JOIN company_product c ON a.company_id = c.company_id and a.product_id=c.product_id WHERE a.status = 1 `
|
|
|
|
+
|
|
|
|
+ if condition != "" {
|
|
|
|
+ sql += condition
|
|
|
|
+ }
|
|
|
|
+ sql += " order by a.start_date desc "
|
|
|
|
+ sql = `select * from (` + sql + `) b order by start_date desc,company_id desc`
|
|
|
|
+ _, err = o.Raw(sql, pars).QueryRows(&items)
|
|
|
|
+ return
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// GetTodayStackCompanyListV2 获取当天存量客户报表列表数据(续约客户,根据合同来展示)
|
|
|
|
+func GetTodayStackCompanyListV2(condition string, pars []interface{}) (items []*IncrementalList, err error) {
|
|
|
|
+ o := orm.NewOrm()
|
|
|
|
+
|
|
|
|
+ sql1 := `SELECT a.*,b.region_type,c.seller_id,c.seller_name,b.company_name,c.renewal_reason FROM company_contract a
|
|
|
|
+ JOIN company b ON a.company_id = b.company_id
|
|
|
|
+ JOIN company_product c ON a.company_id = c.company_id and a.product_id=c.product_id WHERE a.status = 1 and a.product_id=1 `
|
|
|
|
+ if condition != "" {
|
|
|
|
+ sql1 += condition
|
|
|
|
+ }
|
|
|
|
+ sql1 += ` and a.company_id not in (select company_id from company_contract where contract_type="新签合同" and status=1 and product_id=1 and end_date > ?) `
|
|
|
|
+
|
|
|
|
+ sql2 := `SELECT a.*,b.region_type,c.seller_id,c.seller_name,b.company_name,c.renewal_reason FROM company_contract a
|
|
|
|
+ JOIN company b ON a.company_id = b.company_id
|
|
|
|
+ JOIN company_product c ON a.company_id = c.company_id and a.product_id=c.product_id WHERE a.status = 1 and a.product_id=2 `
|
|
|
|
+ if condition != "" {
|
|
|
|
+ sql2 += condition
|
|
|
|
+ }
|
|
|
|
+ sql2 += ` and a.company_id not in (select company_id from company_contract where contract_type="新签合同" and status=1 and product_id=2 and end_date > ?) `
|
|
|
|
+
|
|
|
|
+ sql := `select * from (` + sql1 + ` union (` + sql2 + `) ` + `) f order by start_date desc`
|
|
|
|
+ sql = `select * from (` + sql + `) b order by start_date desc,company_id desc`
|
|
|
|
+
|
|
|
|
+ pars = append(pars, pars...)
|
|
|
|
+ _, err = o.Raw(sql, pars).QueryRows(&items)
|
|
|
|
+ return
|
|
|
|
+}
|