first import

This commit is contained in:
Valentin Lab
2015-01-28 11:59:35 +07:00
commit 36902ec12b
23 changed files with 489 additions and 0 deletions

31
{{name}}/__openerp__.py Normal file
View File

@@ -0,0 +1,31 @@
# -*- coding: utf-8 -*-
{
'name': '{{name}}',
'version': '{{version}}',
'author': '{{author}}',
'category': '{{category}}',
'complexity': 'normal',
{%- if website %}
'website': '{{ website }}',
{%- endif %}
'data': [
'data/templates.xml',
'security/security.xml',
'security/ir.model.access.csv',
'views/view.xml',
'actions/act_window.xml',
'menu.xml',
'data/data.xml',
],
'depends': [
'base',
],
'qweb': [
"static/src/xml/*.xml",
],
'test': [
],
'installable': True,
'auto_install': False,
}