[FIX] mail: model can be None or uninstalled
[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, Sales Orders, Invoicing',
28     'description': """
29 Manage sales quotations and orders
30 ==================================
31
32 This application allows you to manage your sales goals in an effective and efficient manner by keeping track of all sales orders and history.
33
34 It handles the full sales workflow:
35
36 * **Quotation** -> **Sales order** -> **Invoice**
37
38 Preferences (only with Warehouse Management installed)
39 ------------------------------------------------------
40
41 If you also installed the Warehouse Management, you can deal with the following preferences:
42
43 * Shipping: Choice of delivery at once or partial delivery
44 * Invoicing: choose how invoices will be paid
45 * Incoterms: International Commercial terms
46
47 You can choose flexible invoicing methods:
48
49 * *On Demand*: Invoices are created manually from Sales Orders when needed
50 * *On Delivery Order*: Invoices are generated from picking (delivery)
51 * *Before Delivery*: A Draft invoice is created and must be paid before delivery
52
53
54 The Dashboard for the Sales Manager will include
55 ------------------------------------------------
56 * My Quotations
57 * Monthly Turnover (Graph)
58     """,
59     'author': 'OpenERP SA',
60     'website': 'https://www.odoo.com/page/crm',
61     'images': ['images/Sale_order_line_to_invoice.jpeg','images/sale_order.jpeg','images/sales_analysis.jpeg'],
62     'depends': ['sales_team','account_voucher', 'procurement', 'report'],
63     'data': [
64         'wizard/sale_make_invoice_advance.xml',
65         'wizard/sale_line_invoice.xml',
66         'wizard/sale_make_invoice.xml',
67         'security/sale_security.xml',
68         'security/ir.model.access.csv',
69         'sale_workflow.xml',
70         'sale_sequence.xml',
71         'sale_report.xml',
72         'sale_data.xml',
73         'sale_view.xml',
74         'sales_team_view.xml',
75         'res_partner_view.xml',
76         'report/sale_report_view.xml',
77         'report/invoice_report_view.xml',
78         'edi/sale_order_action_data.xml',
79         'res_config_view.xml',
80         'views/report_saleorder.xml',
81     ],
82     'demo': ['sale_demo.xml'],
83     'test': [
84         'test/create_sale_users.yml',
85         'test/sale_order_demo.yml',
86         'test/manual_order_policy.yml',
87         'test/cancel_order.yml',
88         'test/delete_order.yml',
89         'test/edi_sale_order.yml',
90     ],
91     'installable': True,
92     'auto_install': False,
93     'application': True,
94 }
95 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: