~julie-w/unifield-wm/UTP-925

2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
1
# -*- coding: utf-8 -*-
2
##############################################################################
2.14.4 by Matthieu Dietrich
UF-168: [FIX]:
3
#
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
4
#    OpenERP, Open Source Management Solution
2.14.4 by Matthieu Dietrich
UF-168: [FIX]:
5
#    Copyright (C) 2011 MSF, TeMPO consulting
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
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
2.14.4 by Matthieu Dietrich
UF-168: [FIX]:
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
19
#
20
##############################################################################
21
{
22
    "name": "Multi-Currency Management",
23
    "version": "1.0",
1994.2.120 by Olivier DOSSMANN
REF-56 [ADD] Change/Adapt dependancies for all modules that use account_override
24
    "depends": ["account_journal", "finance", "analytic_distribution", "purchase", "register_accounting"],
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
25
    "category": "General/Standard",
26
    "description": """
27
    This module aims to only use a subset of currencies, and have them available
28
    for each accounting entry.
1994.2.120 by Olivier DOSSMANN
REF-56 [ADD] Change/Adapt dependancies for all modules that use account_override
29
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
30
    """,
103.4.5 by Matthieu Dietrich
UF-248: [IMP] list of currencies loaded (with names)
31
    "init_xml": [
32
        'data/currency_data.xml',
33
    ],
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
34
    'update_xml': [
35
        'res_currency_functional_view.xml',
1213.8.16 by Olivier DOSSMANN
UF-1470 [ADD] New currency field on Journal Entry to permit user to do manual journal entry
36
        'account_view.xml',
2.14.4 by Matthieu Dietrich
UF-168: [FIX]:
37
        'account_move_line_view.xml',
2.14.5 by Matthieu Dietrich
UF-168: [ADD] - added double currencies for bank statements, purchase orders, sales orders and requests for quotation
38
        'account_bank_statement_view.xml',
39
        'order_line_view.xml',
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
40
    ],
2.14.3 by Matthieu Dietrich
UF-168: [ADD] added test + K-currency
41
    'test': [
42
        'test/res_currency_functional.yml',
43
    ],
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
44
    'demo_xml': [],
45
    'installable': True,
46
    'active': False,
47
#    'certificate': 'certificate',
48
}
2672 by jf
US-335 [IMP] Register reports: cash reconcilition / bank reconciliation / pending cheque
49
2.14.1 by Matthieu Dietrich
UF-168: [ADD] Multi-Currency
50
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: