[PYTHON] +point of sale move lines analytic account based on shop default analytic...
[burette/analytic_point_of_sale.git] / __openerp__.py
diff --git a/__openerp__.py b/__openerp__.py
new file mode 100644 (file)
index 0000000..55c9ac0
--- /dev/null
@@ -0,0 +1,55 @@
+# -*- coding: utf-8 -*-
+##############################################################################
+#
+#    analytic_point_of_sale module for OpenERP, Analytic Point of sale
+#    Copyright (C) 2017 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
+#    L'Heureux Cyclage
+#
+#    This file is a part of analytic_point_of_sale
+#
+#    analytic_point_of_sale 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.
+#
+#    analytic_point_of_sale 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': 'Analytic Point of sale',
+    'version': '0.1',
+    'category': 'Accounting & Finance',
+    'complexity': "normal",
+    'description': """
+This module is add analycics features in point of sale
+======================================================
+
+Functionnalities :
+    * Use shops analytic account as default for move lines generate from the
+    point of sale;
+    * …
+    """,
+    'author': 'L\'Heureux Cyclage',
+    'website': 'http://www.heureux-cyclage.org/',
+    'depends': [
+        'sale',
+        'point_of_sale',
+               ],
+    'init_xml': [
+    ],
+    'update_xml': [
+    ],
+    'installable': True,
+    'auto_install': False,
+    'images': [],
+}
+
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: