بنقرة واحدة
odoo-architecture-overview
Learn about Odoo's Multitier architecture, Module structure, and Editions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Learn about Odoo's Multitier architecture, Module structure, and Editions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
A router skill that identifies and recommends the most appropriate Odoo skill for a given user request.
Create HTTP endpoints for Websites and APIs.
Comprehensive guide to Odoo fields, including basic, relational, computed, and robust technical features (indexing, company_dependent, properties).
Master the Odoo ORM for data manipulation, environment management, and CRUD operations.
Configure Access Control Lists (ACLs) using CSV files.
Write automated tests using TransactionCase and Form emulators to ensure code quality.
| name | Odoo Architecture Overview |
| description | Learn about Odoo's Multitier architecture, Module structure, and Editions. |
Odoo uses a three-tier architecture:
Modules are the core building blocks of Odoo. They can:
--addons-path command-line option.A module can contain:
A typical module directory structure:
module_name/
├── models/
│ ├── *.py
│ └── __init__.py
├── views/
│ └── *.xml
├── data/
│ └── *.xml
├── __init__.py
└── __manifest__.py
__init__.py: Makes the directory a Python package and imports sub-packages/modules.__manifest__.py: Declares the module, its dependencies, and metadata.