# -*- 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: