-
Notifications
You must be signed in to change notification settings - Fork 228
/
recem.py
819 lines (734 loc) · 27.2 KB
/
recem.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
#!/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 de Intefase para archivos de texto (MATRIX mercado interno con detalle)"
from __future__ import print_function
from __future__ import absolute_import
from builtins import input
from builtins import str
__author__ = "Mariano Reingart ([email protected])"
__copyright__ = "Copyright (C) 2011-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
__version__ = "3.34a"
import datetime
import os
import sys
import time
import traceback
# revisar la instalación de pyafip.ws:
from pyafipws import wsmtx
from pyafipws.utils import SimpleXMLElement, SoapClient, SoapFault, date
from pyafipws.utils import leer, escribir, leer_dbf, guardar_dbf, N, A, I, abrir_conf
HOMO = wsmtx.HOMO
DEBUG = False
PDB = False
XML = False
CONFIG_FILE = "rece.ini"
LICENCIA = """
recem.py: Interfaz de texto para generar Facturas Electrónica MATRIX
Copyright (C) 2010 Mariano Reingart [email protected]
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
"""
# definición del formato del archivo de intercambio:
if not "--pyfepdf" in sys.argv:
TIPOS_REG = "0", "1", "2", "3", "4", "5", "6"
ENCABEZADO = [
("tipo_reg", 1, N), # 0: encabezado
("fecha_cbte", 10, A),
("tipo_cbte", 2, N),
("punto_vta", 4, N),
("cbt_desde", 8, N),
("cbt_hasta", 8, N),
("concepto", 1, N), # 1:bienes, 2:servicios,...
("tipo_doc", 2, N), # 80
("nro_doc", 11, N), # 50000000016
("imp_total", 15, I, 2),
("imp_tot_conc", 15, I, 2),
("imp_neto", 15, I, 2),
("imp_subtotal", 15, I, 2),
("imp_trib", 15, I, 2),
("imp_op_ex", 15, I, 2),
("moneda_id", 3, A),
("moneda_ctz", 10, I, 6), # 10,6
("fecha_venc_pago", 10, A), # opcional solo conceptos 2 y 3
("fecha_serv_desde", 10, A), # opcional solo conceptos 2 y 3
("fecha_serv_hasta", 10, A), # opcional solo conceptos 2 y 3
("cae", 14, A),
("fch_venc_cae", 10, A),
("resultado", 1, A),
("motivos_obs", 1000, A),
("err_code", 6, A),
("err_msg", 1000, A),
("reproceso", 1, A),
("emision_tipo", 4, A),
("observaciones", 1000, A), # observaciones (opcional)
("tipo_cbte", 3, N),
("punto_vta", 5, N),
]
DETALLE = [
("tipo_reg", 1, N), # 4: detalle item
("u_mtx", 10, N),
("cod_mtx", 30, A),
("codigo", 30, A),
("qty", 15, I, 3), # debería ser 18,6 pero el DBF no lo soporta
("umed", 3, N),
("precio", 15, I, 3), # debería ser 18,6 pero el DBF no lo soporta
("bonif", 15, I, 3),
("iva_id", 3, N),
("imp_iva", 15, I, 2),
("imp_subtotal", 15, I, 2),
("ds", 4000, A),
]
TRIBUTO = [
("tipo_reg", 1, N), # 1: tributo
("tributo_id", 3, A), # código de otro tributo
("desc", 100, A), # descripción
("base_imp", 15, I, 2),
("alic", 15, I, 2), # no se usa...
("importe", 15, I, 2),
]
IVA = [
("tipo_reg", 1, N), # 2: IVA
("iva_id", 3, A), # código de alícuota
("base_imp", 15, I, 2), # no se usa...
("importe", 15, I, 2),
]
CMP_ASOC = [
("tipo_reg", 1, N), # 3: comprobante asociado
("tipo", 3, N),
("pto_vta", 4, N),
("nro", 8, N),
("fecha", 8, N),
("cuit", 11, N),
]
OPCIONAL = [
("tipo_reg", 1, N), # 6: datos opcionales
("opcional_id", 4, A),
("valor", 250, A),
("valor", 250, A),
("valor", 250, A),
("valor", 250, A),
("valor", 250, A),
]
else:
print("!" * 78)
print("importando formato segun pyfepdf")
from pyafipws.formatos.formato_txt import (
ENCABEZADO,
DETALLE,
PERMISO,
CMP_ASOC,
IVA,
TRIBUTO,
OPCIONAL,
)
TIPOS_REG = "0", "5", "4", "3", "1", "6"
def autorizar(ws, entrada, salida, informar_caea=False):
tributos = []
ivas = []
cbtasocs = []
encabezado = []
detalles = []
opcionales = []
if "/dbf" in sys.argv:
formatos = [
("Encabezado", ENCABEZADO, encabezado),
("Tributo", TRIBUTO, tributos),
("Iva", IVA, ivas),
("Comprobante Asociado", CMP_ASOC, cbtasocs),
("Detalles", DETALLE, detalles),
("Datos Opcionales", OPCIONAL, opcionales),
]
dic = leer_dbf(formatos, conf_dbf)
encabezado = encabezado[0]
else:
for linea in entrada:
if str(linea[0]) == TIPOS_REG[0]:
encabezado = leer(linea, ENCABEZADO, expandir_fechas=True)
if "cbte_nro" in encabezado:
print("*" * 80)
print("cbte_nro", encabezado["cbte_nro"])
encabezado["cbt_desde"] = encabezado["cbte_nro"]
encabezado["cbt_hasta"] = encabezado["cbte_nro"]
del encabezado["cbte_nro"]
elif str(linea[0]) == TIPOS_REG[1]:
tributo = leer(linea, TRIBUTO)
tributos.append(tributo)
elif str(linea[0]) == TIPOS_REG[2]:
iva = leer(linea, IVA)
ivas.append(iva)
elif str(linea[0]) == TIPOS_REG[3]:
cbtasoc = leer(linea, CMP_ASOC)
if "cbte_punto_vta" in cbtasoc:
cbtasoc["tipo"] = cbtasoc["cbte_tipo"]
cbtasoc["pto_vta"] = cbtasoc["cbte_punto_vta"]
cbtasoc["nro"] = cbtasoc["cbte_nro"]
cbtasocs.append(cbtasoc)
elif str(linea[0]) == TIPOS_REG[4]:
detalle = leer(linea, DETALLE)
detalles.append(detalle)
if "imp_subtotal" not in detalle:
detalle["imp_subtotal"] = detalle["importe"]
elif str(linea[0]) == TIPOS_REG[5]:
opcional = leer(linea, OPCIONAL)
opcionales.append(opcional)
else:
print("Tipo de registro incorrecto:", linea[0])
if informar_caea:
if "/testing" in sys.argv:
encabezado["cae"] = "21353598240916"
encabezado["fch_venc_cae"] = "2011-09-15"
encabezado["caea"] = encabezado["cae"]
if "imp_subtotal" not in encabezado:
encabezado["imp_subtotal"] = encabezado["imp_neto"] + encabezado["imp_tot_conc"]
ws.CrearFactura(**encabezado)
for detalle in detalles:
ws.AgregarItem(**detalle)
for tributo in tributos:
ws.AgregarTributo(**tributo)
for iva in ivas:
ws.AgregarIva(**iva)
for cbtasoc in cbtasocs:
ws.AgregarCmpAsoc(**cbtasoc)
for opcional in opcionales:
ws.AgregarOpcional(**opcional)
if DEBUG:
print("\n".join(["%s='%s'" % (k, str(v)) for k, v in list(ws.factura.items())]))
if not DEBUG :
if not informar_caea:
cae = ws.AutorizarComprobante()
dic = ws.factura
else:
cae = ws.InformarComprobanteCAEA()
dic = ws.factura
dic.update(
{
"cae": cae,
"fch_venc_cae": ws.Vencimiento,
"resultado": ws.Resultado,
"motivos_obs": ws.Obs,
"err_code": ws.ErrCode,
"err_msg": ws.ErrMsg,
"reproceso": ws.Reproceso,
"emision_tipo": ws.EmisionTipo,
}
)
escribir_factura(dic, salida)
print(
"NRO:",
dic["cbt_desde"],
"Resultado:",
dic["resultado"],
"%s:" % ws.EmisionTipo,
dic["cae"],
"Obs:",
dic["motivos_obs"].encode("ascii", "ignore"),
"Err:",
dic["err_msg"].encode("ascii", "ignore"),
"Reproceso:",
dic["reproceso"],
)
def escribir_factura(dic, archivo, agrega=False):
dic["tipo_reg"] = TIPOS_REG[0]
dic["cbte_nro"] = dic.get("cbt_desde")
archivo.write(escribir(dic, ENCABEZADO, contraer_fechas=True))
if "tributos" in dic:
for it in dic["tributos"]:
it["tipo_reg"] = TIPOS_REG[1]
archivo.write(escribir(it, TRIBUTO))
if "iva" in dic:
for it in dic["iva"]:
it["tipo_reg"] = TIPOS_REG[2]
archivo.write(escribir(it, IVA))
if "cbtes_asoc" in dic:
for it in dic["cbtes_asoc"]:
it["tipo_reg"] = TIPOS_REG[3]
archivo.write(escribir(it, CMP_ASOC))
if "detalles" in dic:
for it in dic["detalles"]:
it["tipo_reg"] = TIPOS_REG[4]
it["importe"] = it["imp_subtotal"]
archivo.write(escribir(it, DETALLE))
if "opcionales" in dic:
for it in dic["opcionales"]:
it["tipo_reg"] = TIPOS_REG[5]
archivo.write(escribir(it, OPCIONAL))
if "/dbf" in sys.argv:
formatos = [
("Encabezado", ENCABEZADO, [dic]),
("Tributo", TRIBUTO, dic.get("tributos", [])),
("Iva", IVA, dic.get("iva", [])),
("Comprobante Asociado", CMP_ASOC, dic.get("cbtes_asoc", [])),
("Datos Opcionales", OPCIONAL, dic.get("opcionales", [])),
("Detalles", DETALLE, dic.get("detalles", [])),
]
guardar_dbf(formatos, agrega, conf_dbf)
def depurar_xml(client):
global wsmtxca_xml_dir
fecha = time.strftime("%Y%m%d%H%M%S")
f = open("request-%s.xml" % fecha, "w")
f.write(client.xml_request)
f.close()
f = open("response-%s.xml" % fecha, "w")
if sys.version_info[0] < 3:
f.write(client.xml_response)
else:
f.write(client.xml_response.decode())
f.close()
def main():
global HOMO, DEBUG, XML, CONFIG_FILE
if "/ayuda" in sys.argv:
print(LICENCIA)
print()
print("Opciones: ")
print(" /ayuda: este mensaje")
print(" /dummy: consulta estado de servidores")
print(
" /prueba: genera y autoriza una factura de prueba (no usar en producción!)"
)
print(" /ult: consulta último número de comprobante")
print(" /debug: modo depuración (detalla y confirma las operaciones)")
print(" /formato: muestra el formato de los archivos de entrada/salida")
print(
" /get: recupera datos de un comprobante autorizado previamente (verificación)"
)
print(" /xml: almacena los requerimientos y respuestas XML (depuración)")
print(" /dbf: lee y almacena la información en tablas DBF")
print()
print("Ver rece.ini para parámetros de configuración (URL, certificados, etc.)")
return
if "/debug" in sys.argv:
DEBUG = True
print("VERSION", __version__, "HOMO", HOMO)
config = abrir_conf(CONFIG_FILE, DEBUG)
cert = config.get("WSAA", "CERT")
privatekey = config.get("WSAA", "PRIVATEKEY")
cuit = config.get("WSMTXCA", "CUIT")
if "/entrada" in sys.argv:
entrada = sys.argv[sys.argv.index("/entrada") + 1]
else:
entrada = config.get("WSMTXCA", "ENTRADA")
salida = config.get("WSMTXCA", "SALIDA")
if config.has_option("WSAA", "URL") and not HOMO:
wsaa_url = config.get("WSAA", "URL")
else:
wsaa_url = None
if config.has_option("WSMTXCA", "URL") and not HOMO:
wsmtxca_url = config.get("WSMTXCA", "URL")
else:
wsmtxca_url = None
if config.has_option("WSMTXCA", "REPROCESAR"):
wsmtxca_reprocesar = config.get("WSMTXCA", "REPROCESAR") == "S"
else:
wsmtxca_reprocesar = None
if config.has_option("WSMTXCA", "XML_DIR"):
wsmtxca_xml_dir = config.get("WSMTXCA", "XML_DIR")
else:
wsmtxca_xml_dir = "."
if config.has_section("DBF"):
conf_dbf = dict(config.items("DBF"))
if DEBUG:
print("conf_dbf", conf_dbf)
else:
conf_dbf = {}
if "/xml" in sys.argv:
XML = True
if DEBUG:
print("wsaa_url %s\nwsmtxca_url %s\ncuit %s" % (wsaa_url, wsmtxca_url, cuit))
try:
ws = wsmtx.WSMTXCA()
ws.Conectar("", wsmtxca_url)
ws.Cuit = cuit
if wsmtxca_reprocesar is not None:
ws.Reprocesar = wsmtxca_reprocesar
if "/dummy" in sys.argv:
print("Consultando estado de servidores...")
ws.Dummy()
print("AppServerStatus", ws.AppServerStatus)
print("DbServerStatus", ws.DbServerStatus)
print("AuthServerStatus", ws.AuthServerStatus)
return
if "/formato" in sys.argv:
print("Formato:")
for msg, formato in [
("Encabezado", ENCABEZADO),
("Tributo", TRIBUTO),
("Iva", IVA),
("Comprobante Asociado", CMP_ASOC),
("Detalle", DETALLE),
("Opcionales", OPCIONAL),
]:
comienzo = 1
print("== %s ==" % msg)
for fmt in formato:
clave, longitud, tipo = fmt[0:3]
if isinstance(longitud, tuple):
longitud, dec = longitud
else:
dec = len(fmt) > 3 and fmt[3] or 2
print(
" * Campo: %-20s Posición: %3d Longitud: %4d Tipo: %s Decimales: %s"
% (clave, comienzo, longitud, tipo, dec)
)
comienzo += longitud
return
# obteniendo el TA
from pyafipws.wsaa import WSAA
wsaa = WSAA()
ta = wsaa.Autenticar("wsmtxca", cert, privatekey, wsaa_url)
if not ta:
sys.exit("Imposible autenticar con WSAA: %s" % wsaa.Excepcion)
ws.SetTicketAcceso(ta)
if "/puntosventa" in sys.argv:
print("Consultando puntos de venta CAE...")
print("\n".join(ws.ConsultarPuntosVentaCAE()))
print("Consultando puntos de venta CAEA...")
if "--testing" in sys.argv:
ws.LoadTestXML("tests/wsmtx_ptosvta_caea_resp.xml")
print("\n".join(ws.ConsultarPuntosVentaCAEA()))
return
if "/prueba" in sys.argv:
# generar el archivo de prueba para la próxima factura
if "--fce" in sys.argv:
tipo_cbte = 201
else:
tipo_cbte = 1
punto_vta = 4000
cbte_nro = ws.ConsultarUltimoComprobanteAutorizado(tipo_cbte, punto_vta)
fecha = datetime.datetime.now().strftime("%Y-%m-%d")
concepto = 3
tipo_doc = 80
nro_doc = "30000000007"
cbte_nro = int(cbte_nro) + 1
cbt_desde = cbte_nro
cbt_hasta = cbt_desde
imp_total = "121.00"
imp_tot_conc = "0.00"
imp_neto = "100.00"
imp_trib = "0.00"
imp_op_ex = "0.00"
imp_subtotal = "100.00"
fecha_cbte = fecha
fecha_venc_pago = fecha
# Fechas del período del servicio facturado (solo si concepto = 1?)
fecha_serv_desde = fecha
fecha_serv_hasta = fecha
moneda_id = "PES"
moneda_ctz = "1.000"
obs = "Observaciones Comerciales, libre"
ws.CrearFactura(
concepto,
tipo_doc,
nro_doc,
tipo_cbte,
punto_vta,
cbt_desde,
cbt_hasta,
imp_total,
imp_tot_conc,
imp_neto,
imp_subtotal,
imp_trib,
imp_op_ex,
fecha_cbte,
fecha_venc_pago,
fecha_serv_desde,
fecha_serv_hasta, # --
moneda_id,
moneda_ctz,
obs,
)
if tipo_cbte not in (1, 2, 6, 7, 201):
tipo = 1
pto_vta = 2
nro = 1234
fecha = "20191010"
cuit = "20267565393"
ws.AgregarCmpAsoc(tipo, pto_vta, nro, cuit, fecha)
tributo_id = 99
desc = "Impuesto Municipal Matanza"
base_imp = 100
alic = 1
importe = 1
# ws.AgregarTributo(tributo_id, desc, base_imp, alic, importe)
iva_id = 5 # 21%
base_imp = 100
importe = 21
ws.AgregarIva(iva_id, base_imp, importe)
u_mtx = 123456
cod_mtx = 1234567890123
codigo = "P0001"
ds = "Descripcion del producto P0001"
qty = 1.00
umed = 7
if tipo_cbte in (6, 7, 8):
precio = 121.00
else:
precio = 100.00
bonif = 0.00
iva_id = 5
imp_iva = 21.00
imp_subtotal = 121.00
ws.AgregarItem(
u_mtx,
cod_mtx,
codigo,
ds,
qty,
umed,
precio,
bonif,
iva_id,
imp_iva,
imp_subtotal,
)
if tipo_cbte not in (6, 7, 8):
ws.AgregarItem(
u_mtx, cod_mtx, codigo, "PRUEBA", 1, 7, 1.00, 0, iva_id, 0.21, 1.21
)
ws.AgregarItem(
1, "DESC", "DESC", "Descuento", 0, 99, 0, 0, iva_id, 0.21, 1.21
)
else:
ws.AgregarItem(
u_mtx, cod_mtx, codigo, "PRUEBA", 1, 7, 1.21, 0, iva_id, 0.0, 1.21
)
ws.AgregarItem(
1, "DESC", "DESC", "Descuento", 0, 99, 0, 0, iva_id, 0.0, 1.21
)
# datos de opcionales FCE (Factura Credito Electrónica):
if "--fce" in sys.argv:
if tipo_cbte not in (1, 2, 6, 7, 201, 206, 211):
ws.AgregarOpcional(22, "N")
else:
ws.AgregarOpcional(21, "2850590940090418135201") # CBU
f_entrada = open(entrada, "w")
if DEBUG:
print(ws.factura)
dic = ws.factura
escribir_factura(dic, f_entrada, agrega=True)
f_entrada.close()
if "/ult" in sys.argv:
print("Consultar ultimo numero:")
i = sys.argv.index("/ult")
if i + 2 < len(sys.argv):
tipo_cbte = int(sys.argv[i + 1])
punto_vta = int(sys.argv[i + 2])
else:
tipo_cbte = int(input("Tipo de comprobante: "))
punto_vta = int(input("Punto de venta: "))
ult_cbte = ws.ConsultarUltimoComprobanteAutorizado(tipo_cbte, punto_vta)
print("Ultimo numero: ", ult_cbte)
depurar_xml(ws.client)
escribir_factura(
{
"tipo_cbte": tipo_cbte,
"punto_vta": punto_vta,
"cbt_desde": ult_cbte,
"fecha_cbte": ws.FechaCbte,
},
open(salida, "w"),
)
return
if "/get" in sys.argv:
print("Recuperar comprobante:")
i = sys.argv.index("/get")
if i + 3 < len(sys.argv):
tipo_cbte = int(sys.argv[i + 1])
punto_vta = int(sys.argv[i + 2])
cbte_nro = int(sys.argv[i + 3])
else:
tipo_cbte = int(input("Tipo de comprobante: "))
punto_vta = int(input("Punto de venta: "))
cbte_nro = int(input("Numero de comprobante: "))
ws.ConsultarComprobante(tipo_cbte, punto_vta, cbte_nro)
print("FechaCbte = ", ws.FechaCbte)
print("CbteNro = ", ws.CbteNro)
print("PuntoVenta = ", ws.PuntoVenta)
print("ImpTotal =", ws.ImpTotal)
print("CAE = ", ws.CAE)
print("Vencimiento = ", ws.Vencimiento)
print("EmisionTipo = ", ws.EmisionTipo)
depurar_xml(ws.client)
escribir_factura(
{
"tipo_cbte": tipo_cbte,
"punto_vta": ws.PuntoVenta,
"cbt_desde": ws.CbteNro,
"fecha_cbte": ws.FechaCbte,
"imp_total": ws.ImpTotal,
"cae": ws.CAE,
"fch_venc_cae": ws.Vencimiento,
"emision_tipo": ws.EmisionTipo,
},
open(salida, "w"),
)
return
if "/solicitarcaea" in sys.argv:
if len(sys.argv) > sys.argv.index("/solicitarcaea") + 1:
periodo = sys.argv[sys.argv.index("/solicitarcaea") + 1]
orden = sys.argv[sys.argv.index("/solicitarcaea") + 2]
else:
periodo = input("Periodo (año-mes, ej 201108): ")
orden = input("Orden (quincena, 1 u 2): ")
if DEBUG:
print("Solicitando CAEA para periodo %s orden %s" % (periodo, orden))
caea = ws.SolicitarCAEA(periodo, orden)
print("CAEA:", caea)
if ws.Errores:
print("Errores:")
for error in ws.Errores:
print(error)
depurar_xml(ws.client)
if not caea:
if DEBUG:
print(
"Consultando CAEA para periodo %s orden %s" % (periodo, orden)
)
caea = ws.ConsultarCAEA(periodo, orden)
print("CAEA:", caea)
if DEBUG:
print("Periodo:", ws.Periodo)
print("Orden:", ws.Orden)
print("FchVigDesde:", ws.FchVigDesde)
print("FchVigHasta:", ws.FchVigHasta)
print("FchTopeInf:", ws.FchTopeInf)
print("FchProceso:", ws.FchProceso)
escribir_factura(
{
"cae": caea,
"emision_tipo": "CAEA",
},
open(salida, "w"),
)
return
if "/consultarcaea" in sys.argv:
if len(sys.argv) > sys.argv.index("/consultarcaea") + 1:
periodo = sys.argv[sys.argv.index("/consultarcaea") + 1]
orden = sys.argv[sys.argv.index("/consultarcaea") + 2]
else:
periodo = input("Periodo (año-mes, ej 201108): ")
orden = input("Orden (quincena, 1 u 2): ")
if DEBUG:
print("Consultando CAEA para periodo %s orden %s" % (periodo, orden))
caea = ws.ConsultarCAEA(periodo, orden)
print("CAEA:", caea)
if ws.Errores:
print("Errores:")
for error in ws.Errores:
print(error)
if DEBUG:
print("Periodo:", ws.Periodo)
print("Orden:", ws.Orden)
print("FchVigDesde:", ws.FchVigDesde)
print("FchVigHasta:", ws.FchVigHasta)
print("FchTopeInf:", ws.FchTopeInf)
print("FchProceso:", ws.FchProceso)
return
if "/informarcaeanoutilizado" in sys.argv:
i = sys.argv.index("/informarcaeanoutilizado")
if i + 1 < len(sys.argv):
caea = int(sys.argv[i + 1])
else:
caea = input("CAEA: ")
if DEBUG:
print("Informando CAEA no utilizado: %s" % (caea,))
ok = ws.InformarCAEANoUtilizado(caea)
print("Resultado:", ok)
if ws.Errores:
print("Errores:")
for error in ws.Errores:
print(error)
return
if "/informarcaeanoutilizadoptovta" in sys.argv:
i = sys.argv.index("/informarcaeanoutilizadoptovta")
if i + 2 < len(sys.argv):
caea = int(sys.argv[i + 1])
pto_vta = int(sys.argv[i + 2])
else:
caea = input("CAEA: ")
pto_vta = input("Punto de Venta: ")
if DEBUG:
print("Informando CAEA no utilizado: %s pto_vta %s" % (caea, pto_vta))
ok = ws.InformarCAEANoUtilizadoPtoVta(caea, pto_vta)
print("Resultado:", ok)
if ws.Errores:
print("Errores:")
for error in ws.Errores:
print(error)
return
if "/consultarptosvtacaeanoinformados" in sys.argv:
i = sys.argv.index("/consultarptosvtacaeanoinformados")
if i + 1 < len(sys.argv):
caea = int(sys.argv[i + 1])
else:
caea = input("CAEA: ")
if DEBUG:
print("Consultando PtosVta CAEA: %s" % (caea))
ptos_vta = ws.ConsultarPtosVtaCAEANoInformados(caea)
print("Resultado:", "\n".join(ptos_vta))
if ws.Errores:
print("Errores:")
for error in ws.Errores:
print(error)
return
if "/ptosventa" in sys.argv:
print("=== Puntos de Venta CAE ===")
print(u"\n".join(ws.ConsultarPuntosVentaCAE()))
print("=== Puntos de Venta CAEA ===")
print(u"\n".join(ws.ConsultarPuntosVentaCAEA()))
return
f_entrada = f_salida = None
try:
f_entrada = open(entrada, "r")
f_salida = open(salida, "w")
try:
if DEBUG:
print("Autorizando usando entrada:", entrada)
autorizar(ws, f_entrada, f_salida, "/informarcaea" in sys.argv)
except SoapFault:
XML = True
raise
finally:
if f_entrada is not None:
f_entrada.close()
if f_salida is not None:
f_salida.close()
if XML:
depurar_xml(ws.client)
return
except SoapFault as e:
print(e.faultcode, e.faultstring.encode("ascii", "ignore"))
sys.exit(3)
except Exception as e:
e_str = str(e).encode("ascii", "ignore")
if not e_str:
e_str = repr(e)
print(e_str)
escribir_factura(
{
"err_msg": e_str,
},
open(salida, "w"),
)
ex = traceback.format_exception(
sys.exc_info()[0], sys.exc_info()[1], sys.exc_info()[2]
)
open("traceback.txt", "wb").write("\n".join(ex))
if DEBUG:
raise
sys.exit(5)
if __name__ == "__main__":
main()