mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-19 12:42:00 +02:00
35 lines
1 KiB
Markdown
35 lines
1 KiB
Markdown
# Reports
|
|
|
|
Report definitions and templates in account.
|
|
|
|
```mermaid
|
|
classDiagram
|
|
class ReportAccountHashIntegrity
|
|
AbstractModel <|-- ReportAccountHashIntegrity
|
|
class AccountInvoiceReport
|
|
Model <|-- AccountInvoiceReport
|
|
class ReportInvoiceWithoutPayment
|
|
AbstractModel <|-- ReportInvoiceWithoutPayment
|
|
class ReportInvoiceWithPayment
|
|
AbstractModel <|-- ReportInvoiceWithPayment
|
|
```
|
|
|
|
## Available Reports
|
|
|
|
### Analytical/Dashboard Reports
|
|
- **Invoices Analysis** (Analysis/Dashboard)
|
|
|
|
|
|
## Report Files
|
|
|
|
- **account_hash_integrity_templates.py** (Python logic)
|
|
- **account_hash_integrity_templates.xml** (XML template/definition)
|
|
- **account_invoice_report.py** (Python logic)
|
|
- **account_invoice_report_view.xml** (XML template/definition)
|
|
- **__init__.py** (Python logic)
|
|
|
|
## Notes
|
|
- Named reports above are accessible through Odoo's reporting menu
|
|
- Python files define report logic and data processing
|
|
- XML files contain report templates, definitions, and formatting
|
|
- Reports are integrated with Odoo's printing and email systems
|