~serpent-consulting-services/openerp-usa/fix-shipping_api_ups_cc

« back to all changes in this revision

Viewing changes to shipping_api/report/label_print.py

  • Committer: npgllc
  • Date: 2012-08-02 17:13:27 UTC
  • Revision ID: npgllc-20120802171327-2xgyyjjb5d1kx26y
Removed all the 6.0 compatible modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
import time
23
 
from report import report_sxw
24
 
 
25
 
class report_print_label(report_sxw.rml_parse):
26
 
    def __init__(self, cr, uid, name, context):
27
 
        super(report_print_label, self).__init__(cr, uid, name, context)
28
 
        self.number_lines = 0
29
 
        self.number_add = 0
30
 
        self.localcontext.update({
31
 
            'time': time,
32
 
        })
33
 
 
34
 
report_sxw.report_sxw(
35
 
    'report.ship.label.print',
36
 
    'stock.packages',
37
 
    'addons/shipping_api/report/label_print.rml',
38
 
    parser=report_print_label, header=False
39
 
)
40
 
report_sxw.report_sxw(
41
 
    'report.ship.log.label.print',
42
 
    'shipping.move',
43
 
    'addons/shipping_api/report/label_print.rml',
44
 
    parser=report_print_label, header=False
45
 
)
46
 
report_sxw.report_sxw(
47
 
    'report.quick.ship.label.print',
48
 
    'quick.ship',
49
 
    'addons/shipping_api/report/label_print.rml',
50
 
    parser=report_print_label, header=False
51
 
)
52
 
report_sxw.report_sxw(
53
 
    'report.multiple.label.print',
54
 
    'stock.picking',
55
 
    'addons/shipping_api/report/multiple_label_print.rml',
56
 
    parser=report_print_label, header=False
57
 
)
58
 
 
59
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
 
b'\\ No newline at end of file'