Skip to content

Commit

Permalink
Fix minimum amount for valid adherent cotisation
Browse files Browse the repository at this point in the history
  • Loading branch information
Remg committed Oct 30, 2024
1 parent d6b2bae commit 3668b7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function generate(Adherent $adherent, array $previousTags): array
if (!empty($totalContributionPaymentsByYear)) {
if (
\array_key_exists($currentYear, $totalContributionPaymentsByYear)
&& $totalContributionPaymentsByYear[$currentYear] > 30
&& $totalContributionPaymentsByYear[$currentYear] >= 30
&& (
!$adherent->findElectedRepresentativeMandates(true)
|| $adherent->exemptFromCotisation
Expand Down

0 comments on commit 3668b7b

Please sign in to comment.