-
Notifications
You must be signed in to change notification settings - Fork 228
/
ws_sire.py
307 lines (268 loc) · 9.53 KB
/
ws_sire.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
#!/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.
"""Módulo para emitir un certificado C2005 en AFIP mediante WebService (SOAP),
por parte de los sistemas del agente de retención.
"""
from __future__ import print_function
from __future__ import absolute_import
from future import standard_library
standard_library.install_aliases()
__author__ = "Mariano Reingart <[email protected]>"
__copyright__ = "Copyright (C) 2020-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
__version__ = "3.01b"
import datetime
import decimal
import json
import os
import sys
from pyafipws.utils import (
inicializar_y_capturar_excepciones,
BaseWS,
get_install_dir,
json_serializer,
abrir_conf,
norm,
SoapFault,
SimpleXMLElement,
)
from configparser import SafeConfigParser
HOMO = False
LANZAR_EXCEPCIONES = True
WSDL = "https://ws-aplicativos-reca.homo.afip.gob.ar/sire/ws/v1/c2005/2005?wsdl"
CONFIG_FILE = "rece.ini"
class WSSIREc2005(BaseWS):
"Interfaz para el WebService de SIRE certificado 2005"
_public_methods_ = [
"Emitir",
"AnalizarXml",
"ObtenerTagXml",
"LoadTestXML",
"SetParametros",
"SetTicketAcceso",
"GetParametro",
"Dummy",
"Conectar",
"DebugLog",
"SetTicketAcceso",
]
_public_attrs_ = [
"Token",
"Sign",
"Cuit",
"AppServerStatus",
"DbServerStatus",
"AuthServerStatus",
"CertificadoNro",
"CodigoSeguridad",
"XmlRequest",
"XmlResponse",
"Version",
"InstallDir",
"LanzarExcepciones",
"Excepcion",
"Traceback",
]
_reg_progid_ = "WSSIREc2005"
_reg_clsid_ = "{E941985A-5C1C-4B17-80C1-7FBB7BE7D713}"
# Variables globales para BaseWS:
HOMO = HOMO
WSDL = WSDL
Version = "%s %s" % (__version__, HOMO and "Homologación" or "")
Reprocesar = True # recuperar automaticamente CAE emitidos
LanzarExcepciones = LANZAR_EXCEPCIONES
def inicializar(self):
BaseWS.inicializar(self)
self.AppServerStatus = self.DbServerStatus = self.AuthServerStatus = None
self.data = {}
self.errores = []
def Conectar(
self,
cache=None,
wsdl=None,
proxy="",
wrapper=None,
cacert=None,
timeout=30,
soap_server="oracle",
):
return BaseWS.Conectar(
self, cache, wsdl, proxy, wrapper, cacert, timeout, soap_server
)
@inicializar_y_capturar_excepciones
def Dummy(self):
"Obtener el estado de los servidores de la AFIP"
result = self.client.dummy()
self.AppServerStatus = result["appserver"]
self.DbServerStatus = result["dbserver"]
self.AuthServerStatus = result["authserver"]
return True
@inicializar_y_capturar_excepciones
def Emitir(
self,
version=100,
impuesto=216,
regimen=831,
fecha_retencion="2019-11-26T11:22:00.969-03:00",
importe_retencion=0,
importe_base_calculo=0,
regimen_exclusion=False,
tipo_comprobante=1,
fecha_comprobante="2019-11-26T11:22:00.969-03:00",
importe_comprobante=0.00,
cuit_retenido="30500010912",
fecha_retencion_certificado_original="2019-11-26T11:22:00.969-03:00",
codigo_trazabilidad=None,
condicion=1, # 1: Inscripto, 2: No inscriptio
imposibilidad_retencion=False,
motivo_no_retencion=None,
porcentaje_exclusion=None,
fecha_publicacion=None,
numero_comprobante="99999-99999999",
coe=None,
coe_original=None,
cae=None,
motivo_emision_nota_credito=None,
numero_certificado_original=None,
importe_certificado_original=None,
motivo_anulacion=None,
):
""" "Método para emitir el certificado 2005.
Recibe los datos del certificado que se desea emitir.
Establece el Nro y Código de seguridad del certificado emitido.
Args:
**kwargs: campos del certificado a emitir
Returns:
bool: True si no hubo error
"""
# llamar al webservice:
res = self.client.emitir(
sign=self.Sign,
token=self.Token,
cuitAgente=self.Cuit,
certificado=dict(
version=version,
codigoTrazabilidad=codigo_trazabilidad,
impuesto=impuesto,
regimen=regimen,
fechaRetencion=fecha_retencion,
condicion=condicion, # opt
imposibilidadRetencion=imposibilidad_retencion, # opt
motivoNoRetencion=motivo_no_retencion, # opt motivoNoRetencion>
importeRetencion=importe_retencion,
importeBaseCalculo=importe_base_calculo,
regimenExclusion=regimen_exclusion,
porcentajeExclusion=porcentaje_exclusion, # opt
fechaPublicacion=fecha_publicacion,
tipoComprobante=tipo_comprobante,
fechaComprobante=fecha_comprobante,
numeroComprobante=numero_comprobante, # opt
coe=coe,
coeOriginal=coe_original, # opt
cae=cae,
importeComprobante=importe_comprobante,
motivoEmisionNotaCredito=motivo_emision_nota_credito, # opt
cuitRetenido=cuit_retenido, # opt
numeroCertificadoOriginal=numero_certificado_original,
fechaRetencionCertificadoOriginal=fecha_retencion_certificado_original,
importeCertificadoOriginal=importe_certificado_original,
motivoAnulacion=motivo_anulacion,
),
)
# obtengo el resultado de AFIP :
self.CertificadoNro = res["certificadoNro"]
self.CodigoSeguridad = res["codigoSeguridad"]
return True
def main():
"Función principal de pruebas (obtener CAE)"
import os, time
global CONFIG_FILE
DEBUG = "--debug" in sys.argv
sire = WSSIREc2005()
SECTION = "WSSIREc2005"
service = "sire-ws"
config = abrir_conf(CONFIG_FILE, DEBUG)
if config.has_section("WSAA"):
crt = config.get("WSAA", "CERT")
key = config.get("WSAA", "PRIVATEKEY")
cuit = config.get(SECTION, "CUIT")
else:
crt, key = "reingart.crt", "reingart.key"
cuit = "20267565393"
url_wsaa = url_ws = None
if config.has_option("WSAA", "URL"):
url_wsaa = config.get("WSAA", "URL")
if config.has_option(SECTION, "URL") and not HOMO:
url_ws = config.get(SECTION, "URL")
# obteniendo el TA para pruebas
from pyafipws.wsaa import WSAA
cache = ""
ta = WSAA().Autenticar(service, crt, key, url_wsaa)
sire.SetTicketAcceso(ta)
sire.Cuit = cuit
sire.Conectar(cache, url_ws, cacert="conf/afip_ca_info.crt")
if "--dummy" in sys.argv:
print(sire.client.help("dummy"))
sire.Dummy()
print("AppServerStatus", sire.AppServerStatus)
print("DbServerStatus", sire.DbServerStatus)
print("AuthServerStatus", sire.AuthServerStatus)
try:
if "--testing" in sys.argv:
sire.LoadTestXML("tests/xml/%s_resp.xml" % service)
print("Consultando AFIP online via webservice...", end=" ")
ok = sire.Emitir(
version=100,
impuesto=216,
regimen=831,
fecha_retencion="2020-07-11T11:16:00.000-03:00",
importe_retencion=2100.00,
importe_base_calculo=20000.00,
regimen_exclusion=False,
tipo_comprobante=1,
fecha_comprobante="2020-07-11T11:15:53.000-03:00",
importe_comprobante=22200.00,
cuit_retenido="30500010912",
fecha_retencion_certificado_original="2020-07-11T11:16:00.000-03:00",
codigo_trazabilidad=None,
condicion=1, # 1: Inscripto, 2: No inscriptio
imposibilidad_retencion=False,
motivo_no_retencion=None,
porcentaje_exclusion=None,
fecha_publicacion=None,
numero_comprobante="00003-00008497",
coe=None,
coe_original=None,
cae=None,
motivo_emision_nota_credito=None,
numero_certificado_original=None,
importe_certificado_original=None,
motivo_anulacion=None,
)
print("CertificadoNro: ", sire.CertificadoNro)
print("CodigoSeguridad: ", sire.CodigoSeguridad)
print("ok" if ok else "error!")
if sire.Excepcion:
print("Excepcion:", sire.Excepcion)
except:
raise
print(sire.XmlRequest)
print(sire.XmlResponse)
# busco el directorio de instalación (global para que no cambie si usan otra dll)
INSTALL_DIR = WSSIREc2005.InstallDir = get_install_dir()
if __name__ == "__main__":
if "--register" in sys.argv or "--unregister" in sys.argv:
import win32com.server.register
win32com.server.register.UseCommandLine(WSSIREc2005)
win32com.server.register.UseCommandLine(WSSIREc2005)
else:
main()