#21 -- Fix jpql

This commit is contained in:
Anton Romanov 2025-04-03 11:41:09 +04:00
parent 6770d1645c
commit c62774aebb

View File

@ -10,7 +10,6 @@ import java.util.List;
public interface ReportRepository extends JpaRepository<Report, Integer> {
//
@Query("SELECT new ru.ulstu.statistic.model.RatingItem(r.aspirant, (SELECT cast(sum(rv.indicatorValue) AS Integer) FROM ReportValue rv WHERE rv MEMBER OF r.values)) FROM Report r JOIN r.reportPeriod rp WHERE rp.id = :reportPeriodId")
List<RatingItem> getRating(@Param("reportPeriodId") Integer reportPeriodId);
}