소스 검색

提交代码

陈少旭 4 달 전
부모
커밋
65ee3edafc
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      service/statistics_service/index_evaluation_service.go

+ 1 - 0
service/statistics_service/index_evaluation_service.go 파일 보기

@@ -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