Skip to content

Commit

Permalink
ajuste a homologación
Browse files Browse the repository at this point in the history
  • Loading branch information
reingart committed Mar 10, 2013
1 parent 442a031 commit 4f131fa
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion cot.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import os, stat, traceback
from cStringIO import StringIO

HOMO = False
HOMO = True

##URL = "https://cot.ec.gba.gob.ar/TransporteBienes/SeguridadCliente/presentarRemitos.do"
# Nuevo servidor para el "Remito Electrónico Automático"
Expand Down
5 changes: 2 additions & 3 deletions php.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@

import datetime, sys, time
import xml.dom.minidom
import httplib2
from simplexml import SimpleXMLElement
from soap import SoapFault, SoapClient, parse_proxy
import httplib2
from soap import SoapFault, SoapClient, parse_proxy, SimpleXMLElement

def date(fmt=None,timestamp=None):
"Manejo de fechas (simil PHP)"
Expand Down
4 changes: 2 additions & 2 deletions pyafipws.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
__author__ = "Mariano Reingart ([email protected])"
__copyright__ = "Copyright (C) 2008 Mariano Reingart"
__license__ = "GPL 3.0"
__version__ = "1.28b"
__version__ = "1.29b"

import sys
import wsfe, wsbfe, wsfex, wsctg, wdigdepfiel
Expand All @@ -26,7 +26,7 @@
import socks
import pythoncom

HOMO = False
HOMO = True

debugging = 1
if debugging:
Expand Down
2 changes: 1 addition & 1 deletion pyfepdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__version__ = "1.07b"

DEBUG = False
HOMO = False
HOMO = True
CONFIG_FILE = "rece.ini"

LICENCIA = u"""
Expand Down
2 changes: 1 addition & 1 deletion wsaa.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# Verificación del web server remoto
CACERT = "geotrust.crt" # WSAA CA Cert

HOMO = False
HOMO = True
TYPELIB = False

# No debería ser necesario modificar nada despues de esta linea
Expand Down
2 changes: 1 addition & 1 deletion wscoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from pysimplesoap.simplexml import SimpleXMLElement
from cStringIO import StringIO

HOMO = False
HOMO = True

if HOMO:
WSDL = "https://fwshomo.afip.gov.ar/wscoc/COCService"
Expand Down
2 changes: 1 addition & 1 deletion wsctg11.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
DEBUG = False
XML = False
CONFIG_FILE = "wsctg.ini"
HOMO = False
HOMO = True

def inicializar_y_capturar_excepciones(func):
"Decorador para inicializar y capturar errores"
Expand Down
2 changes: 1 addition & 1 deletion wsfev1.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from cStringIO import StringIO
from pysimplesoap.client import SimpleXMLElement, SoapClient, SoapFault, parse_proxy, set_http_wrapper

HOMO = False # solo homologación
HOMO = True # solo homologación
TYPELIB = False # usar librería de tipos (TLB)
LANZAR_EXCEPCIONES = False # valor por defecto: True

Expand Down
2 changes: 1 addition & 1 deletion wsfexv1.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from pysimplesoap.client import SimpleXMLElement, SoapClient, SoapFault, parse_proxy, set_http_wrapper
from wsfev1 import inicializar_y_capturar_excepciones

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

Expand Down
2 changes: 1 addition & 1 deletion wsmtx.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from pysimplesoap.client import SimpleXMLElement, SoapClient, SoapFault, parse_proxy, set_http_wrapper
from cStringIO import StringIO

HOMO = False
HOMO = True

WSDL="https://fwshomo.afip.gov.ar/wsmtxca/services/MTXCAService?wsdl"

Expand Down

0 comments on commit 4f131fa

Please sign in to comment.