found that idReference Incrementing when it shoudn't still looking for a fix, and fixed some sectioncell fetching logic in SectionCellService.java
Some checks failed
Format / formatting (push) Failing after 6s
Build / build (push) Failing after 40s
CI / build (push) Successful in 12s
Format / formatting (pull_request) Failing after 6s

This commit is contained in:
2025-04-29 12:48:29 +02:00
parent 63f6f16d83
commit cbef042e97
3 changed files with 151 additions and 67 deletions

View File

@ -79,7 +79,7 @@ public class SharedApiService {
LocalDateTime dateTime = LocalDateTime.parse(date, formatter);
Project project = this.projectService.getProjectById(projectId);
return this.sectionCellService.getSectionCellsByProjectAndSectionIdBeforeDate(
return this.sectionCellService.getLatestSectionCellsByIdReferenceBeforeDate(
project, sectionId, dateTime);
}