~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to openerp_print/__openerp__.py

  • Committer: Gabriela (Vauxoo)
  • Date: 2012-01-02 16:24:49 UTC
  • Revision ID: gabrielaquilarque97@gmail.com-20120102162449-lhxnrtif2ud36du2

[ADD] Added new module invoice_so.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
2
 
###########################################################################
3
 
#    Module Writen to OpenERP, Open Source Management Solution
4
 
#    Copyright (C) Vauxoo (<http://vauxoo.com>).
5
 
#    All Rights Reserved
6
 
###############Credits######################################################
7
 
#    Coded by: nhomar@vauxoo.com,
8
 
#    Planified by: Nhomar Hernandez
9
 
#    Finance by: Helados Gilda, C.A. http://heladosgilda.com.ve
10
 
#    Audited by: Humberto Arocha humberto@vauxoo.com
11
 
#############################################################################
12
 
#    This program is free software: you can redistribute it and/or modify
13
 
#    it under the terms of the GNU General Public License as published by
14
 
#    the Free Software Foundation, either version 3 of the License, or
15
 
#    (at your option) any later version.
16
 
#
17
 
#    This program is distributed in the hope that it will be useful,
18
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 
#    GNU General Public License for more details.
21
 
#
22
 
#    You should have received a copy of the GNU General Public License
23
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
 
##############################################################################
25
 
{
26
 
    "name" : "Print Models and Reports",
27
 
    "version" : "0.2",
28
 
    "depends" : ["base"],
29
 
    "author" : "Vauxoo",
30
 
    "description" : """
31
 
        Impresion de Reportes
32
 
        Configuraciones Previas:
33
 
        1-  Instalar pycups:    # aptitude install python-cups 
34
 
        2-                      # apt-get install system-config-printer
35
 
        3-  Acceder al archivo de configuracion de cups (/etc/cups/cupsd.conf) y modificar:
36
 
            - En la Seccion: Only listen for connections from the local machine.
37
 
                Listen 631
38
 
                Listen /var/run/cups/cups.sock
39
 
            - En la Seccion: Default authentication type, when authentication is required...
40
 
                DefaultAuthTypeDigest
41
 
                DefaultEncryptionRequired 
42
 
                DefaultEncryption Never
43
 
            - En la Seccion: Restrict access to the server...
44
 
                <Location />
45
 
                  Allow all
46
 
                </Location>          
47
 
            - En la Seccion: Restrict access to the admin pages...
48
 
                <Location /admin>
49
 
                  Allow all
50
 
                </Location>
51
 
            - En la Seccion: Restrict access to configuration files...
52
 
                <Location /admin/conf>
53
 
                  AuthType Default
54
 
                  Require user @SYSTEM
55
 
                  Order allow,deny
56
 
                </Location>
57
 
        4-  Reiniciar cups:    #  /etc/init.d/cups restart
58
 
        5-  Instalar:   # aptitude install lpr #NO INSTALAR (por ahora)
59
 
        6-  Istalar:    # aptitude install cups cups-driver-gutenprint gutenprint-locales foomatic-db foomatic-db-gutenprint foomatic-db-engine foomatic-filters foomatic-db-hpijs cups-bsd foo2zjs
60
 
        7-  PROCESO DE AÑADIR LA IMPRESORA
61
 
            7.1- Acceder a Common UNIX Printing System (asistente de impresoras Web): http://localhost:631/ si es, desde una maquina virtual con: http://192.168.*.* 
62
 
            7.2- Anadir la Impresora que se desea administrar
63
 
    """,
64
 
    "website" : "http://vauxoo.com",
65
 
    "category" : "Generic Modules/MRP/Accounting",
66
 
    "init_xml" : [
67
 
    ],
68
 
    "demo_xml" : [
69
 
    ],
70
 
    "update_xml" : [
71
 
        "security/groups.xml",
72
 
        "security/ir.model.access.csv",
73
 
        "print_model_view.xml",
74
 
        "res_company.xml",
75
 
    ],
76
 
    "active": False,
77
 
    "installable": False,
78
 
}