-
Notifications
You must be signed in to change notification settings - Fork 228
/
iibb.py
331 lines (291 loc) · 11.4 KB
/
iibb.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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#!/usr/bin/python
# -*- coding: utf-8 -*-
# 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.
"Módulo para consultar percepciones / retenciones ARBA IIBB"
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.01b"
import os, sys, tempfile, traceback
try:
from hashlib import md5
except ImportError:
from md5 import md5
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://dfe.test.arba.gov.ar/DomicilioElectronico/SeguridadCliente/dfeServicioConsulta.do" # testing
##URL = "https://dfe.arba.gov.ar/DomicilioElectronico/SeguridadCliente/dfeServicioConsulta.do" # produccion
XML_ENTRADA_BASE = """<?xml version = "1.0" encoding = "ISO-8859-1"?>
<CONSULTA-ALICUOTA>
<cantidadContribuyentes>1</cantidadContribuyentes>
<contribuyentes class="list">
<contribuyente>
</contribuyente>
</contribuyentes>
</CONSULTA-ALICUOTA>
"""
class IIBB(object):
"Interfaz para el servicio de IIBB ARBA"
_public_methods_ = [
"Conectar",
"ConsultarContribuyentes",
"LeerContribuyente",
"LeerErrorValidacion",
"AnalizarXml",
"ObtenerTagXml",
]
_public_attrs_ = [
"Usuario",
"Password",
"XmlResponse",
"Version",
"Excepcion",
"Traceback",
"InstallDir",
"NumeroComprobante",
"CantidadContribuyentes",
"CodigoHash",
"CuitContribuyente",
"AlicuotaPercepcion",
"AlicuotaRetencion",
"GrupoPercepcion",
"GrupoRetencion",
"TipoError",
"CodigoError",
"MensajeError",
]
_reg_progid_ = "IIBB"
_reg_clsid_ = "{2C7E29D2-0C99-49D8-B04B-A16B807BB123}"
Version = "%s %s" % (__version__, HOMO and "Homologación" or "")
def __init__(self):
self.Usuario = self.Password = None
self.TipoError = self.CodigoError = self.MensajeError = ""
self.InstallDir = INSTALL_DIR
self.client = None
self.xml = None
self.limpiar()
def limpiar(self):
self.NumeroComprobante = self.CodigoHash = ""
self.CantidadContribuyentes = 0
self.CuitContribuyente = ""
self.AlicuotaPercepcion = 0
self.AlicuotaRetencion = 0
self.GrupoPercepcion = 0
self.GrupoRetencion = 0
self.contribuyentes = []
self.errores = []
self.XmlResponse = ""
self.Excepcion = self.Traceback = ""
self.TipoError = self.CodigoError = self.MensajeError = ""
def Conectar(
self, url=None, proxy="", wrapper=None, cacert=None, trace=False, testing=""
):
if HOMO or not url:
url = URL
self.client = WebClient(location=url, trace=trace, cacert=cacert)
self.testing = testing
def ConsultarContribuyentes(self, fecha_desde, fecha_hasta, cuit_contribuyente):
"Realiza la consulta remota a ARBA, estableciendo los resultados"
self.limpiar()
try:
self.xml = SimpleXMLElement(XML_ENTRADA_BASE)
self.xml.fechaDesde = fecha_desde
self.xml.fechaHasta = fecha_hasta
self.xml.contribuyentes.contribuyente.cuitContribuyente = cuit_contribuyente
xml = self.xml.as_xml()
self.CodigoHash = md5(xml).hexdigest()
nombre = "DFEServicioConsulta_%s.xml" % self.CodigoHash
# guardo el xml en el archivo a enviar y luego lo re-abro:
with open(os.path.join(tempfile.gettempdir(), nombre), "wb") as archivo:
archivo.write(xml)
if not self.testing:
with open(os.path.join(tempfile.gettempdir(), nombre), "r") as archivo:
response = self.client(
user=self.Usuario, password=self.Password, file=archivo)
else:
with open(self.testing) as archivo:
response = archivo.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)
)
if "numeroComprobante" in self.xml:
self.NumeroComprobante = str(self.xml.numeroComprobante)
self.CantidadContribuyentes = int(self.xml.cantidadContribuyentes)
if "contribuyentes" in self.xml:
for contrib in self.xml.contribuyente:
c = {
"CuitContribuytente": str(contrib.cuitContribuyente),
"AlicuotaPercepcion": str(contrib.alicuotaPercepcion),
"AlicuotaRetencion": str(contrib.alicuotaRetencion),
"GrupoPercepcion": str(contrib.grupoPercepcion),
"GrupoRetencion": str(contrib.grupoRetencion),
"Errores": [],
}
self.contribuyentes.append(c)
# establecer valores del primer contrib (sin eliminarlo)
self.LeerContribuyente(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 LeerContribuyente(self, pop=True):
"Leeo el próximo contribuyente"
# por compatibilidad hacia atras, la primera vez no remueve de la lista
# (llamado de ConsultarContribuyentes con pop=False)
if self.contribuyentes:
contrib = self.contribuyentes[0]
if pop:
del self.contribuyentes[0]
else:
contrib = {}
self.CuitContribuyente = contrib.get("CuitContribuytente", "")
self.AlicuotaPercepcion = contrib.get("AlicuotaPercepcion", "")
self.AlicuotaRetencion = contrib.get("AlicuotaRetencion", "")
self.GrupoPercepcion = contrib.get("GrupoPercepcion", "")
self.GrupoRetencion = contrib.get("GrupoRetencion", "")
self.errores = contrib.get("Errores", [])
return len(contrib) > 0
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(IIBB)
sys.exit(0)
elif len(sys.argv) < 6:
print(
"Se debe especificar usuario, clave, fecha desde/hasta y cuit como argumentos!"
)
sys.exit(1)
iibb = IIBB()
iibb.Usuario = sys.argv[1] # 20267565393
iibb.Password = sys.argv[2] # 23456
fecha_desde = sys.argv[3] # 20150301
fecha_hasta = sys.argv[4] # 20150331
cuit_contribuyente = sys.argv[5] # 30123456780
if "--testing" in sys.argv:
test_response = "iibb_response.xml"
# test_response = "iibb_response_2_errores.xml"
else:
test_response = ""
if not HOMO:
for i, arg in enumerate(sys.argv):
if arg.startswith("--prod"):
URL = URL.replace(
"https://dfe.test.arba.gov.ar/", "https://dfe.arba.gov.ar/"
)
print("Usando URL:", URL)
break
if arg.startswith("https"):
URL = arg
print("Usando URL:", URL)
break
iibb.Conectar(
URL, trace="--trace" in sys.argv, cacert=CACERT, testing=test_response
)
iibb.ConsultarContribuyentes(fecha_desde, fecha_hasta, cuit_contribuyente)
if iibb.Excepcion:
print("Excepcion:", iibb.Excepcion)
print("Traceback:", iibb.Traceback)
# datos generales:
print("Numero Comprobante:", iibb.NumeroComprobante)
print("Codigo HASH:", iibb.CodigoHash)
print(
"Error General:", iibb.TipoError, "|", iibb.CodigoError, "|", iibb.MensajeError
)
# recorro los contribuyentes devueltos e imprimo sus datos por cada uno:
while iibb.LeerContribuyente():
print("CUIT Contribuytente:", iibb.CuitContribuyente)
print("AlicuotaPercepcion:", iibb.AlicuotaPercepcion)
print("AlicuotaRetencion:", iibb.AlicuotaRetencion)
print("GrupoPercepcion:", iibb.GrupoPercepcion)
print("GrupoRetencion:", iibb.GrupoRetencion)
# Ejemplos de uso ObtenerTagXml
if False:
print("desde", iibb.ObtenerTagXml("fechaDesde"))
print("hasta", iibb.ObtenerTagXml("fechaHasta"))
print(
"cuit",
iibb.ObtenerTagXml(
"contribuyentes", "contribuyente", 0, "cuitContribuyente"
),
)
print(
"alicuota",
iibb.ObtenerTagXml(
"contribuyentes", "contribuyente", 0, "alicuotapercepcion"
),
)
if __name__ == "__main__":
main()