Julie Berger Testing in Odoo: Unit Tests, Tours, and CI Odoo has a built-in testing framework. Python unit tests for business logic, HTTP tests for controllers, and tours (browser tests) for frontend. Combined with CI pipelines, you catch errors before the... Guide Odoo Utveckling Jul 6, 2025 Odoo
ARC Gruppen AB, Chrille Hedberg Odoo Views: Form, List, and XPath Inheritance Views in Odoo define how data is presented. Form view for single record, list view for overview, Kanban for visual board, pivot for analysis. Everything is defined in XML and can be extended with inhe... Guide Odoo Utveckling Feb 25, 2025 Odoo
ARC Gruppen AB, Chrille Hedberg The OWL Framework: Frontend Development in Odoo 18 OWL (Odoo Web Library) is Odoo's JavaScript framework for the frontend. It replaced the older widget architecture and resembles React and Vue: components, reactive state, hooks, and templates. In Odoo... Guide Odoo Odoo 18 Utveckling Jan 25, 2025 Odoo
ARC Gruppen AB, Chrille Hedberg Odoo Reports with QWeb: Customize Invoices and Orders Odoo generates PDF reports for invoices, sales orders, delivery slips, inventory operations, and more. All are built on QWeb templates (XML-based templating) that you can customize. QWeb basics QWeb i... Guide Odoo Utveckling Oct 12, 2024
Julie Berger Odoo XML-RPC: Integrate with Python, Node, and Go Odoo's XML-RPC API lets external systems read, create, update, and delete data. Python, JavaScript, Go, PHP, virtually any language with XML-RPC support can communicate with Odoo. Authentication Three... Guide Odoo Utveckling Sep 25, 2024
ARC Gruppen AB, Chrille Hedberg Odoo ORM: Computed Fields and Onchange Methods Odoo's ORM (Object-Relational Mapping) handles everything between Python code and the database. You create fields, define calculations, and Odoo handles the rest. Computed fields and onchange methods ... Guide Odoo Utveckling Sep 8, 2024
ARC Gruppen AB, Chrille Hedberg Odoo in Docker: Production-Ready Setup Docker is the smoothest way to run Odoo, whether for development or production. The official Docker image works, but for a real setup you need to customize it. docker-compose.yml Two services: Odoo an... Guide Odoo Odoo 18 Utveckling Jul 1, 2024
Julie Berger Odoo Module Development: Your First Module in Odoo 18 Odoo is built to be extended with custom modules. Every customization should be a module, not a change to core code. It makes upgrades possible and keeps the system maintainable. Scaffolding odoo scaf... Guide Odoo Odoo 18 Utveckling Jun 12, 2024