|
244.
|
|
|
OpenERP uses a `three-tier architecture <http://en.wikipedia.org/wiki/Multitier_architecture#Three-tier_architecture>`_. The application tier itself is written as a core and multiple additional modules that can be installed or not to create a particular configuration of OpenERP.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:7
|
|
245.
|
|
|
The core of OpenERP and its different modules are written in `Python <http://python.org/>`_. The functionality of a module is exposed through XML-RPC (and/or NET-RPC depending on the server's configuration). Modules also typically make use of OpenERP ORM to persist their data in a relational database (PostgreSQL). Modules can insert data in the database during installation by providing XML (or CSV or YML) files.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:13
|
|
246.
|
|
|
Although modules are a simple way to structure a complex application, OpenERP modules also extend the system. Modules are also called addons (they could also have been called plugins).
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:20
|
|
247.
|
|
|
In a typical configuration of OpenERP, the following modules can be found:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:24
|
|
248.
|
|
|
base: the most basic module; it is always installed and can be thought as being part of the core of OpenERP. It defines ``ir.property``, ``res.company``, ``res.request``, ``res.currency``, ``res.users``, ``res.partner``, and so on.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:26
|
|
249.
|
|
|
crm: Customer & Supplier Relationship management.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:30
|
|
250.
|
|
|
sale: Sales management.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:31
|
|
251.
|
|
|
mrp: Manufacturing Resource Planning.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:32
|
|
252.
|
|
|
By using Python, XML files, and relying on OpenERP's ORM and its extensibility mechanisms, new modules can be written easily and quickly. OpenERP's open source nature and its numerous modules also provide a lot of examples for any new development.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:34
|
|
253.
|
|
|
Module Structure
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../../source/developer/03_modules_1.rst:41
|