Improved Security
[odoo/odoo.git] / addons / account_analytic_plans / __terp__.py
1 # -*- encoding: utf-8 -*-
2 {
3     "name" : "Multiple-plans management in analytic accounting",
4     "version" : "1.0",
5     "depends" : ["account", "account_analytic_default"],
6     "author" : "Tiny",
7     "description": """This module allows to use several analytic plans, according to the general journal,
8 so that multiple analytic lines are created when the invoice or the entries
9 are confirmed.
10
11 For example, you can define the following analytic structure:
12   Projects
13       Project 1
14           SubProj 1.1
15           SubProj 1.2
16       Project 2
17   Salesman
18       Eric
19       Fabien
20
21 Here, we have two plans: Projects and Salesman. An invoice line must
22 be able to write analytic entries in the 2 plans: SubProj 1.1 and
23 Fabien. The amount can also be splitted. The following example is for
24 an invoice that touches the two subproject and assigned to one salesman:
25
26 Plan1:
27     SubProject 1.1 : 50%
28     SubProject 1.2 : 50%
29 Plan2:
30     Eric: 100%
31
32 So when this line of invoice will be confirmed, it will generate 3 analytic lines,
33 for one account entry.
34         """,
35     "website" : "http://tinyerp.com/module_account.html",
36     "category" : "Generic Modules/Accounting",
37     "init_xml" : [
38     ],
39     "demo_xml" : [
40     ],
41     "update_xml" : [
42         "security/ir.model.access.csv",
43     "model_wizard.xml","account_analytic_plans_view.xml",
44     "account_analytic_plans_report.xml"],
45
46     "active": False,
47     "installable": True
48 }
49 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
50