[Base]
authorLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 3 Oct 2014 13:33:33 +0000 (15:33 +0200)
committerLudovic CHEVALIER <ludovic.chevalier@heureux-cyclage.org>
Fri, 3 Oct 2014 13:33:33 +0000 (15:33 +0200)
__init__.py [new file with mode: 0644]
__openerp__.py [new file with mode: 0644]
data/base.xml [new file with mode: 0644]

diff --git a/__init__.py b/__init__.py
new file mode 100644 (file)
index 0000000..ba6f153
--- /dev/null
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    velocampus_nantes module for OpenERP, Vélocampus Nantes specifities
+#    Copyright (C) 2013-2014 Vélocampus Nantes (<http://www.velocampus.net/>)
+#
+#    This file is a part of velocampus_nantes
+#
+#    velocampus_nantes module is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    velocampus_nantes module is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/__openerp__.py b/__openerp__.py
new file mode 100644 (file)
index 0000000..2579930
--- /dev/null
@@ -0,0 +1,52 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    velocampus_nantes module for OpenERP, Vélocampus Nantes specifities
+#    Copyright (C) 2013-2014 Vélocampus Nantes (<http://www.velocampus.net/>)
+#
+#    This file is a part of velocampus_nantes
+#
+#    velocampus_nantes module is free software: you can redistribute it and/or modify
+#    it under the terms of the GNU General Public License as published by
+#    the Free Software Foundation, either version 3 of the License, or
+#    (at your option) any later version.
+#
+#    velocampus_nantes module is distributed in the hope that it will be useful,
+#    but WITHOUT ANY WARRANTY; without even the implied warranty of
+#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#    GNU General Public License for more details.
+#
+#    You should have received a copy of the GNU General Public License
+#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+{
+    'name': 'Custom Vélocampus Nantes',
+    'version': '0.1',
+    'category': 'Association',
+    'complexity': "normal",
+    'description': """
+This module is a profile module for Vélocampus Nantes
+==========================================
+
+It installs the profile for bike co-ops to manage some features like:
+    * ...
+    """,
+    'author': 'Vélocampus Nantes',
+    'website': 'http://www.velocampus.net',
+    'depends': [
+        'bikecoop',
+        'bikecoop_l10n_fr'
+    ],
+    'init_xml': [
+    ],
+    'update_xml': [
+        'data/base.xml',
+    ],
+    'installable': True,
+    'auto_install': False,
+    'images': [],
+}
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
diff --git a/data/base.xml b/data/base.xml
new file mode 100644 (file)
index 0000000..84ee245
--- /dev/null
@@ -0,0 +1,25 @@
+<openerp>
+    <data noupdate="1">
+        <!-- Association -->
+        <record id="base.main_partner" model="res.partner">
+            <field name="name">Vélocampus Nantes</field>
+            <field name="website">www.velocampus.net</field>
+            <field name="street">3, chemin de la Censive du Tertre</field>
+            <field name="street2"></field>
+            <field name="zip">44300</field>
+            <field name="city">NANTES</field>
+            <field name="phone">(+33)240162645</field>
+            <field name="email">contact@velocampus.net</field>
+            <field model="res.country" name="country_id" ref="base.fr"/>
+        </record>
+
+        <record id="base.main_company" model="res.company">
+            <field name="name">Vélocampus Nantes</field>
+            <field name="partner_id" ref="base.main_partner"/>
+            <field name="rml_header1"></field>
+            <field name="rml_footer">N° SIRET : ??? - Code NAF : ????</field>
+            <field name="currency_id" ref="base.EUR"/>
+        </record>
+    </data>
+</openerp>
+