Browse Source

提交代码

陈少旭 11 months ago
parent
commit
83bf06375d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      service/statistis_qc_service.go

+ 1 - 1
service/statistis_qc_service.go View File

650
 	if orgid > 0 {
650
 	if orgid > 0 {
651
 		db = db.Where("user_org_id = ?", orgid)
651
 		db = db.Where("user_org_id = ?", orgid)
652
 	}
652
 	}
653
-	db = db.Where("record_date >= ? and record_date <= ?", start_time, end_time)
653
+	db = db.Where("record_date >= ? and record_date <= ? and status = 1", start_time, end_time)
654
 
654
 
655
 	offset := (page - 1) * limit
655
 	offset := (page - 1) * limit
656
 
656