~camptocamp/carriers-deliveries/7.0-delivery_carrier_label_dispatch-output-file-yvr

« back to all changes in this revision

Viewing changes to delivery_carrier_label_dispatch/__openerp__.py

  • Committer: Yannick Vaucher
  • Date: 2013-12-06 12:51:58 UTC
  • Revision ID: yannick.vaucher@camptocamp.com-20131206125158-ai0mqzju06bkbjd5
[ADD] module delivery_carrier_label_dispatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Author: Yannick Vaucher
 
5
#    Copyright 2013 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': 'Carrier labels - Picking dispatch (link)',
 
22
 'version': '1.0',
 
23
 'author': 'Camptocamp',
 
24
 'maintainer': 'Camptocamp',
 
25
 'category': 'version',
 
26
 'complexity': 'normal',
 
27
 'depends': ['base_delivery_carrier_label', 'picking_dispatch'],
 
28
 'description': """
 
29
[Link module] Carrier labels - Picking dispatch
 
30
==============================
 
31
 
 
32
This module adds a wizard on picking dispatch to generate related picking
 
33
labels
 
34
 
 
35
Contributors
 
36
------------
 
37
 
 
38
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
 
39
 
 
40
""",
 
41
 'website': 'http://www.camptocamp.com/',
 
42
 'data': [
 
43
     'wizard/generate_labels_view.xml',
 
44
     ],
 
45
 'tests': [],
 
46
 'installable': True,
 
47
 'auto_install': True,
 
48
 'license': 'AGPL-3',
 
49
 'application': False,
 
50
 'external_dependencies': {
 
51
    'python': ['PyPDF2'],
 
52
 }
 
53
 }