~anton-chepurov/aeroo/7.0

« back to all changes in this revision

Viewing changes to report_aeroo_direct_print/__openerp__.py

  • Committer: root
  • Date: 2013-05-16 15:53:25 UTC
  • Revision ID: root@erp.kndati.lv-20130516155325-x7v319i9a6avw58g
1.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2008-2013 Alistek Ltd (http://www.alistek.com) All Rights Reserved.
 
5
#                    General contacts <info@alistek.com>
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 3
 
17
# of the License, or (at your option) any later version.
 
18
#
 
19
# This module is GPLv3 or newer and incompatible
 
20
# with OpenERP SA "AGPL + Private Use License"!
 
21
#
 
22
# This program is distributed in the hope that it will be useful,
 
23
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
24
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
25
# GNU General Public License for more details.
 
26
#
 
27
# You should have received a copy of the GNU General Public License
 
28
# along with this program; if not, write to the Free Software
 
29
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
30
#
 
31
##############################################################################
 
32
 
 
33
 
34
    'name': 'Aeroo Reports - Direct printing to printer',
 
35
    'summary': 'Print Aeroo Reports directly to a printer',
 
36
    'version': '1.2',
 
37
    'category': 'Generic Modules/Aeroo Reporting',
 
38
    'description': """Direct Print module for Aeroo Reports enables printing a report directly to
 
39
server configured printer without opening the report on the user's screen.
 
40
 
 
41
Module supports network printing.
 
42
 
 
43
Common Applications:
 
44
    POS receipts;
 
45
    Shipping/mailing labels;
 
46
    Barcode labels;
 
47
    Admission tickets;
 
48
    Shipment documents;
 
49
    Pick-lists;
 
50
    Invoices;
 
51
 
 
52
Features:
 
53
    Set default general purpose and label printers for a user;
 
54
    Directly print the report to the printer from UI button or code;
 
55
    Configure a "pseudo" printer for a report to print to user's desktop;
 
56
    Use system pre-configured (CUPS) printers;
 
57
    Printer discovery wizard;
 
58
    UI user preferences integration;
 
59
    Per group user rights on printers;
 
60
    
 
61
System Dependencies:
 
62
Direct print module requires Aeroo Reports core module and pycups Python library
 
63
For more reference visit - https://pypi.python.org/pypi/pycups""",
 
64
    'author': 'Alistek Ltd',
 
65
    'website': 'http://www.alistek.com',
 
66
    'depends': ['base','report_aeroo'],
 
67
    "init_xml" : [],
 
68
    'update_xml': ["data/report_aeroo_direct_data.xml",
 
69
                   "report_aeroo_direct_print_view.xml",
 
70
                   "installer.xml",
 
71
                   "security/security_rules.xml",
 
72
                   "security/ir.model.access.csv"],
 
73
    "license" : "GPL-3 or any later version",
 
74
    'installable': True,
 
75
    'active': False,
 
76
}