Browse Source

no message

xingzai 1 year ago
parent
commit
228f2f6abc
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/cygx/contract_allocation.go

+ 2 - 2
controllers/cygx/contract_allocation.go

@@ -212,7 +212,7 @@ func (this *ContractAllocationController) CompanyContractList() {
 
 	//默认只查询权益 2023-06-01 之后的合同
 	condition += ` AND c.product_id = ?  AND a.start_date > ? `
-	pars = append(pars, 2, "2023-06-01")
+	pars = append(pars, 2, "2023-05-31")
 
 	mapMoneyPoint := make(map[int]float64)
 	//研究员姓名查询
@@ -887,7 +887,7 @@ func (this *ContractAllocationController) CompanyContractStatistics() {
 
 	//默认只查询权益 2023-06-01 之后的合同
 	condition += ` AND c.product_id = ?  AND a.start_date > ?   `
-	pars = append(pars, 2, "2023-01-01")
+	pars = append(pars, 2, "2023-05-31")
 
 	//列表页数据
 	listContract, err := cygx.GetCompanyContractListJoinCompany(condition, pars, 0, 1000)