Launchpad automatic translations update.
[odoo/odoo.git] / addons / sale / __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': 'Sales Management',
24     'version': '1.0',
25     'category': 'Generic Modules/Sales & Purchases',
26     'description': """
27     The base module to manage quotations and sales orders.
28
29     * Workflow with validation steps:
30         - Quotation -> Sales order -> Invoice
31     * Invoicing methods:
32         - Invoice on order (before or after shipping)
33         - Invoice on delivery
34         - Invoice on timesheets
35         - Advance invoice
36     * Partners preferences (shipping, invoicing, incoterm, ...)
37     * Products stocks and prices
38     * Delivery methods:
39         - all at once, multi-parcel
40         - delivery costs
41     * Dashboard for salesman that includes:
42     * Your open quotations
43     * Top 10 sales of the month
44     * Cases statistics
45     * Graph of sales by product
46     * Graph of cases of the month
47     """,
48     'author': 'OpenERP SA',
49     'website': 'http://www.openerp.com',
50     'depends': ['stock', 'procurement', 'board'],
51     'init_xml': [],
52     'update_xml': [
53         'wizard/sale_make_invoice_advance.xml',
54         'wizard/sale_line_invoice.xml',
55         'wizard/sale_make_invoice.xml',
56         'security/sale_security.xml',
57         'security/ir.model.access.csv',
58         'company_view.xml',
59         'sale_workflow.xml',
60         'sale_sequence.xml',
61         'sale_data.xml',
62         'sale_view.xml',
63         'sale_installer.xml',
64         'report/sale_report_view.xml',
65         'sale_report.xml',
66         'stock_view.xml',
67         'board_sale_view.xml',
68         'process/sale_process.xml',
69     ],
70     'demo_xml': ['sale_demo.xml'],
71     'test': [
72         'test/data_test.yml',
73         'test/manual_order_policy.yml',
74         'test/prepaid_order_policy.yml',
75         'test/picking_order_policy.yml',
76         'test/postpaid_order_policy.yml',
77         'test/advance_invoice.yml',
78         'test/so_make_line_invoice.yml',
79         'test/sale_procurement.yml',
80         'test/invoice_on_ordered_qty.yml',
81         'test/invoice_on_shipped_qty.yml',
82         'test/sale_report.yml',
83     ],
84     'installable': True,
85     'active': False,
86     'certificate': '0058103601429',
87 }
88 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: