flowcode / financial-bundle
Basic finances and accounting
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 9
Forks: 0
Open Issues: 0
pkg:composer/flowcode/financial-bundle
This package is not auto-updated.
Last update: 2025-10-04 00:39:04 UTC
README
The FlowcodeFinancialBundle brings you a model for basic financial and accounting features.
Documentation
The source of the documentation is stored in the Resources/doc/
folder
in this bundle:
Read the Documentation for master
To make financeService work properly you have to add this mappings
document -> transaction document -> paymentDocument
Document:
type: entity
oneToMany:
transactions:
targetEntity: Flowcode\FinancialBundle\Entity\Core\Transaction
mappedBy: document
cascade: ["persist"]
paymentsDocuments:
targetEntity: Flowcode\FinancialBundle\Entity\Payment\PaymentDocument
mappedBy: document
cascade: ["persist"]
payment -> paymentDocument
Payment:
type: entity
oneToMany:
paymentDocuments:
targetEntity: Flowcode\FinancialBundle\Entity\Payment\PaymentDocument
mappedBy: payment
cascade: ["persist"]
transaction -> journalEntries
Transaction:
type: entity
oneToMany:
journalEntries:
targetEntity: Flowcode\FinancialBundle\Entity\Core\JournalEntry
mappedBy: transaction
cascade: ["persist"]