[IMP] remove useless code
[odoo/odoo.git] / addons / sale_stock / __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 and Warehouse Management',
24     'version': '1.0',
25     'category': 'Hidden',
26     'summary': 'Quotation, Sale Orders, Delivery & Invoicing Control',
27     'description': """
28 Manage sales quotations and orders
29 ==================================
30
31 This module makes the link between the sales and warehouses management applications.
32
33 Preferences
34 -----------
35 * Shipping: Choice of delivery at once or partial delivery
36 * Invoicing: choose how invoices will be paid
37 * Incoterms: International Commercial terms
38
39 You can choose flexible invoicing methods:
40
41 * *On Demand*: Invoices are created manually from Sales Orders when needed
42 * *On Delivery Order*: Invoices are generated from picking (delivery)
43 * *Before Delivery*: A Draft invoice is created and must be paid before delivery
44 """,
45     'author': 'OpenERP SA',
46     'website': 'http://www.openerp.com',
47     'images': ['images/deliveries_to_invoice.jpeg'],
48     'depends': ['sale', 'stock_account'],
49     'data': [
50         'security/sale_stock_security.xml',
51         'security/ir.model.access.csv',
52         'company_view.xml',
53         'sale_stock_view.xml',
54         'sale_stock_workflow.xml',
55         'stock_view.xml',
56         'res_config_view.xml',
57         'report/sale_report_view.xml',
58     ],
59     'demo': ['sale_stock_demo.xml'],
60     'test': [
61         'test/sale_stock_users.yml',
62         'test/cancel_order_sale_stock.yml',
63         'test/picking_order_policy.yml',
64         'test/prepaid_order_policy.yml',
65         'test/sale_order_onchange.yml',
66     ],
67     'installable': True,
68     'auto_install': True,
69 }