mirror of
https://github.com/bringout/oca-ocb-mail.git
synced 2026-04-19 10:02:06 +02:00
32 lines
940 B
Markdown
32 lines
940 B
Markdown
# Reports
|
|
|
|
Report definitions and templates in im_livechat.
|
|
|
|
```mermaid
|
|
classDiagram
|
|
class ImLivechatReportChannel
|
|
Model <|-- ImLivechatReportChannel
|
|
class ImLivechatReportOperator
|
|
Model <|-- ImLivechatReportOperator
|
|
```
|
|
|
|
## Available Reports
|
|
|
|
### Analytical/Dashboard Reports
|
|
- **Operator Analysis** (Analysis/Dashboard)
|
|
- **Session Statistics** (Analysis/Dashboard)
|
|
|
|
|
|
## Report Files
|
|
|
|
- **im_livechat_report_channel.py** (Python logic)
|
|
- **im_livechat_report_channel_views.xml** (XML template/definition)
|
|
- **im_livechat_report_operator.py** (Python logic)
|
|
- **im_livechat_report_operator_views.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
|