From: Ludovic CHEVALIER Date: Wed, 11 May 2022 11:14:48 +0000 (+0200) Subject: [MODULE] +__openerp__ X-Git-Url: https://git.cyclocoop.org/?p=burette%2Faccount_budget_enhancement.git;a=commitdiff_plain;h=b282c1159a9671953420a8dadb96d2c67c30ad33 [MODULE] +__openerp__ --- diff --git a/__openerp__.py b/__openerp__.py new file mode 100644 index 0000000..8b28bea --- /dev/null +++ b/__openerp__.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Copyright 2022 L'Heureux Cyclage +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + + +{ + 'name': 'Budget module enhancement', + 'version': '0.1', + 'category': 'Accounting & Finance', + 'description': """ + +Budget module enhancement +========================= +- Analytic account is not required to follow the evolution of a budgetary position; +- … + """, + 'author': 'L\'Heureux Cyclage', + 'website': 'http://www.heureux-cyclage.org', + 'depends': [ + 'account_budget', + ], + 'update_xml': [ + ], + 'installable': True, + 'auto_install': False, + 'images': [], +}