Skip to content

Commit

Permalink
fix: remove old customer item match filter
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianAndersen committed Jan 7, 2025
1 parent 5225f23 commit fe6d416
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export class CustomerItemHandlerService {
}

return this._customerItemService.get({
query: `?deadline=>${fromDate}&deadline=<${toDate}&returned=false&buyout=false&match=false&type=${customerItemType}`,
query: `?deadline=>${fromDate}&deadline=<${toDate}&returned=false&buyout=false&type=${customerItemType}`,
});
}

Expand All @@ -126,7 +126,7 @@ export class CustomerItemHandlerService {
.add("day", 1)
.format("DDMMYYYYHHmm");

let query = `?returned=false&buyout=false&match=false&deadline=>${deadlineAboveString}&deadline=<${deadlineBelowString}`;
let query = `?returned=false&buyout=false&deadline=>${deadlineAboveString}&deadline=<${deadlineBelowString}`;

// we currently have no notion of "loan" and therefore need to create this 'hack'
const branchIds = await this._branchHelperService.getBranchesWithType(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class MessengerReminderComponent implements OnInit {
.add("day", 2)
.format("DDMMYYYYHHmm");

let query = `?returned=false&buyout=false&match=false&deadline=>${deadlineAboveString}&deadline=<${deadlineBelowString}`;
let query = `?returned=false&buyout=false&deadline=>${deadlineAboveString}&deadline=<${deadlineBelowString}`;

// we currently have no notion of "loan" and therefore need to create this 'hack'
const loanBranches = (
Expand Down

0 comments on commit fe6d416

Please sign in to comment.