[IMP] Added label for sale order line selection on create invoice wizard
[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     "summary": "Quotations, Sale Orders, Invoicing",
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 Create Invoice:
37 ---------------
38     * Invoice on Demand
39     * Invoice on Delivery Order
40     * Invoice Before Delivery
41
42 Partners preferences:
43 ---------------------
44     * Incoterm
45     * Shipping
46     * Invoicing
47
48 Products stocks and prices:
49 --------------------------
50
51 Delivery method:
52 -----------------
53     * The Poste
54     * Free Delivery Charges
55     * Normal Delivery Charges
56     * Based on the Delivery Order(if not Add to sale order) 
57
58 Dashboard for Sales Manager that includes:
59 ------------------------------------------
60     * My Quotations
61     * Monthly Turnover (Graph)
62     """,
63     'author': 'OpenERP SA',
64     'website': 'http://www.openerp.com',
65     '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'],
66     'depends': ['stock', 'procurement', 'board', 'account_voucher'],
67     'init_xml': [],
68     'update_xml': [
69         'wizard/sale_make_invoice_advance.xml',
70         'wizard/sale_line_invoice.xml',
71         'wizard/sale_make_invoice.xml',
72         'security/sale_security.xml',
73         'security/ir.model.access.csv',
74         'company_view.xml',
75         'sale_workflow.xml',
76         'sale_sequence.xml',
77         'sale_report.xml',
78         'sale_data.xml',
79         'sale_view.xml',
80         'res_partner_view.xml',
81         'report/sale_report_view.xml',
82         'stock_view.xml',
83         'process/sale_process.xml',
84         'board_sale_view.xml',
85         'edi/sale_order_action_data.xml',
86         'res_config_view.xml',
87     ],
88     'demo_xml': ['sale_demo.xml'],
89     'test': [
90         'test/sale_order_demo.yml',
91         'test/picking_order_policy.yml',
92         'test/manual_order_policy.yml',
93         'test/prepaid_order_policy.yml',
94         'test/cancel_order.yml',
95         'test/delete_order.yml',
96         'test/edi_sale_order.yml',
97     ],
98     'installable': True,
99     'auto_install': False,
100     'application': True,
101     'certificate': '0058103601429',
102 }
103 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: