Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
11015 Vizualizări

I want to learn more about the structure of Odoo, mainly to find out how I can import data. The best way to do that is through a python shell.

$ cd /opt/odoo

$ ipython

In [1]: import openerp

In [2]: openerp.modules.module?

[not much luck]

In [3]: openerp.addons?

[not much luck either]

In [4]: import openerp.addons.decimal_precision as dp  # line from addons/product/product.py

[....]

ImportError: No module named decimal_precision

 

I'm guessing I need to somehow initialize `openerp.addons` so that it will contain all addon modules from the addons directory. I've been grepping through the source code but haven't found how this is done from `openerp.cli.main()`.

Imagine profil
Abandonează

Kasper, there are several ways to import data: over xml-rpc : as webservice through the web interface through an addon module You are referring to 3, I assume. So the first thing would be either to find an existing module that does already a good part of what you want or start a new module from scratch. For new modules you need to set up the standard skeleton of __init__.py inside the module, the main python script, xml views, data files, security files, maybe wizards etc, as explained in the developer documentation.

Autor Cel mai bun răspuns

This function initializes addons: openerp.tools.config.parse_config()

E.g. with passing arguments:

import openerp

openerp.tools.config.parse_config(['--addons-path=addons'])

import openerp.addons.product

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
2
apr. 20
3173
0
iul. 21
3148
2
dec. 19
4835
2
oct. 24
6008
0
nov. 17
3460