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

Commit

Permalink
# This is a combination of 3 commits.
Browse files Browse the repository at this point in the history
# This is the 1st commit message:

fix: Only show valid fees for licences

# This is the commit message #2:

chore: olcs-transfer bump

# This is the commit message #3:

fix: bump transfer dependency to minium version reqd for this bugfix
  • Loading branch information
wadedvsa authored and fibble committed May 7, 2024
1 parent 702a51d commit 49bd0d1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"olcs/olcs-auth": "^8.0",
"olcs/olcs-common": "^7.2.0",
"olcs/olcs-logging": "^7.2",
"olcs/olcs-transfer": "^7.0",
"olcs/olcs-transfer": "^7.1.1",
"olcs/olcs-utils": "^6.0.0",
"psr/container": "^1.1|^2",
"aws/aws-sdk-php": "^3.300"
Expand Down
8 changes: 7 additions & 1 deletion module/Olcs/src/Controller/FeesController.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,13 @@ public function receiptAction(): ViewModel

protected function getOutstandingFeeDataForOrganisation(?int $organisationId)
{
$query = OutstandingFees::create(['id' => $organisationId, 'hideExpired' => true]);
$query = OutstandingFees::create(
[
'id' => $organisationId,
'hideExpired' => true,
'onlySubmitted' => true,
],
);
$response = $this->handleQuery($query);

$this->disableCardPayments = $response->getResult()['disableCardPayments'];
Expand Down

0 comments on commit 49bd0d1

Please sign in to comment.