~stock-logistic-core-editors/carriers-deliveries/github-7.0

« back to all changes in this revision

Viewing changes to base_delivery_carrier_label/__openerp__.py

  • Committer: Joel Grand-Guillaume
  • Author(s): Yannick Vaucher
  • Date: 2014-01-17 15:32:57 UTC
  • mfrom: (7.1.22)
  • Revision ID: git-v1:0748467ab0e1873d434e8b30dc0e871af2d4e659
[MRG][MIGR] Port of delivery_base and deliver_shipping_label removing direct print logic

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': 'Base module for carrier labels',
 
22
 'version': '1.0',
 
23
 'author': 'Camptocamp,Akretion',
 
24
 'maintainer': 'Camptocamp',
 
25
 'category': 'version',
 
26
 'complexity': 'normal',
 
27
 'depends': ['stock', 'delivery'],
 
28
 'description': """
 
29
Base module for carrier labels
 
30
==============================
 
31
 
 
32
This module adds a button on delivery orders to generate a label as an
 
33
attachement.
 
34
 
 
35
.. tip::
 
36
   It doesn't implement a label. To add a default label, you can install
 
37
   the module `delivery_carrier_label_default_webkit`
 
38
 
 
39
It can be used to print specific labels per carrier.
 
40
 
 
41
.. note::
 
42
   Inspired by Akretion module delivery_base and delivery_shipping_label
 
43
 
 
44
Contributors
 
45
------------
 
46
 
 
47
* David BEAL <david.beal@akretion.com>
 
48
* Sébastien BEAU <sebastien.beau@akretion.com>
 
49
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
 
50
 
 
51
 """,
 
52
 'website': 'http://www.camptocamp.com/',
 
53
 'data': ['delivery_view.xml',
 
54
          'stock_view.xml',
 
55
          'security/ir.model.access.csv',
 
56
          ],
 
57
 'tests': [],
 
58
 'installable': True,
 
59
 'auto_install': False,
 
60
 'license': 'AGPL-3',
 
61
 'application': True,
 
62
}