원클릭으로
odoo-report
Use when building dashboards, analyzing business data, or creating reports — KPI definition, SQL analytics, dashboard creation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when building dashboards, analyzing business data, or creating reports — KPI definition, SQL analytics, dashboard creation
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
| name | odoo-report |
| description | Use when building dashboards, analyzing business data, or creating reports — KPI definition, SQL analytics, dashboard creation |
Guide dashboard creation, data analysis, and business reporting.
Ask about:
Delegate to the odoo-analyst agent for complex queries:
For quick answers, query directly:
odoo_db_run_sql(db_name="db", query="SELECT ... FROM sale_order WHERE ...")
odoo_record_search(db_name="db", model="sale.order", domain=[...], count_only=True)
For persistent dashboards in Odoo:
odoo_create_dashboard(
db_name="db",
name="Sales Dashboard",
metrics=[
{"model": "sale.order", "measure": "amount_total", "group_by": "date_order:month"},
{"model": "sale.order", "measure": "__count", "domain": [["state", "=", "sale"]]}
]
)
For QWeb reports:
odoo_report_list(db_name="db", model="sale.order")
odoo_report_modify(db_name="db", report_name="...", xpath="...", content="...")
| Metric | Model | Measure | Filter |
|---|---|---|---|
| Total Revenue | sale.order | amount_total | state = 'sale' |
| Open Orders | sale.order | __count | state = 'draft' |
| New Customers | res.partner | __count | create_date >= this_month |
| Products Sold | sale.order.line | product_uom_qty | via sale order |
| Outstanding Invoices | account.move | amount_residual | state = 'posted', payment_state != 'paid' |
| Stock Value | stock.valuation.layer | value | current |
| Employee Count | hr.employee | __count | active = True |
SOC 직업 분류 기준
Use when importing, creating, or managing business data in Odoo — CSV imports, bulk record creation, data migration, user setup
Use when setting up Odoo for a business — guides the full Discover, Plan, Build flow from natural language requirements
Use when designing Odoo data models — enforces naming conventions, inheritance patterns, security, and field best practices
Use when exploring Odoo customization ideas — discovers modules, matches blueprints, decides configuration vs code generation
Use when diagnosing Odoo issues — reads logs, maps common errors to fixes, checks module states, with snapshot-based rollback