~savoirfairelinux-openerp/purchase-wkfl/pallet-delivery-optimized

1 by Yannick Vaucher
[MRG] from 6.1
1
# -*- coding: utf-8 -*-
2
##############################################################################
3
#
4
#    Author:  Alexandre Fayolle
5
#    Copyright 2012 Camptocamp SA
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
{'name' : 'Purchase Group Orders by Shop and Carrier',
8 by Alexandre Fayolle @ camptocamp
[IMP] purchase_group_order: make the origin fields longer
22
 'version' : '0.4',
1 by Yannick Vaucher
[MRG] from 6.1
23
 'author' : 'Camptocamp',
24
 'maintainer': 'Camptocamp',
25
 'category': 'Purchase Management',
26
 'complexity': "normal",  # easy, normal, expert
7 by Alexandre Fayolle @ camptocamp
[MRG] from client project
27
 'depends' : ['delivery', 'sale', 'purchase',
1 by Yannick Vaucher
[MRG] from 6.1
28
              ],
29
 'description': """Only merge PO with the same shop and carrier.
30
31
 This eases the warehouse managements as the incoming pickings are grouped
32
 in a more convenient way.
33
 """,
34
 'website': 'http://www.camptocamp.com/',
35
 'init_xml': [],
36
 'update_xml': ['purchase_group_orders_view.xml'],
37
 'demo_xml': [],
38
 'tests': [],
10 by Guewen Baconnier
[MIGR] set installable to False on all the modules, the flag has to be reactivated when the modules are migrated
39
 'installable': False,
1 by Yannick Vaucher
[MRG] from 6.1
40
 'auto_install': False,
41
 'license': 'AGPL-3',
42
 'application': False
43
 }