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': 'Sales Management',
26     "sequence": 14,
27     'complexity': "easy",
28     'description': """
29 The base module to manage quotations and sales orders.
30 ======================================================
31
32 Workflow with validation steps:
33 -------------------------------
34     * Quotation -> Sales order -> Invoice
35
36 Invoicing methods:
37 ------------------
38     * Invoice on order (before or after shipping)
39     * Invoice on delivery
40     * Invoice on timesheets
41     * Advance invoice
42
43 Partners preferences:
44 ---------------------
45     * shipping
46     * invoicing
47     * incoterm
48
49 Products stocks and prices
50 --------------------------
51
52 Delivery methods:
53 -----------------
54     * all at once
55     * multi-parcel
56     * delivery costs
57
58 Dashboard for Sales Manager that includes:
59 ------------------------------------------
60     * Quotations
61     * Sales by Month
62     * Graph of Sales by Salesman in last 90 days
63     * Graph of Sales per Customer in last 90 days
64     * Graph of Sales by Product's Category in last 90 days
65     """,
66     'author': 'OpenERP SA',
67     'website': 'http://www.openerp.com',
68     'images': ['images/deliveries_to_invoice.jpeg','images/sale_dashboard.jpeg','images/Sale_order_line_to_invoice.jpeg','images/sale_order.jpeg','images/sales_analysis.jpeg'],
69     'depends': ['stock', 'procurement', 'board'],
70     'init_xml': [],
71     'update_xml': [
72         'wizard/sale_make_invoice_advance.xml',
73         'wizard/sale_line_invoice.xml',
74         'wizard/sale_make_invoice.xml',
75         'security/sale_security.xml',
76         'security/ir.model.access.csv',
77         'company_view.xml',
78         'sale_workflow.xml',
79         'sale_sequence.xml',
80         'sale_report.xml',
81         'sale_data.xml',
82         'sale_view.xml',
83         'report/sale_report_view.xml',
84         'stock_view.xml',
85         'process/sale_process.xml',
86         'board_sale_view.xml',
87         'edi/sale_order_action_data.xml',
88     ],
89     'demo_xml': ['sale_demo.xml'],
90     'test': [
91         'test/sale_order_demo.yml',
92         'test/picking_order_policy.yml',
93         'test/manual_order_policy.yml',
94         'test/postpaid_order_policy.yml',
95         'test/prepaid_order_policy.yml',
96         'test/cancel_order.yml',
97         'test/delete_order.yml',
98         'test/edi_sale_order.yml',
99     ],
100     'installable': True,
101     'auto_install': False,
102     'application': True,
103     'certificate': '0058103601429',
104 }
105 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: