[IMP]Sale Quotation : view are improved
[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     'description': """
28 The base module to manage quotations and sales orders.
29 ======================================================
30
31 Workflow with validation steps:
32 -------------------------------
33     * Quotation -> Sales order -> Invoice
34
35 Invoicing methods:
36 ------------------
37     * Invoice on order (before or after shipping)
38     * Invoice on delivery
39     * Invoice on timesheets
40     * Advance invoice
41
42 Partners preferences:
43 ---------------------
44     * shipping
45     * invoicing
46     * incoterm
47
48 Products stocks and prices
49 --------------------------
50
51 Delivery methods:
52 -----------------
53     * all at once
54     * multi-parcel
55     * delivery costs
56
57 Dashboard for Sales Manager that includes:
58 ------------------------------------------
59     * Quotations
60     * Sales by Month
61     * Graph of Sales by Salesman in last 90 days
62     * Graph of Sales per Customer in last 90 days
63     * Graph of Sales by Product's Category in last 90 days
64     """,
65     'author': 'OpenERP SA',
66     'website': 'http://www.openerp.com',
67     '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'],
68     'depends': ['stock', 'procurement', 'board', 'account_voucher'],
69     'init_xml': [],
70     'update_xml': [
71         'wizard/sale_make_invoice_advance.xml',
72         'wizard/sale_line_invoice.xml',
73         'wizard/sale_make_invoice.xml',
74         'security/sale_security.xml',
75         'security/ir.model.access.csv',
76         'company_view.xml',
77         'sale_workflow.xml',
78         'sale_sequence.xml',
79         'sale_report.xml',
80         'sale_data.xml',
81         'sale_view.xml',
82         'res_partner_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         'res_config_view.xml',
89     ],
90     'demo_xml': ['sale_demo.xml'],
91     'test': [
92         'test/sale_order_demo.yml',
93         'test/picking_order_policy.yml',
94         'test/manual_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: