dev-master
9999999-devBasic finances and accounting
MIT
The Development Requires
by Juan Manuel Aguero
Wallogit.com
2017 © Pedro Peláez
Basic finances and accounting
The FlowcodeFinancialBundle brings you a model for basic financial and accounting features., (*1)
The source of the documentation is stored in the Resources/doc/ folder
in this bundle:, (*2)
Read the Documentation for master, (*3)
To make financeService work properly you have to add this mappings, (*4)
document -> transaction document -> paymentDocument, (*5)
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, (*6)
Payment:
type: entity
oneToMany:
paymentDocuments:
targetEntity: Flowcode\FinancialBundle\Entity\Payment\PaymentDocument
mappedBy: payment
cascade: ["persist"]
transaction -> journalEntries, (*7)
Transaction:
type: entity
oneToMany:
journalEntries:
targetEntity: Flowcode\FinancialBundle\Entity\Core\JournalEntry
mappedBy: transaction
cascade: ["persist"]
Basic finances and accounting
MIT