|
@@ -161,9 +161,9 @@ type InvoiceSummary struct {
|
|
|
}
|
|
|
|
|
|
// GetContractRegisterListByStartDate 根据起始日期的时间段筛选合同登记信息。
|
|
|
-func GetContractRegisterListByStartDate(startDate string) (results []*ContractRegisterSummary, err error) {
|
|
|
+func GetContractRegisterListByStartDate(startDate, endDate string) (results []*ContractRegisterSummary, err error) {
|
|
|
o := orm.NewOrmUsingDB("fms")
|
|
|
sql := ` SELECT * FROM contract_register WHERE start_date > ? AND start_date < ? AND is_deleted = 0 AND product_ids LIKE '%2%' `
|
|
|
- _, err = o.Raw(sql, startDate, startDate).QueryRows(&results)
|
|
|
+ _, err = o.Raw(sql, startDate, endDate).QueryRows(&results)
|
|
|
return
|
|
|
}
|