-
Notifications
You must be signed in to change notification settings - Fork 3
/
trazarenpre.py
298 lines (257 loc) · 11.5 KB
/
trazarenpre.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
#!/usr/bin/python
# -*- coding: latin-1 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU 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 General Public License
# for more details.
"Módulo para Trazabilidad de Precursores Químicos RENPRE Resolución 900/12"
# Información adicional y documentación:
# http://www.sistemasagiles.com.ar/trac/wiki/TrazabilidadPrecursoresQuimicos
__author__ = "Mariano Reingart <[email protected]>"
__copyright__ = "Copyright (C) 2011 Mariano Reingart"
__license__ = "GPL 3.0+"
__version__ = "1.11a"
#http://renpre.servicios.pami.org.ar/portal_traza_renpre/paso5.html
import os
import socket
import sys
import datetime, time
import pysimplesoap.client
from pysimplesoap.client import SoapFault
from utils import BaseWS, inicializar_y_capturar_excepciones, get_install_dir
HOMO = False
TYPELIB = False
WSDL = "https://servicios.pami.org.ar/trazamed.WebServiceSDRN?wsdl"
LOCATION = "https://servicios.pami.org.ar/trazamed.WebServiceSDRN?wsdl"
##WSDL = "https://trazabilidad.pami.org.ar:59050/trazamed.WebServiceSDRN?wsdl" # prod.
class TrazaRenpre(BaseWS):
"Interfaz para el WebService de Trazabilidad de Precursores Quimicos SEDRONAR SNT"
_public_methods_ = ['SaveTransacciones',
'SendCancelacTransacc',
'Conectar', 'LeerError', 'LeerTransaccion',
'SetUsername',
'SetParametro', 'GetParametro',
'GetCodigoTransaccion', 'GetResultado', 'LoadTestXML']
_public_attrs_ = [
'Username', 'Password',
'CodigoTransaccion', 'Errores', 'Resultado',
'XmlRequest', 'XmlResponse',
'Version', 'InstallDir',
'Traceback', 'Excepcion', 'LanzarExcepciones',
]
_reg_progid_ = "TrazaRenpre"
_reg_clsid_ = "{461298DB-0531-47CA-B3D9-B36FE6967209}"
# Variables globales para BaseWS:
HOMO = HOMO
WSDL = WSDL
Version = "%s %s %s" % (__version__, HOMO and 'Homologación' or '',
pysimplesoap.client.__version__)
def __init__(self, reintentos=1):
self.Username = self.Password = None
BaseWS.__init__(self, reintentos)
def inicializar(self):
BaseWS.inicializar(self)
self.CodigoTransaccion = self.Errores = self.Resultado = None
def __analizar_errores(self, ret):
"Comprueba y extrae errores si existen en la respuesta XML"
self.Errores = ["%s: %s" % (it.get('_c_error', ""), it.get('_d_error', ""))
for it in ret.get('errores', [])]
self.Resultado = ret.get('resultado')
def Conectar(self, cache=None, wsdl=None, proxy="", wrapper=None, cacert=None, timeout=None):
# Conecto usando el método estandard:
ok = BaseWS.Conectar(self, cache, wsdl, proxy, wrapper, cacert, timeout,
soap_server="jetty")
if ok:
# si el archivo es local, asumo que ya esta corregido:
if not self.wsdl.startswith("file"):
# corrijo ubicación del servidor (localhost:9050 en el WSDL)
location = self.wsdl[:-5]
if 'IWebServiceSDRNService' in self.client.services:
ws = self.client.services['IWebServiceSDRNService']
else:
ws = self.client.services['IWebServiceSDRN']
ws['ports']['IWebServiceSDRNPort']['location'] = location
# Establecer credenciales de seguridad:
self.client['wsse:Security'] = {
'wsse:UsernameToken': {
'wsse:Username': self.Username,
'wsse:Password': self.Password,
}
}
return ok
@inicializar_y_capturar_excepciones
def SaveTransacciones(self, usuario, password,
gln_origen=None, gln_destino=None, f_operacion=None,
id_evento=None, cod_producto=None, n_cantidad=None,
n_documento_operacion=None, n_remito=None,
id_tipo_transporte=None,
id_paso_frontera_ingreso=None,
id_paso_frontera_egreso=None,
id_tipo_documento_operacion=None,
d_dominio_tractor=None,
d_dominio_semi=None,
n_serie=None, n_lote=None, doc_despacho_plaza=None,
djai=None, n_cert_impo_expo=None,
id_tipo_documento=None, n_documento=None,
m_calidad_analitica=None, m_entrega_parcial=None,
doc_permiso_embarque=None, gln_transportista=None,
operacion_excento_djai=None, control_duplicidad=None,
):
"Permite informe por parte de un agente de una o varias transacciones"
# creo los parámetros para esta llamada
params = { 'gln_origen': gln_origen, 'gln_destino': gln_destino,
'f_operacion': f_operacion, 'id_evento': id_evento,
'cod_producto': cod_producto, 'n_cantidad': n_cantidad,
'n_documento_operacion': n_documento_operacion,
'n_remito': n_remito,
'id_tipo_transporte': id_tipo_transporte,
'id_paso_frontera_ingreso': id_paso_frontera_ingreso,
'id_paso_frontera_egreso': id_paso_frontera_egreso,
'id_tipo_documento_operacion': id_tipo_documento_operacion,
'd_dominio_tractor': d_dominio_tractor,
'd_dominio_semi': d_dominio_semi,
'n_serie': n_serie, 'n_lote': n_lote,
'doc_despacho_plaza': doc_despacho_plaza,
'djai': djai, 'n_cert_impo_expo': n_cert_impo_expo,
'id_tipo_documento': id_tipo_documento,
'n_documento': n_documento,
'm_calidad_analitica': m_calidad_analitica,
'm_entrega_parcial': m_entrega_parcial,
'doc_permiso_embarque': doc_permiso_embarque,
'gln_transportista': gln_transportista,
'operacion_excento_djai': operacion_excento_djai,
'control_duplicidad': control_duplicidad,
}
# actualizo con parámetros generales:
params.update(self.params_in)
res = self.client.saveTransacciones(
arg0=params,
arg1=usuario,
arg2=password,
)
ret = res['return']
self.CodigoTransaccion = ret.get('codigoTransaccion')
self.__analizar_errores(ret)
return True
@inicializar_y_capturar_excepciones
def SendCancelacTransacc(self, usuario, password, codigo_transaccion):
" Realiza la cancelación de una transacción"
res = self.client.sendCancelaTransac(
arg0=codigo_transaccion,
arg1=usuario,
arg2=password,
)
ret = res['return']
self.CodigoTransaccion = ret['codigoTransaccion']
self.__analizar_errores(ret)
return True
@inicializar_y_capturar_excepciones
def SendConfirmaTransacc(self, usuario, password, p_ids_transac, f_operacion):
"Confirma la recepción de un medicamento"
res = self.client.sendConfirmaTransacc(
arg0=usuario,
arg1=password,
arg2={'p_ids_transac': p_ids_transac, 'f_operacion': f_operacion},
)
ret = res['return']
self.CodigoTransaccion = ret.get('id_transac_asociada')
self.__analizar_errores(ret)
return True
@inicializar_y_capturar_excepciones
def SendAlertaTransacc(self, usuario, password, p_ids_transac_ws):
"Alerta un medicamento, acción contraria a confirmar la transacción."
res = self.client.sendAlertaTransacc(
arg0=usuario,
arg1=password,
arg2=p_ids_transac_ws,
)
ret = res['return']
self.CodigoTransaccion = ret.get('id_transac_asociada')
self.__analizar_errores(ret)
return True
def SetUsername(self, username):
"Establezco el nombre de usuario"
self.Username = username
def SetPassword(self, password):
"Establezco la contraseña"
self.Password = password
def GetCodigoTransaccion(self):
"Devuelvo el código de transacción"
return self.CodigoTransaccion
def GetResultado(self):
"Devuelvo el resultado"
return self.Resultado
def main():
"Función principal de pruebas (transaccionar!)"
import os, time, sys
global WSDL, LOCATION
DEBUG = '--debug' in sys.argv
ws = TrazaRenpre()
ws.Username = 'testwservice'
ws.Password = 'testwservicepsw'
if '--prod' in sys.argv and not HOMO:
WSDL = "https://trazabilidad.pami.org.ar:59050/trazamed.WebServiceSDRN?wsdl"
print "Usando WSDL:", WSDL
sys.argv.pop(0)
ws.Conectar("", WSDL)
if ws.Excepcion:
print ws.Excepcion
print ws.Traceback
sys.exit(-1)
#print ws.client.services
#op = ws.client.get_operation("sendMedicamentos")
#import pdb;pdb.set_trace()
if '--test' in sys.argv:
ws.SaveTransacciones(
usuario='pruebasws', password='pruebasws',
gln_origen=8888888888888,
gln_destino=8888888888888,
f_operacion="20/05/2014",
id_evento=44,
cod_producto=88800000000035, # acido sulfúrico
n_cantidad=1,
n_documento_operacion=1,
#m_entrega_parcial="",
n_remito=123,
n_serie=112,
)
print "Resultado", ws.Resultado
print "CodigoTransaccion", ws.CodigoTransaccion
print "Excepciones", ws.Excepcion
print "Erroes", ws.Errores
elif '--cancela' in sys.argv:
ws.SendCancelacTransacc(*sys.argv[sys.argv.index("--cancela")+1:])
else:
ws.SaveTransacciones(*sys.argv[1:])
print "|Resultado %5s|CodigoTransaccion %10s|Errores|%s|" % (
ws.Resultado,
ws.CodigoTransaccion,
'|'.join(ws.Errores),
)
if ws.Excepcion:
print ws.Traceback
# busco el directorio de instalación (global para que no cambie si usan otra dll)
INSTALL_DIR = TrazaRenpre.InstallDir = get_install_dir()
if __name__ == '__main__':
# ajusto el encoding por defecto (si se redirije la salida)
if sys.stdout.encoding is None:
import codecs, locale
sys.stdout = codecs.getwriter(locale.getpreferredencoding())(sys.stdout,"replace");
sys.stderr = codecs.getwriter(locale.getpreferredencoding())(sys.stderr,"replace");
if '--register' in sys.argv or '--unregister' in sys.argv:
import pythoncom
import win32com.server.register
win32com.server.register.UseCommandLine(TrazaRenpre)
elif "/Automate" in sys.argv:
# MS seems to like /automate to run the class factories.
import win32com.server.localserver
#win32com.server.localserver.main()
# start the server.
win32com.server.localserver.serve([TrazaRenpre._reg_clsid_])
else:
main()