~unifield-team/unifield-wm/us-826

235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
1
#!/usr/bin/env python
613.3.5 by Olivier DOSSMANN
UF-818 [ADD] Import invoice wizard on debit note
2
# -*- coding:utf-8 -*-
235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
3
##############################################################################
4
#
5
#    OpenERP, Open Source Management Solution    
6
#    Copyright (C) 2011 TeMPO Consulting, MSF. All Rights Reserved
7
#    Developer: Olivier DOSSMANN
8
#
9
#    This program is free software: you can redistribute it and/or modify
10
#    it under the terms of the GNU Affero General Public License as
11
#    published by the Free Software Foundation, either version 3 of the
12
#    License, or (at your option) any later version.
13
#
14
#    This program is distributed in the hope that it will be useful,
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
#    GNU Affero General Public License for more details.
18
#
19
#    You should have received a copy of the GNU Affero General Public License
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21
#
22
##############################################################################
23
24
{
25
    "name" : "Accounting for MSF",
26
    "version" : "1.0",
27
    "description" : """
28
        This module aims to add some elements in accounting for MSF.
29
    """,
617 by jf
author in __openerp__.py
30
    "author" : "TeMPO Consulting, MSF",
235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
31
    'website': 'http://tempo-consulting.fr',
32
    "category" : "Tools",
778.7.41 by chloups208
uf-643 test for compatibility with original stock yaml test
33
    "depends" : ["base", "account", "purchase_msf", "register_accounting"],
235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
34
    "init_xml" : [],
35
    "update_xml" : [
36
        'board_account_view.xml',
613.3.1 by Olivier DOSSMANN
UF-818 [ADD] Default import invoice account for Debit Note
37
        'res_company_view.xml',
896.8.17 by Olivier DOSSMANN
UF-1083 [ADD] Donation payable account field on Partner
38
        'res_partner_view.xml',
896.8.1 by Olivier DOSSMANN
UF-1083 [ADD] Change debit note filename to "invoice"
39
        'invoice_view.xml',
613.3.5 by Olivier DOSSMANN
UF-818 [ADD] Import invoice wizard on debit note
40
        'wizard_view.xml',
896.8.13 by Olivier DOSSMANN
UF-1083 [ADD] Donation expense account on product
41
        'product_product_view.xml',
1038.14.12 by Olivier DOSSMANN
UF-1240 [ADD] Adapt attachment view for finance
42
        'attachment_view.xml',
235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
43
    ],
44
    "demo_xml" : [],
45
    "test": [
613.3.35 by Olivier DOSSMANN
UF-818 [ADD] YAML tests
46
        'test/accounting_data.yml',
47
        'test/intersection_flow.yml',
896.8.22 by Olivier DOSSMANN
UF-1083 [ADD] Tests for In-kind donations from a PO
48
        'test/inkind_donation.yml',
235.1.1 by Olivier DOSSMANN
UF-354 [ADD] Add a widget to accounting dashboard
49
    ],
50
    "installable": True,
51
    "active": False
52
}
53
54
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: