Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

fix bug: issue #148 #149

Merged
merged 2 commits into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static boolean evaluate(
filter instanceof BursarExportFilterFeeFineOwner filterFeeFineOwner
) {
return UUID
.fromString(account.getAccount().getFeeFineOwner())
.fromString(account.getAccount().getOwnerId())
.equals(filterFeeFineOwner.getFeeFineOwner());
} else if (filter instanceof BursarExportFilterLocation filterLocation) {
Item item = account.getItem();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ void testFilterAccountByFeeFineOwner() {
filterFeeFineOwner.setFeeFineOwner(feeFineOwnerUUID);

Account account = new Account();
account.setFeeFineOwner("00000000-0000-4000-8000-000000000000");
account.setOwnerId("00000000-0000-4000-8000-000000000000");

AccountWithAncillaryData accountWithAncillaryData = AccountWithAncillaryData
.builder()
Expand Down