[MERGE]:merged abo's changes
[odoo/odoo.git] / addons / account_voucher / __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" : "eInvoicing & Payments",
24     "version" : "1.0",
25     "author" : 'OpenERP SA',
26     "summary": 'Send Invoices and Track Payments',
27     "description": """
28 eInvoicing & Payments module manage all Voucher Entries such as "Reconciliation Entries", "Adjustment Entries", "Closing or Opening Entries" for Sales, Purchase, Bank, Cash, Expense, Contra.
29 ==============================================================================================================================================================================================
30
31     * Voucher Entry
32     * Voucher Receipt [Sales & Purchase]
33     * Voucher Payment [Customer & Supplier]
34     * Cheque Register
35     """,
36     "category": 'Accounting & Finance',
37     "sequence": 4,
38     "website" : "http://openerp.com",
39     "images" : ["images/customer_payment.jpeg","images/journal_voucher.jpeg","images/sales_receipt.jpeg","images/supplier_voucher.jpeg"],
40     "depends" : ["account"],
41     "init_xml" : [
42         'account_voucher_data.xml',
43     ],
44
45     "demo_xml" : [],
46
47     "update_xml" : [
48         "security/ir.model.access.csv",
49         "account_voucher_sequence.xml",
50         "account_voucher_workflow.xml",
51         "account_voucher_report.xml",
52         "wizard/account_voucher_unreconcile_view.xml",
53         "wizard/account_statement_from_invoice_view.xml",
54         "account_voucher_view.xml",
55         "voucher_payment_receipt_view.xml",
56         "voucher_sales_purchase_view.xml",
57         "account_voucher_wizard.xml",
58         "account_voucher_pay_invoice.xml",
59         "report/account_voucher_sales_receipt_view.xml",
60         "security/account_voucher_security.xml"
61     ],
62     "test" : [
63         "test/account_voucher.yml",
64         "test/sales_receipt.yml",
65         "test/sales_payment.yml",
66         "test/account_voucher_report.yml",
67         "test/case1_usd_usd.yml",
68         "test/case2_usd_eur_debtor_in_eur.yml",
69         "test/case2_usd_eur_debtor_in_usd.yml",
70         "test/case3_eur_eur.yml",
71         "test/case4_cad_chf.yml",
72         "test/case_eur_usd.yml",
73     ],
74     'certificate': '0037580727101',
75     "auto_install": False,
76     "application": True,
77     "installable": True,
78 }
79
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: