[IMP] Maifest for Github README.md on main apps
[odoo/odoo.git] / addons / stock_dropshipping / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2014 OpenERP S.A. (<http://www.openerp.com>).
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': 'Drop Shipping',
24     'version': '1.0',
25     'category': 'Warehouse Management',
26     'summary': 'Drop Shipping',
27     'description': """
28 Manage drop shipping orders
29 ===========================
30
31 This module adds a pre-configured Drop Shipping picking type
32 as well as a procurement route that allow configuring Drop
33 Shipping products and orders.
34
35 When drop shipping is used the goods are directly transferred
36 from suppliers to customers (direct delivery) without
37 going through the retailer's warehouse. In this case no
38 internal transfer document is needed.
39
40 """,
41     'author': 'OpenERP SA',
42     'website': 'http://www.openerp.com',
43     'images': [],
44     'depends': ['purchase', 'sale_stock'],
45     'data': ['stock_dropshipping.xml'],
46     'test': [
47         'test/cancellation_propagated.yml',
48         'test/crossdock.yml',
49         'test/dropship.yml',
50         'test/procurementexception.yml',
51         'test/lifo_price.yml'
52     ],
53     'installable': True,
54     'auto_install': False,
55 }
56 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: