Skip to content

Commit

Permalink
Merge branch 'dev' for release 6.3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
gnepud committed Feb 29, 2024
2 parents 484fbde + 58e3097 commit 59ef0db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Next release

## v6.3.15 2024 February 29

- Fix a bug: unable to generate invoice for payment by check/transfer

## v6.3.14 2024 February 26

- improvement: add idp_slo_service_url(logout requests url) to saml provider
Expand Down
4 changes: 2 additions & 2 deletions app/services/invoices/payment_details_service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ def payment_mean(invoice, total, wallet_amount)
# else
if invoice.paid_by_card?
I18n.t('invoices.settlement_by_debit_card')
elsif paid_by_transfer?
elsif invoice.paid_by_transfer?
I18n.t('invoices.settlement_by_transfer')
elsif paid_by_check?
elsif invoice.paid_by_check?
I18n.t('invoices.settlement_by_check')
else
I18n.t('invoices.settlement_done_at_the_reception')
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fab-manager",
"version": "6.3.14",
"version": "6.3.15",
"description": "Fab-manager is the FabLab management solution. It provides a comprehensive, web-based, open-source tool to simplify your administrative tasks and your marker's projects.",
"keywords": [
"fablab",
Expand Down

0 comments on commit 59ef0db

Please sign in to comment.