[FIX] Account : Chart of taxes should open move lines respecting the parent+children...
[odoo/odoo.git] / addons / sale / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Sales Management',
26     'version': '1.0',
27     'category': 'Generic Modules/Sales & Purchases',
28     'description': """
29     The base module to manage quotations and sales orders.
30
31     * Workflow with validation steps:
32         - Quotation -> Sale order -> Invoice
33     * Invoicing methods:
34         - Invoice on order (before or after shipping)
35         - Invoice on delivery
36         - Invoice on timesheets
37         - Advance invoice
38     * Partners preferences (shipping, invoicing, incoterm, ...)
39     * Products stocks and prices
40     * Delivery methods:
41         - all at once, multi-parcel
42         - delivery costs
43     """,
44     'author': 'Tiny',
45     'website': 'http://www.openerp.com',
46     'depends': ['product', 'stock', 'mrp', 'process'],
47     'init_xml': [],
48     'update_xml': [
49         'security/sale_security.xml',
50         'security/ir.model.access.csv',
51         'sale_workflow.xml',
52         'sale_sequence.xml',
53         'sale_data.xml',
54         'sale_wizard.xml',
55         'sale_view.xml',
56         'sale_report.xml',
57         'stock_view.xml',
58         'process/sale_process.xml',
59         'mrp_view.xml'
60     ],
61     'demo_xml': [
62         'sale_demo.xml',
63         'test/sale_test.xml',
64         'test/invoice_packing.xml',
65         'test/bug461801.xml',
66         'test/bug399817.xml',
67     ],
68     'installable': True,
69     'active': False,
70     'certificate': '0058103601429',
71 }
72 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: