Browse Source

提交代码

陈少旭 1 month ago
parent
commit
65ee3edafc
1 changed files with 1 additions and 0 deletions
  1. 1 0
      service/statistics_service/index_evaluation_service.go

+ 1 - 0
service/statistics_service/index_evaluation_service.go View File

@@ -1964,6 +1964,7 @@ func FindOrgQualityControlStandardInspectionReferenceById(user_org_id int64, pro
1964 1964
 func FindOrgInspectionCount(user_org_id int64) (count int64, err error) {
1965 1965
 	db := service.XTReadDB()
1966 1966
 	err = db.Model(&models.InspectionReference{}).Where("status = 1 AND org_id = ?", user_org_id).Count(&count).Error
1967
+
1967 1968
 	return
1968 1969
 }
1969 1970