1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

(bug) missing payment transfer journal code in accouting line

This commit is contained in:
Du Peng 2024-02-19 12:55:28 +01:00
parent f79c2fe0a9
commit 45bbd99340
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
## Next release
- Fix a bug: missing payment transfer journal code in accouting line
- improvement: add settlement by transfer/check to invoice paiement info
## v6.3.12 2024 February 12

View File

@ -13,6 +13,8 @@ class Accounting::AccountingJournalService
payment: {
card: Setting.get('accounting_payment_card_journal_code') || '',
wallet: Setting.get('accounting_payment_wallet_journal_code') || '',
transfer: Setting.get('accounting_payment_transfer_journal_code') || '',
check: Setting.get('accounting_payment_check_journal_code') || '',
other: Setting.get('accounting_payment_other_journal_code') || ''
}
}