forked from reingart/pyafipws
-
Notifications
You must be signed in to change notification settings - Fork 15
/
wsctg.py
1469 lines (1361 loc) · 53.4 KB
/
wsctg.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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/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 obtener Código de Trazabilidad de Granos
del web service WSCTG versión 4.0 de AFIP (RG3593/14)
"""
from __future__ import print_function
from __future__ import absolute_import
from future import standard_library
standard_library.install_aliases()
from builtins import input
from builtins import str
__author__ = "Mariano Reingart <[email protected]>"
__copyright__ = "Copyright (C) 2010-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
__version__ = "3.14e"
LICENCIA = """
wsctg.py: Interfaz para generar Código de Trazabilidad de Granos AFIP v1.1
Copyright (C) 2014-2015 Mariano Reingart [email protected]
http://www.sistemasagiles.com.ar/trac/wiki/CodigoTrazabilidadGranos
Este progarma es software libre, se entrega ABSOLUTAMENTE SIN GARANTIA
y es bienvenido a redistribuirlo bajo la licencia GPLv3.
Para información adicional sobre garantía, soporte técnico comercial
e incorporación/distribución en programas propietarios ver PyAfipWs:
http://www.sistemasagiles.com.ar/trac/wiki/PyAfipWs
"""
AYUDA = """
Opciones:
--ayuda: este mensaje
--debug: modo depuración (detalla y confirma las operaciones)
--formato: muestra el formato de los archivos de entrada/salida
--prueba: genera y autoriza una CTG de prueba (no usar en producción!)
--xml: almacena los requerimientos y respuestas XML (depuración)
--dummy: consulta estado de servidores
--solicitar: obtiene el CTG (según archivo de entrada en TXT o CSV)
--confirmar: confirma el CTG (según archivo de entrada en TXT o CSV)
--anular: anula el CTG
--rechazar: permite al destino rechazar el CTG
--confirmar_arribo: confirma el arribo de un CTG
--confirmar_definitivo: confirma el arribo definitivo de un CTG
--regresar_a_origen_rechazado: tomar la acción de "Regresar a Origen"
--cambiar_destino_destinatario_rechazado: "Cambio de Destino y Destinatario"
--consultar: consulta las CTG generadas
--consultar_excel: consulta las CTG generadas (genera un excel)
--consultar_detalle: obtiene el detalle de una CTG
--consultar_constancia_pdf: descarga el documento PDF de una CTG
--pendientes: consulta CTGs otorgados, rechazados, confirmados a resolver
--consultar_rechazados: obtener CTGs rechazados para darles un nuevo curso
--consultar_activos_por_patente: consulta de CTGs activos por patente
--provincias: obtiene el listado de provincias
--localidades: obtiene el listado de localidades por provincia
--especies: obtiene el listado de especies
--cosechas: obtiene el listado de cosechas
Ver wsctg.ini para parámetros de configuración (URL, certificados, etc.)"
"""
import os, sys, time, base64
from pyafipws.utils import date
import traceback
from pysimplesoap.client import SoapFault
from pyafipws import utils
# importo funciones compartidas:
from pyafipws.utils import (
leer,
escribir,
leer_dbf,
guardar_dbf,
N,
A,
I,
json,
BaseWS,
inicializar_y_capturar_excepciones,
get_install_dir,
)
# constantes de configuración (homologación):
WSDL = "https://fwshomo.afip.gov.ar/wsctg/services/CTGService_v4.0?wsdl"
DEBUG = False
XML = False
CONFIG_FILE = "wsctg.ini"
HOMO = False
# definición del formato del archivo de intercambio:
ENCABEZADO = [
# datos enviados
("tipo_reg", 1, A), # 0: encabezado
("numero_carta_de_porte", 13, N),
("codigo_especie", 5, N),
("cuit_canjeador", 11, N),
("cuit_destino", 11, N),
("cuit_destinatario", 11, N),
("codigo_localidad_origen", 6, N),
("codigo_localidad_destino", 6, N),
("codigo_cosecha", 4, N),
("peso_neto_carga", 5, N),
("cant_horas", 2, N),
("reservado1", 6, A),
("cuit_transportista", 11, N),
("km_a_recorrer", 4, N), # km_recorridos (en consulta WSCTGv2)
("establecimiento", 6, N), # confirmar arribo
("remitente_comercial_como_canjeador", 1, A), # S/N solicitar CTG inicial (WSCTGv2)
("consumo_propio", 1, A), # S/N confirmar arribo (WSCTGv2)
# datos devueltos
("numero_ctg", 8, N),
("fecha_hora", 19, A),
("vigencia_desde", 10, A),
("vigencia_hasta", 10, A),
("transaccion", 12, N),
("tarifa_referencia", 6, I, 2), # consultar detalle
("estado", 20, A),
("imprime_constancia", 5, A),
("observaciones", 200, A),
("errores", 1000, A),
("controles", 1000, A),
("detalle", 1000, A), # consultar detalle (WSCTGv2)
# nuevos campos agregados:
("cuit_chofer", 11, N),
# nuevos campos agregados WSCTGv3:
("cuit_corredor", 12, N),
("remitente_comercial_como_productor", 1, A),
("patente_vehiculo", 10, A),
# nuevos campos agregados WSCTGv4:
("ctc_codigo", 2, A),
("turno", 50, A),
]
class WSCTG(BaseWS):
"Interfaz para el WebService de Código de Trazabilidad de Granos (Version 3)"
_public_methods_ = [
"Conectar",
"Dummy",
"SetTicketAcceso",
"DebugLog",
"SolicitarCTGInicial",
"SolicitarCTGDatoPendiente",
"ConfirmarArribo",
"ConfirmarDefinitivo",
"AnularCTG",
"RechazarCTG",
"CTGsPendientesResolucion",
"ConsultarCTG",
"LeerDatosCTG",
"ConsultarDetalleCTG",
"ConsultarCTGExcel",
"ConsultarConstanciaCTGPDF",
"ConsultarCTGRechazados",
"RegresarAOrigenCTGRechazado",
"CambiarDestinoDestinatarioCTGRechazado",
"ConsultarCTGActivosPorPatente",
"ConsultarProvincias",
"ConsultarLocalidadesPorProvincia",
"ConsultarEstablecimientos",
"ConsultarCosechas",
"ConsultarEspecies",
"SetParametros",
"SetParametro",
"GetParametro",
"AnalizarXml",
"ObtenerTagXml",
"LoadTestXML",
]
_public_attrs_ = [
"Token",
"Sign",
"Cuit",
"AppServerStatus",
"DbServerStatus",
"AuthServerStatus",
"Excepcion",
"ErrCode",
"ErrMsg",
"LanzarExcepciones",
"Errores",
"XmlRequest",
"XmlResponse",
"Version",
"Traceback",
"NumeroCTG",
"CartaPorte",
"FechaHora",
"CodigoOperacion",
"CodigoTransaccion",
"Observaciones",
"Controles",
"DatosCTG",
"VigenciaHasta",
"VigenciaDesde",
"Estado",
"ImprimeConstancia",
"TarifaReferencia",
"Destino",
"Destinatario",
"Detalle",
"Patente",
"PesoNeto",
"FechaVencimiento",
"UsuarioSolicitante",
"UsuarioReal",
"CtcCodigo",
"Turno",
]
_reg_progid_ = "WSCTG"
_reg_clsid_ = "{4383E947-57C4-47C5-8419-85221580CB48}"
# Variables globales para BaseWS:
HOMO = HOMO
WSDL = WSDL
LanzarExcepciones = False
Version = "%s %s" % (__version__, HOMO and "Homologación" or "")
def Conectar(self, *args, **kwargs):
ret = BaseWS.Conectar(self, *args, **kwargs)
# corregir descripción de servicio WSDL publicado por AFIP
# kmARecorrer -> kmRecorridos (ConsultarDetalleCTG)
port = self.client.services["CTGService_v4.0"]["ports"][
"CTGServiceHttpSoap20Endpoint"
]
msg = port["operations"]["consultarDetalleCTG"]["output"][
"consultarDetalleCTGResponse"
]
msg["response"]["consultarDetalleCTGDatos"]["kmRecorridos"] = int
return ret
def inicializar(self):
self.AppServerStatus = self.DbServerStatus = self.AuthServerStatus = None
self.CodError = self.DescError = ""
self.NumeroCTG = self.CartaPorte = ""
self.CodigoTransaccion = self.Observaciones = ""
self.FechaHora = self.CodigoOperacion = ""
self.VigenciaDesde = self.VigenciaHasta = ""
self.Controles = []
self.DatosCTG = self.TarifaReferencia = None
self.CodigoTransaccion = self.Observaciones = ""
self.Detalle = self.Destino = self.Destinatario = ""
self.Patente = self.PesoNeto = self.FechaVencimiento = ""
self.UsuarioSolicitante = self.UsuarioReal = ""
self.CtcCodigo = self.Turno = ""
def __analizar_errores(self, ret):
"Comprueba y extrae errores si existen en la respuesta XML"
if "arrayErrores" in ret:
errores = ret["arrayErrores"] or []
self.Errores = [err["error"] for err in errores]
self.ErrCode = " ".join(self.Errores)
self.ErrMsg = "\n".join(self.Errores)
def __analizar_controles(self, ret):
"Comprueba y extrae controles si existen en la respuesta XML"
if "arrayControles" in ret:
controles = ret["arrayControles"]
self.Controles = [
"%(tipo)s: %(descripcion)s" % ctl["control"] for ctl in controles
]
@inicializar_y_capturar_excepciones
def Dummy(self):
"Obtener el estado de los servidores de la AFIP"
results = self.client.dummy()["response"]
self.AppServerStatus = str(results["appserver"])
self.DbServerStatus = str(results["dbserver"])
self.AuthServerStatus = str(results["authserver"])
@inicializar_y_capturar_excepciones
def AnularCTG(self, carta_porte, ctg):
"Anular el CTG si se creó el mismo por error"
response = self.client.anularCTG(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosAnularCTG={
"cartaPorte": carta_porte,
"ctg": ctg,
},
)
)["response"]
datos = response.get("datosResponse")
self.__analizar_errores(response)
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["ctg"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoOperacion = str(datos["codigoOperacion"])
@inicializar_y_capturar_excepciones
def RechazarCTG(self, carta_porte, ctg, motivo):
"El Destino puede rechazar el CTG a través de la siguiente operatoria"
response = self.client.rechazarCTG(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosRechazarCTG={
"cartaPorte": carta_porte,
"ctg": ctg,
"motivoRechazo": motivo,
},
)
)["response"]
datos = response.get("datosResponse")
self.__analizar_errores(response)
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["CTG"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoOperacion = str(datos["codigoOperacion"])
@inicializar_y_capturar_excepciones
def SolicitarCTGInicial(
self,
numero_carta_de_porte,
codigo_especie,
cuit_canjeador,
cuit_destino,
cuit_destinatario,
codigo_localidad_origen,
codigo_localidad_destino,
codigo_cosecha,
peso_neto_carga,
cant_horas=None,
patente_vehiculo=None,
cuit_transportista=None,
km_a_recorrer=None,
remitente_comercial_como_canjeador=None,
cuit_corredor=None,
remitente_comercial_como_productor=None,
turno=None,
**kwargs
):
"Solicitar CTG Desde el Inicio"
# ajusto parámetros según validaciones de AFIP:
if not cuit_canjeador or int(cuit_canjeador) == 0:
cuit_canjeador = None # nulo
if not cuit_corredor or int(cuit_corredor) == 0:
cuit_corredor = None # nulo
if not remitente_comercial_como_canjeador:
remitente_comercial_como_canjeador = None
if not remitente_comercial_como_productor:
remitente_comercial_como_productor = None
if turno == "":
turno = None # nulo
ret = self.client.solicitarCTGInicial(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosSolicitarCTGInicial=dict(
cartaPorte=numero_carta_de_porte,
codigoEspecie=codigo_especie,
cuitCanjeador=cuit_canjeador or None,
remitenteComercialComoCanjeador=remitente_comercial_como_canjeador,
cuitDestino=cuit_destino,
cuitDestinatario=cuit_destinatario,
codigoLocalidadOrigen=codigo_localidad_origen,
codigoLocalidadDestino=codigo_localidad_destino,
codigoCosecha=codigo_cosecha,
pesoNeto=peso_neto_carga,
cuitTransportista=cuit_transportista,
cantHoras=cant_horas,
patente=patente_vehiculo,
kmARecorrer=km_a_recorrer,
cuitCorredor=cuit_corredor,
remitenteComercialcomoProductor=remitente_comercial_como_productor,
turno=turno,
),
)
)["response"]
self.__analizar_errores(ret)
self.Observaciones = ret["observacion"]
datos = ret.get("datosSolicitarCTGResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
datos_ctg = datos.get("datosSolicitarCTG")
if datos_ctg:
self.NumeroCTG = str(datos_ctg["ctg"])
self.FechaHora = str(datos_ctg["fechaEmision"])
self.VigenciaDesde = str(datos_ctg["fechaVigenciaDesde"])
self.VigenciaHasta = str(datos_ctg["fechaVigenciaHasta"])
self.TarifaReferencia = str(datos_ctg.get("tarifaReferencia"))
self.__analizar_controles(datos)
return self.NumeroCTG or 0
@inicializar_y_capturar_excepciones
def SolicitarCTGDatoPendiente(
self,
numero_carta_de_porte,
cant_horas,
patente_vehiculo,
cuit_transportista,
patente=None,
turno=None,
):
"Solicitud que permite completar los datos faltantes de un Pre-CTG"
"generado anteriormente a través de la operación solicitarCTGInicial"
ret = self.client.solicitarCTGDatoPendiente(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosSolicitarCTGDatoPendiente=dict(
cartaPorte=numero_carta_de_porte,
cuitTransportista=cuit_transportista,
cantHoras=cant_horas,
patente=patente,
turno=turno,
),
)
)["response"]
self.__analizar_errores(ret)
self.Observaciones = ret["observacion"]
datos = ret.get("datosSolicitarCTGResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
datos_ctg = datos.get("datosSolicitarCTG")
if datos_ctg:
self.NumeroCTG = str(datos_ctg["ctg"])
self.FechaHora = str(datos_ctg["fechaEmision"])
self.VigenciaDesde = str(datos_ctg["fechaVigenciaDesde"])
self.VigenciaHasta = str(datos_ctg["fechaVigenciaHasta"])
self.TarifaReferencia = str(datos_ctg.get("tarifaReferencia"))
self.__analizar_controles(datos)
return self.NumeroCTG
@inicializar_y_capturar_excepciones
def ConfirmarArribo(
self,
numero_carta_de_porte,
numero_ctg,
cuit_transportista,
peso_neto_carga,
consumo_propio,
establecimiento=None,
cuit_chofer=None,
**kwargs
):
"Confirma arribo CTG"
ret = self.client.confirmarArribo(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosConfirmarArribo=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
cuitTransportista=cuit_transportista,
cuitChofer=cuit_chofer,
cantKilosCartaPorte=peso_neto_carga,
consumoPropio=consumo_propio,
establecimiento=establecimiento,
),
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("datosResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["ctg"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoTransaccion = str(datos["codigoOperacion"])
self.Observaciones = ""
return self.CodigoTransaccion
@inicializar_y_capturar_excepciones
def ConfirmarDefinitivo(
self,
numero_carta_de_porte,
numero_ctg,
establecimiento=None,
codigo_cosecha=None,
peso_neto_carga=None,
**kwargs
):
"Confirma arribo definitivo CTG"
ret = self.client.confirmarDefinitivo(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosConfirmarDefinitivo=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
establecimiento=establecimiento,
codigoCosecha=codigo_cosecha,
pesoNeto=peso_neto_carga,
),
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("datosResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["ctg"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoTransaccion = str(datos.get("codigoOperacion", ""))
self.Observaciones = ""
return self.CodigoTransaccion
@inicializar_y_capturar_excepciones
def RegresarAOrigenCTGRechazado(
self, numero_carta_de_porte, numero_ctg, km_a_recorrer=None, **kwargs
):
"Al consultar los CTGs rechazados se puede Regresar a Origen"
ret = self.client.regresarAOrigenCTGRechazado(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosRegresarAOrigenCTGRechazado=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
kmARecorrer=km_a_recorrer,
),
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("datosResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["ctg"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoTransaccion = str(datos["codigoOperacion"])
self.Observaciones = ""
return self.CodigoTransaccion
@inicializar_y_capturar_excepciones
def CambiarDestinoDestinatarioCTGRechazado(
self,
numero_carta_de_porte,
numero_ctg,
codigo_localidad_destino=None,
cuit_destino=None,
cuit_destinatario=None,
km_a_recorrer=None,
turno=None,
**kwargs
):
"Tomar acción de Cambio de Destino y Destinatario para CTG rechazado"
ret = self.client.cambiarDestinoDestinatarioCTGRechazado(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
datosCambiarDestinoDestinatarioCTGRechazado=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
codigoLocalidadDestino=codigo_localidad_destino,
cuitDestino=cuit_destino,
cuitDestinatario=cuit_destinatario,
kmARecorrer=km_a_recorrer,
turno=turno,
),
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("datosResponse")
if datos:
self.CartaPorte = str(datos["cartaPorte"])
self.NumeroCTG = str(datos["ctg"])
self.FechaHora = str(datos["fechaHora"])
self.CodigoTransaccion = str(datos["codigoOperacion"])
self.Observaciones = ""
return self.CodigoTransaccion
@inicializar_y_capturar_excepciones
def ConsultarCTG(
self,
numero_carta_de_porte=None,
numero_ctg=None,
patente=None,
cuit_solicitante=None,
cuit_destino=None,
fecha_emision_desde=None,
fecha_emision_hasta=None,
):
"Operación que realiza consulta de CTGs según el criterio ingresado."
ret = self.client.consultarCTG(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
consultarCTGDatos=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
patente=patente,
cuitSolicitante=cuit_solicitante,
cuitDestino=cuit_destino,
fechaEmisionDesde=fecha_emision_desde,
fechaEmisionHasta=fecha_emision_hasta,
),
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("arrayDatosConsultarCTG")
if datos:
self.DatosCTG = datos
self.LeerDatosCTG(pop=False)
return True
else:
self.DatosCTG = []
return ""
@inicializar_y_capturar_excepciones
def ConsultarCTGRechazados(self):
"Consulta de CTGs Otorgados, CTGs Rechazados y CTGs Confirmados"
ret = self.client.consultarCTGRechazados(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("arrayConsultarCTGRechazados")
if datos:
self.DatosCTG = datos
self.LeerDatosCTG(pop=False)
return True
else:
self.DatosCTG = []
return False
@inicializar_y_capturar_excepciones
def ConsultarCTGActivosPorPatente(self, patente="ZZZ999"):
"Consulta de CTGs activos por patente"
ret = self.client.consultarCTGActivosPorPatente(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
patente=patente,
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("arrayConsultarCTGActivosPorPatenteResponse")
if datos:
self.DatosCTG = datos
self.LeerDatosCTG(pop=False)
return True
else:
self.DatosCTG = []
return False
@inicializar_y_capturar_excepciones
def CTGsPendientesResolucion(self):
"Consulta de CTGs Otorgados, CTGs Rechazados y CTGs Confirmados"
ret = self.client.CTGsPendientesResolucion(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["response"]
self.__analizar_errores(ret)
if ret:
self.DatosCTG = ret
return True
else:
self.DatosCTG = {}
return False
def LeerDatosCTG(self, clave="", pop=True):
"Recorro los datos devueltos y devuelvo el primero si existe"
if clave and self.DatosCTG:
# obtengo la lista por estado pendiente de resolución ("array")
datos = self.DatosCTG[clave]
else:
# uso directamente la lista devuelta por la consulta
datos = self.DatosCTG
if datos:
# extraigo el primer item
if pop:
datos = datos.pop(0)
else:
datos = datos[0]
for det in (
"datosConsultarCTG",
"detalleConsultaCTGRechazado",
"detalleConsultaCTGActivo",
):
if det in datos:
datos_ctg = datos[det]
break
else:
# elemento del array no encontrado:
return ""
self.CartaPorte = str(datos_ctg["cartaPorte"])
self.NumeroCTG = str(datos_ctg["ctg"])
self.Estado = str(datos_ctg.get("estado", ""))
self.ImprimeConstancia = str(datos_ctg.get("imprimeConstancia", ""))
for campo in (
"fechaRechazo",
"fechaEmision",
"fechaSolicitud",
"fechaConfirmacionArribo",
):
if campo in datos_ctg:
self.FechaHora = str(datos_ctg.get(campo))
self.Destino = datos_ctg.get("destino", "")
self.Destinatario = datos_ctg.get("destinatario", "")
self.Observaciones = datos_ctg.get("observaciones", "")
self.Patente = datos_ctg.get("patente")
self.PesoNeto = datos_ctg.get("pesoNeto")
self.FechaVencimiento = datos_ctg.get("fechaVencimiento")
self.UsuarioSolicitante = datos_ctg.get("usuarioSolicitante")
self.UsuarioReal = datos_ctg.get("usuarioReal")
self.CtcCodigo = datos_ctg.get("ctcCodigo")
self.Turno = datos_ctg.get("turno")
return self.NumeroCTG
else:
return ""
@inicializar_y_capturar_excepciones
def ConsultarCTGExcel(
self,
numero_carta_de_porte=None,
numero_ctg=None,
patente=None,
cuit_solicitante=None,
cuit_destino=None,
fecha_emision_desde=None,
fecha_emision_hasta=None,
archivo="planilla.xls",
):
"Operación que realiza consulta de CTGs, graba una planilla xls"
ret = self.client.consultarCTGExcel(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
consultarCTGDatos=dict(
cartaPorte=numero_carta_de_porte,
ctg=numero_ctg,
patente=patente,
cuitSolicitante=cuit_solicitante,
cuitDestino=cuit_destino,
fechaEmisionDesde=fecha_emision_desde,
fechaEmisionHasta=fecha_emision_hasta,
),
)
)["response"]
self.__analizar_errores(ret)
datos = base64.b64decode(ret.get("archivo") or "")
f = open(archivo, "wb")
f.write(datos)
f.close()
return True
@inicializar_y_capturar_excepciones
def ConsultarDetalleCTG(self, numero_ctg=None):
"Operación mostrar este detalle de la solicitud de CTG seleccionada."
ret = self.client.consultarDetalleCTG(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
ctg=numero_ctg,
)
)["response"]
self.__analizar_errores(ret)
datos = ret.get("consultarDetalleCTGDatos")
if datos:
self.NumeroCTG = str(datos["ctg"])
self.CartaPorte = str(datos["cartaPorte"])
self.Estado = str(datos["estado"])
self.FechaHora = str(datos["fechaEmision"])
self.VigenciaDesde = str(datos["fechaVigenciaDesde"])
self.VigenciaHasta = str(datos["fechaVigenciaHasta"])
self.TarifaReferencia = str(datos["tarifaReferencia"])
self.Detalle = str(datos.get("detalle", ""))
return True
@inicializar_y_capturar_excepciones
def ConsultarConstanciaCTGPDF(self, numero_ctg=None, archivo="constancia.pdf"):
"Operación Consultar Constancia de CTG en PDF"
ret = self.client.consultarConstanciaCTGPDF(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
ctg=numero_ctg,
)
)["response"]
self.__analizar_errores(ret)
datos = base64.b64decode(ret.get("archivo", ""))
f = open(archivo, "wb")
f.write(datos)
f.close()
return True
@inicializar_y_capturar_excepciones
def ConsultarProvincias(self, sep="||"):
ret = self.client.consultarProvincias(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["consultarProvinciasResponse"]
self.__analizar_errores(ret)
array = ret.get("arrayProvincias", [])
return [
("%s %%s %s %%s %s" % (sep, sep, sep))
% (it["provincia"]["codigo"], it["provincia"]["descripcion"])
for it in array
]
@inicializar_y_capturar_excepciones
def ConsultarLocalidadesPorProvincia(self, codigo_provincia, sep="||"):
ret = self.client.consultarLocalidadesPorProvincia(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
codigoProvincia=codigo_provincia,
)
)["response"]
self.__analizar_errores(ret)
array = ret.get("arrayLocalidades", [])
return [
("%s %%s %s %%s %s" % (sep, sep, sep))
% (it["localidad"]["codigo"], it["localidad"]["descripcion"])
for it in array
]
@inicializar_y_capturar_excepciones
def ConsultarEstablecimientos(self, sep="||"):
ret = self.client.consultarEstablecimientos(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["response"]
self.__analizar_errores(ret)
array = ret.get("arrayEstablecimientos", [])
return [("%s" % (it["establecimiento"],)) for it in array]
@inicializar_y_capturar_excepciones
def ConsultarEspecies(self, sep="||"):
ret = self.client.consultarEspecies(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["response"]
self.__analizar_errores(ret)
array = ret.get("arrayEspecies", [])
return [
("%s %%s %s %%s %s" % (sep, sep, sep))
% (it["especie"]["codigo"], it["especie"]["descripcion"])
for it in array
]
@inicializar_y_capturar_excepciones
def ConsultarCosechas(self, sep="||"):
ret = self.client.consultarCosechas(
request=dict(
auth={
"token": self.Token,
"sign": self.Sign,
"cuitRepresentado": self.Cuit,
},
)
)["response"]
self.__analizar_errores(ret)
array = ret.get("arrayCosechas", [])
return [
("%s %%s %s %%s %s" % (sep, sep, sep))
% (it["cosecha"]["codigo"], it["cosecha"]["descripcion"])
for it in array
]
def leer_archivo(nombre_archivo):
archivo = open(nombre_archivo, "r")
items = []
ext = os.path.splitext(nombre_archivo)[1]
if ext == ".csv":
csv_reader = csv.reader(open(ENTRADA), dialect="excel", delimiter=";")
for row in csv_reader:
items.append(row)
cols = [str(it).strip() for it in items[0]]
# armar diccionario por cada linea
items = [
dict([(cols[i], str(v).strip()) for i, v in enumerate(item)])
for item in items[1:]
]
return cols, items
elif ext == ".json":
items = json.load(archivo)
elif ext == ".dbf":
dic = {}
formatos = [
("Encabezado", ENCABEZADO, dic),
]
leer_dbf(formatos, conf_dbf)
items = [dic]
elif ext == ".txt":
dic = {}
for linea in archivo:
if str(linea[0]) == "0":
dic.update(leer(linea, ENCABEZADO))
else:
print("Tipo de registro incorrecto:", linea[0])
items.append(dic)
else:
raise RuntimeError("Extension de archivo desconocida: %s" % ext)
archivo.close()
cols = [k[0] for k in ENCABEZADO]
return cols, items
def escribir_archivo(cols, items, nombre_archivo, agrega=False):
archivo = open(nombre_archivo, agrega and "a" or "w")
ext = os.path.splitext(nombre_archivo)[1]
if ext == ".csv":
csv_writer = csv.writer(archivo, dialect="excel", delimiter=";")
csv_writer.writerows([cols])
csv_writer.writerows([[item[k] for k in cols] for item in items])
elif ext == ".json":
json.dump(items, archivo, sort_keys=True, indent=4)
elif ext == ".dbf":
formatos = [
("Encabezado", ENCABEZADO, items),
]
guardar_dbf(formatos, True, conf_dbf)
elif ext == ".txt":
for dic in items:
dic["tipo_reg"] = 0
archivo.write(escribir(dic, ENCABEZADO))
else: