Преглед изворни кода

Merge branch 'fix/bug' into debug

Roc пре 8 месеци
родитељ
комит
2af2a5f255
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      models/company/company_contract.go

+ 1 - 1
models/company/company_contract.go

@@ -310,7 +310,7 @@ func UpdateCompanyContractType(contractType string, companyContractId int) (err
 // GetLastContractListByEndDate 通过最近一份合同的日期获取早于该合同的最晚一份合同
 func GetLastContractListByEndDate(companyId, productId int, endDate string) (item *CompanyContract, err error) {
 	o := orm.NewOrm()
-	sql := "SELECT * FROM company_contract where company_id = ? AND product_id= ? end_date < ? AND status = 1 ORDER BY end_date desc"
+	sql := "SELECT * FROM company_contract where company_id = ? AND product_id= ? AND end_date < ? AND status = 1 ORDER BY end_date desc"
 	err = o.Raw(sql, companyId, productId, endDate).QueryRow(&item)
 	return
 }