Browse Source

提交代码

陈少旭 9 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,7 +650,7 @@ func GetPrescriptionByDialyzer(page int64, limit int64, orgid int64, dialyzer st
650 650
 	if orgid > 0 {
651 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 655
 	offset := (page - 1) * limit
656 656