- Migrate 5 OWL components from deprecated useService("rpc") to useService("orm") for Odoo 19
- Fix _paginate() signature mismatch across 6 controllers (dual calling convention)
- Fix taxonomy API serializers referencing non-existent fields (icon, difficulty)
- Fix branding controller validate_token() called with wrong arguments
- Add .sudo() to exam template/question model access under auth='none'
- Restore missing encoach_core files (security groups, permissions seed, core models)
- Create encoach_api shared controller utilities module
- Add Entity list/form/search views and menu items
- Add Taxonomy (Subjects/Domains/Topics) views and menu items
- Fix deprecated XML group expand="0" patterns across 15 view files
- Remove stale model references from adaptive __init__.py and access CSV
- Update .gitignore to exclude local dev artifacts
Tested: 97% pass rate (64/66 tests) across UI navigation, CRUD, and API endpoints.
Made-with: Cursor
62 lines
851 B
Plaintext
62 lines
851 B
Plaintext
# Environment files — never commit secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Poetry
|
|
poetry.lock
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Docker
|
|
*.tar
|
|
|
|
# Frontend repo (separate repository)
|
|
new_project/encoach_frontend_new_v1/
|
|
|
|
# Local dev artifacts
|
|
miniconda3/
|
|
pgdata/
|
|
.conda-envs/
|
|
.conda-pkgs/
|
|
|
|
# Odoo core source (cloned separately)
|
|
odoo/
|
|
|
|
# Local Odoo config and data
|
|
odoo.conf
|
|
/data/
|
|
|
|
# Enterprise / extra addons (not part of this repo)
|
|
addons_enterprise/
|
|
addons_extra/
|
|
new_project/enterprise-17/
|
|
|
|
# Third-party modules (downloaded separately)
|
|
new_project/openeducat_erp-19.0/
|
|
new_project/openeducat_erp-19.0.zip
|
|
new_project/openeducate_enterprise-17.zip
|
|
new_project/encoach_frontend_new_v1-main.zip
|
|
|
|
# Local tools
|
|
new_project/.tools/
|
|
|
|
# Large binary archives
|
|
*.zip
|