mirror of
https://github.com/bringout/oca-financial.git
synced 2026-04-20 21:02:06 +02:00
43 lines
1.3 KiB
Markdown
43 lines
1.3 KiB
Markdown
# Reports
|
|
|
|
Report definitions and templates in partner_statement.
|
|
|
|
```mermaid
|
|
classDiagram
|
|
class OutstandingStatementXslx
|
|
AbstractModel <|-- OutstandingStatementXslx
|
|
class DetailedActivityStatementXslx
|
|
AbstractModel <|-- DetailedActivityStatementXslx
|
|
class ActivityStatementXslx
|
|
AbstractModel <|-- ActivityStatementXslx
|
|
class ActivityStatement
|
|
AbstractModel <|-- ActivityStatement
|
|
class ReportStatementCommon
|
|
AbstractModel <|-- ReportStatementCommon
|
|
class OutstandingStatement
|
|
AbstractModel <|-- OutstandingStatement
|
|
class DetailedActivityStatement
|
|
AbstractModel <|-- DetailedActivityStatement
|
|
```
|
|
|
|
## Available Reports
|
|
|
|
No named reports found in XML files.
|
|
|
|
|
|
## Report Files
|
|
|
|
- **activity_statement.py** (Python logic)
|
|
- **activity_statement_xlsx.py** (Python logic)
|
|
- **detailed_activity_statement.py** (Python logic)
|
|
- **detailed_activity_statement_xlsx.py** (Python logic)
|
|
- **__init__.py** (Python logic)
|
|
- **outstanding_statement.py** (Python logic)
|
|
- **outstanting_statement_xlsx.py** (Python logic)
|
|
- **report_statement_common.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
|