X-Git-Url: http://git.cyclocoop.org/?p=burette%2Fanalytic_point_of_sale.git;a=blobdiff_plain;f=__openerp__.py;fp=__openerp__.py;h=55c9ac079030ca4b739a3182f1feaa9b541c3c32;hp=0000000000000000000000000000000000000000;hb=815096298d0b1925488e3a7fbf5794bfa2ceac33;hpb=f4a4c230af34dc40ba87752d6d4b941fd52ae5cb diff --git a/__openerp__.py b/__openerp__.py new file mode 100644 index 0000000..55c9ac0 --- /dev/null +++ b/__openerp__.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +############################################################################## +# +# analytic_point_of_sale module for OpenERP, Analytic Point of sale +# Copyright (C) 2017 L'Heureux Cyclage () +# 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 . +# +############################################################################## + +{ + '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: