[MERGE] EDI branch of hmo/odo
[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     'complexity': "easy",
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'],
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_data.xml',
80         'sale_view.xml',
81         'report/sale_report_view.xml',
82         'sale_report.xml',
83         'stock_view.xml',
84         'process/sale_process.xml',
85         'board_sale_view.xml',
86         'edi/sale_order_action_data.xml',
87     ],
88     'demo_xml': ['sale_demo.xml'],
89     'test': [
90         'test/edi_sale_order.yml',
91         'test/data_test.yml',
92         'test/manual_order_policy.yml',
93         'test/prepaid_order_policy.yml',
94         'test/picking_order_policy.yml',
95         'test/postpaid_order_policy.yml',
96         'test/advance_invoice.yml',
97         'test/so_make_line_invoice.yml',
98         'test/sale_procurement.yml',
99         'test/invoice_on_ordered_qty.yml',
100         'test/invoice_on_shipped_qty.yml',
101         'test/sale_report.yml',
102     ],
103     'installable': True,
104     'active': False,
105     'certificate': '0058103601429',
106 }
107 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: