[IMP] Updated website urls on modules and info page
[odoo/odoo.git] / addons / account_analytic_plans / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 {
23     'name': 'Multiple Analytic Plans',
24     'version': '1.0',
25     'category': 'Accounting & Finance',
26     'description': """
27 This module allows to use several analytic plans according to the general journal.
28 ==================================================================================
29
30 Here multiple analytic lines are created when the invoice or the entries
31 are confirmed.
32
33 For example, you can define the following analytic structure:
34 -------------------------------------------------------------
35   * **Projects**
36       * Project 1
37           + SubProj 1.1
38           
39           + SubProj 1.2
40
41       * Project 2
42       
43   * **Salesman**
44       * Eric
45       
46       * Fabien
47
48 Here, we have two plans: Projects and Salesman. An invoice line must be able to write analytic entries in the 2 plans: SubProj 1.1 and Fabien. The amount can also be split.
49  
50 The following example is for an invoice that touches the two subprojects and assigned to one salesman:
51 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
52 **Plan1:**
53
54     * SubProject 1.1 : 50%
55     
56     * SubProject 1.2 : 50%
57     
58 **Plan2:**
59     Eric: 100%
60
61 So when this line of invoice will be confirmed, it will generate 3 analytic lines,for one account entry.
62
63 The analytic plan validates the minimum and maximum percentage at the time of creation of distribution models.
64         """,
65     'author': 'OpenERP SA',
66     'website': 'https://www.odoo.com/page/accounting',
67     'images': ['images/analytic_plan.jpeg'],
68     'depends': ['account', 'account_analytic_default'],
69     'data': [
70         'security/account_analytic_plan_security.xml',
71         'security/ir.model.access.csv',
72         'account_analytic_plans_view.xml',
73         'account_analytic_plans_report.xml',
74         'wizard/analytic_plan_create_model_view.xml',
75         'wizard/account_crossovered_analytic_view.xml',
76         'views/report_crossoveredanalyticplans.xml',
77         'views/account_analytic_plans.xml',
78     ],
79     'demo': [],
80     'test': ['test/acount_analytic_plans_report.yml'],
81     'installable': True,
82     'auto_install': False,
83 }
84
85 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: