Skip to content

Commit

Permalink
ajusto modo homologacion
Browse files Browse the repository at this point in the history
  • Loading branch information
reingart committed Jun 14, 2014
1 parent fec661b commit c8ffe78
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion cot.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

from utils import WebClient

HOMO = True
HOMO = False

##URL = "https://cot.ec.gba.gob.ar/TransporteBienes/SeguridadCliente/presentarRemitos.do"
# Nuevo servidor para el "Remito Electrónico Automático"
Expand Down
4 changes: 2 additions & 2 deletions trazafito.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__author__ = "Mariano Reingart <reingart@gmail.com>"
__copyright__ = "Copyright (C) 2014 Mariano Reingart"
__license__ = "GPL 3.0+"
__version__ = "1.10a"
__version__ = "1.10b"

# http://senasa.servicios.pami.org.ar/

Expand All @@ -38,7 +38,7 @@
dar_nombre_campo_dbf, get_install_dir, BaseWS, \
inicializar_y_capturar_excepciones

HOMO = True
HOMO = False
TYPELIB = False

WSDL = "https://servicios.pami.org.ar/trazaenagr.WebService?wsdl"
Expand Down
2 changes: 1 addition & 1 deletion trazamed.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# importo funciones compartidas:
from utils import leer, escribir, leer_dbf, guardar_dbf, N, A, I, json, dar_nombre_campo_dbf, get_install_dir, BaseWS, inicializar_y_capturar_excepciones

HOMO = True
HOMO = False
TYPELIB = False

WSDL = "https://servicios.pami.org.ar/trazamed.WebService?wsdl"
Expand Down
2 changes: 1 addition & 1 deletion trazarenpre.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from pysimplesoap.client import SoapFault
from utils import BaseWS, inicializar_y_capturar_excepciones, get_install_dir

HOMO = True
HOMO = False
TYPELIB = False

WSDL = "https://servicios.pami.org.ar/trazamed.WebServiceSDRN?wsdl"
Expand Down
2 changes: 1 addition & 1 deletion wsaa.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# Verificación del web server remoto, necesario para verificar canal seguro
CACERT = "conf/afip_ca_info.crt" # WSAA CA Cert (Autoridades de Confiaza)

HOMO = True
HOMO = False
TYPELIB = False
DEFAULT_TTL = 60*60*5 # five hours
DEBUG = False
Expand Down
2 changes: 1 addition & 1 deletion wsbfev1.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import sys
from utils import inicializar_y_capturar_excepciones, BaseWS, get_install_dir

HOMO = True
HOMO = False
LANZAR_EXCEPCIONES = True # valor por defecto: True
WSDL="https://wswhomo.afip.gov.ar/wsbfev1/service.asmx?WSDL"

Expand Down
2 changes: 1 addition & 1 deletion wscdc.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

# Constantes (si se usa el script de linea de comandos)
WSDL = "https://wswhomo.afip.gov.ar/WSCDC/service.asmx?WSDL"
HOMO = True
HOMO = False
CONFIG_FILE = "rece.ini"

# No debería ser necesario modificar nada despues de esta linea
Expand Down
2 changes: 1 addition & 1 deletion wsctgv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
DEBUG = False
XML = False
CONFIG_FILE = "wsctg.ini"
HOMO = True
HOMO = False

# definición del formato del archivo de intercambio:

Expand Down
2 changes: 2 additions & 0 deletions wsfev1.py
Original file line number Diff line number Diff line change
Expand Up @@ -861,6 +861,8 @@ def main():
sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.stdout,"replace");
sys.stderr = codecs.getwriter(locale.getpreferredencoding())(sys.stderr,"replace");

print u'\n'.join(wsfev1.ParamGetTiposDoc())
exit()
print "=== Tipos de Comprobante ==="
print u'\n'.join(wsfev1.ParamGetTiposCbte())
print "=== Tipos de Concepto ==="
Expand Down
2 changes: 1 addition & 1 deletion wsfexv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import sys
from utils import inicializar_y_capturar_excepciones, BaseWS, get_install_dir

HOMO = True
HOMO = False
WSDL="https://wswhomo.afip.gov.ar/wsfexv1/service.asmx?WSDL"


Expand Down

0 comments on commit c8ffe78

Please sign in to comment.