forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 15
/
cot.py
310 lines (272 loc) · 11 KB
/
cot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
#!/usr/bin/python
# -*- coding: utf8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation; either version 3, or (at your option) any later
# version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTIBILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
# Based on MultipartPostHandler.py (C) 02/2006 Will Holcomb <[email protected]>
# Ejemplos iniciales gracias a "Matias Gieco [email protected]"
"Módulo para obtener remito electrónico automático (COT)"
from __future__ import print_function
from __future__ import absolute_import
from builtins import str
from builtins import object
__author__ = "Mariano Reingart ([email protected])"
__copyright__ = "Copyright (C) 2010-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
__version__ = "3.03a"
import os, sys, traceback
from pysimplesoap.simplexml import SimpleXMLElement
from pyafipws.utils import WebClient
HOMO = False
CACERT = "conf/arba.crt" # establecimiento de canal seguro (en producción)
##URL = "https://cot.ec.gba.gob.ar/TransporteBienes/SeguridadCliente/presentarRemitos.do"
# Nuevo servidor para el "Remito Electrónico Automático"
URL = "http://cot.test.arba.gov.ar/TransporteBienes/SeguridadCliente/presentarRemitos.do" # testing
# URL = "https://cot.arba.gov.ar/TransporteBienes/SeguridadCliente/presentarRemitos.do" # prod.
class COT(object):
"Interfaz para el servicio de Remito Electronico ARBA"
_public_methods_ = [
"Conectar",
"PresentarRemito",
"LeerErrorValidacion",
"LeerValidacionRemito",
"AnalizarXml",
"ObtenerTagXml",
]
_public_attrs_ = [
"Usuario",
"Password",
"XmlResponse",
"Version",
"Excepcion",
"Traceback",
"InstallDir",
"CuitEmpresa",
"NumeroComprobante",
"CodigoIntegridad",
"NombreArchivo",
"TipoError",
"CodigoError",
"MensajeError",
"NumeroUnico",
"Procesado",
"COT",
]
_reg_progid_ = "COT"
_reg_clsid_ = "{7518B2CF-23E9-4821-BC55-D15966E15620}"
Version = "%s %s" % (__version__, HOMO and "Homologación" or "")
def __init__(self):
self.Usuario = self.Password = None
self.TipoError = self.CodigoError = self.MensajeError = ""
self.LastID = self.LastCMP = self.CAE = self.CAEA = self.Vencimiento = ""
self.InstallDir = INSTALL_DIR
self.client = None
self.xml = None
self.limpiar()
def limpiar(self):
self.remitos = []
self.errores = []
self.XmlResponse = ""
self.Excepcion = self.Traceback = ""
self.TipoError = self.CodigoError = self.MensajeError = ""
self.CuitEmpresa = self.NumeroComprobante = ""
self.NombreArchivo = self.CodigoIntegridad = ""
self.COT = self.NumeroUnico = self.Procesado = ""
def Conectar(self, url=None, proxy="", wrapper=None, cacert=None, trace=False):
if HOMO or not url:
url = URL
self.client = WebClient(location=url, trace=trace, cacert=cacert, proxy=proxy)
def PresentarRemito(self, filename, testing=""):
self.limpiar()
try:
if not os.path.exists(filename):
self.Excepcion = "Archivo no encontrado: %s" % filename
return False
archivo = open(filename, "rb")
if not testing:
response = self.client(
user=self.Usuario, password=self.Password, file=archivo
)
else:
response = open(testing).read()
self.XmlResponse = response
self.xml = SimpleXMLElement(response)
if "tipoError" in self.xml:
self.TipoError = str(self.xml.tipoError)
self.CodigoError = str(self.xml.codigoError)
self.MensajeError = (
str(self.xml.mensajeError)
.decode("latin1")
.encode("ascii", "replace")
)
if "cuitEmpresa" in self.xml:
self.CuitEmpresa = str(self.xml.cuitEmpresa)
self.NumeroComprobante = str(self.xml.numeroComprobante)
self.NombreArchivo = str(self.xml.nombreArchivo)
self.CodigoIntegridad = str(self.xml.codigoIntegridad)
if "validacionesRemitos" in self.xml:
for remito in self.xml.validacionesRemitos.remito:
try:
cot = remito.cot
except AttributeError:
cot = ""
d = {
"NumeroUnico": str(remito.numeroUnico),
"COT": str(cot),
"Procesado": str(remito.procesado),
"Errores": [],
}
if "errores" in remito:
for error in remito.errores.error:
d["Errores"].append(
(
str(error.codigo),
str(error.descripcion)
.decode("latin1")
.encode("ascii", "replace"),
)
)
self.remitos.append(d)
# establecer valores del primer remito (sin eliminarlo)
self.LeerValidacionRemito(pop=False)
return True
except Exception as e:
ex = traceback.format_exception(
sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2]
)
self.Traceback = "".join(ex)
try:
self.Excepcion = traceback.format_exception_only(
sys.exc_info()[0], sys.exc_info()[1]
)[0]
except:
self.Excepcion = u"<no disponible>"
return False
def LeerValidacionRemito(self, pop=True):
"Leeo el próximo remito"
# por compatibilidad hacia atras, la primera vez no remueve de la lista
# (llamado de PresentarRemito con pop=False)
if self.remitos:
remito = self.remitos[0]
if pop:
del self.remitos[0]
self.NumeroUnico = remito["NumeroUnico"]
self.Procesado = remito["Procesado"]
self.COT = remito["COT"]
self.errores = remito["Errores"]
return True
else:
self.NumeroUnico = ""
self.Procesado = ""
self.errores = []
return False
def LeerErrorValidacion(self):
if self.errores:
error = self.errores.pop()
self.TipoError = ""
self.CodigoError = error[0]
self.MensajeError = error[1]
return True
else:
self.TipoError = ""
self.CodigoError = ""
self.MensajeError = ""
return False
def AnalizarXml(self, xml=""):
"Analiza un mensaje XML (por defecto la respuesta)"
try:
if not xml:
xml = self.XmlResponse
self.xml = SimpleXMLElement(xml)
return True
except Exception as e:
self.Excepcion = u"%s" % (e)
return False
def ObtenerTagXml(self, *tags):
"Busca en el Xml analizado y devuelve el tag solicitado"
# convierto el xml a un objeto
try:
if self.xml:
xml = self.xml
# por cada tag, lo busco segun su nombre o posición
for tag in tags:
xml = xml(tag) # atajo a getitem y getattr
# vuelvo a convertir a string el objeto xml encontrado
return str(xml)
except Exception as e:
self.Excepcion = u"%s" % (e)
# busco el directorio de instalación (global para que no cambie si usan otra dll)
if not hasattr(sys, "frozen"):
basepath = __file__
elif sys.frozen == "dll":
import win32api
basepath = win32api.GetModuleFileName(sys.frozendllhandle)
else:
basepath = sys.executable
INSTALL_DIR = os.path.dirname(os.path.abspath(basepath))
def main():
global CACERT, URL, HOMO
if "--register" in sys.argv or "--unregister" in sys.argv:
import win32com.server.register
win32com.server.register.UseCommandLine(COT)
sys.exit(0)
elif len(sys.argv) < 4:
print(
"Se debe especificar el nombre de archivo, usuario y clave como argumentos!"
)
sys.exit(1)
cot = COT()
filename = sys.argv[1] # TB_20111111112_000000_20080124_000001.txt
cot.Usuario = sys.argv[2] # 20267565393
cot.Password = sys.argv[3] # 23456
if "--testing" in sys.argv:
# test_response = "cot_response_multiple_errores.xml"
# test_response = "cot_response_2_errores.xml"
# test_response = "cot_response_3_sinerrores.xml"
test_response = "cot_respuesta_2019.xml"
else:
test_response = ""
if not HOMO:
for i, arg in enumerate(sys.argv):
if arg.startswith("--prod"):
URL = URL.replace(
"http://cot.test.arba.gov.ar", "https://cot.arba.gov.ar"
)
print("Usando URL:", URL)
break
if arg.startswith("https"):
URL = arg
print("Usando URL:", URL)
break
proxy = None if not "--proxy" in sys.argv else "user:pass@host:1234"
cot.Conectar(URL, trace="--trace" in sys.argv, cacert=CACERT, proxy=proxy)
cot.PresentarRemito(filename, testing=test_response)
if cot.Excepcion:
print("Excepcion:", cot.Excepcion)
print("Traceback:", cot.Traceback)
# datos generales:
print("CUIT Empresa:", cot.CuitEmpresa)
print("Numero Comprobante:", cot.NumeroComprobante)
print("Nombre Archivo:", cot.NombreArchivo)
print("Codigo Integridad:", cot.CodigoIntegridad)
print("Error General:", cot.TipoError, "|", cot.CodigoError, "|", cot.MensajeError)
# recorro los remitos devueltos e imprimo sus datos por cada uno:
while cot.LeerValidacionRemito():
print("Numero Unico:", cot.NumeroUnico)
print("Procesado:", cot.Procesado)
print("COT:", cot.COT)
while cot.LeerErrorValidacion():
print("Error Validacion:", "|", cot.CodigoError, "|", cot.MensajeError)
# Ejemplos de uso ObtenerTagXml
if False:
print("cuit", cot.ObtenerTagXml("cuitEmpresa"))
print("p0", cot.ObtenerTagXml("validacionesRemitos", "remito", 0, "procesado"))
print("p1", cot.ObtenerTagXml("validacionesRemitos", "remito", 1, "procesado"))
if __name__ == "__main__":
main()