The __init__.py file is the Python module descriptor, because an OpenERP
module is also a regular Python module.
1- Import all files & directories containing python code
2-import idea, wizard, report
The __openerp__.py is the OpenERP module manifest and contains a single
Python dictionary with the declaration of the module: its name, dependencies,
description, and composition
.
Note- code syntax of __init__.py
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
import models
0 Comment(s)