~camptocamp/account-financial-tools/account-constraint-adding_by_JGE

« back to all changes in this revision

Viewing changes to account_move_template/__openerp__.py

  • Committer: Guewen Baconnier
  • Author(s): Lorenzo Battistini
  • Date: 2013-01-04 13:55:50 UTC
  • mfrom: (93.1.3 adding_account_move_template)
  • Revision ID: guewen.baconnier@camptocamp.com-20130104135550-vcvr3fyktd8216nx
[ADD] account_move_template moved from https://code.launchpad.net/~domsense/domsense-agilebg-addons/6.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#    
 
4
#    Copyright (C) 2011 Agile Business Group sagl (<http://www.agilebg.com>)
 
5
#    Copyright (C) 2011 Domsense srl (<http://www.domsense.com>)
 
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 published
 
9
#    by the Free Software Foundation, either version 3 of the License, or
 
10
#    (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
    'name': "Account Move Template",
 
23
    'version': '0.1',
 
24
    'category': 'Generic Modules/Accounting',
 
25
    'description': """
 
26
Templates for Journal Entries
 
27
 
 
28
User can configure journal entries templates, useful for recurring entries.
 
29
The amount of each template line can be computed (through python code) or kept as user input. If user input, when using the template, user has to fill the amount of every input lines.
 
30
The journal entry form allows lo load, through a wizard, the template to use and the amounts to fill.
 
31
""",
 
32
    'author': 'Agile Business Group & Domsense',
 
33
    'website': 'http://www.agilebg.com',
 
34
    'license': 'AGPL-3',
 
35
    "depends" : ['account_accountant', 'analytic'],
 
36
    "init_xml" : [],
 
37
    "update_xml" : [
 
38
        'move_template.xml',
 
39
        'wizard/select_template.xml',
 
40
        'security/ir.model.access.csv',
 
41
        ],
 
42
    "demo_xml" : [],
 
43
    'test': [
 
44
        'test/generate_move.yml',
 
45
        ],
 
46
    "active": False,
 
47
    "installable": True
 
48
}