-
Notifications
You must be signed in to change notification settings - Fork 228
/
receb1.py
468 lines (414 loc) · 14.2 KB
/
receb1.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
#!/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 (bono fiscal version 1)"
from __future__ import print_function
from __future__ import absolute_import
from builtins import str
from builtins import input
from past.builtins import basestring
__author__ = "Mariano Reingart (reingart@gmail.com)"
__copyright__ = "Copyright (C) 2009-2021 Mariano Reingart"
__license__ = "LGPL-3.0-or-later"
__version__ = "3.19a"
import datetime
import os
import sys
import time
import traceback
# revisar la instalación de pyafip.ws:
from pyafipws import wsaa, wsbfev1
from pyafipws.utils import leer, escribir, leer_dbf, guardar_dbf, N, A, I, abrir_conf
HOMO = False
DEBUG = False
XML = False
CONFIG_FILE = "rece.ini"
LICENCIA = """
receb.py: Interfaz de texto para generar Facturas Electrónicas Bienes de Capital
Copyright (C) 2008/2009 Mariano Reingart reingart@gmail.com
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:
N = "Numerico"
A = "Alfanumerico"
I = "Importe"
ENCABEZADO = [
("tipo_reg", 1, N), # 0: encabezado
("fecha_cbte", 8, A),
("tipo_cbte", 2, N),
("punto_vta", 4, N),
("cbte_nro", 8, N),
("tipo_doc", 2, N),
("nro_doc", 11, N),
("imp_total", 15, I),
("imp_tot_conc", 15, I),
("imp_neto", 15, I),
("impto_liq", 15, I),
("impto_liq_rni", 15, I),
("imp_op_ex", 15, I),
("impto_perc", 15, I),
("imp_iibb", 15, I),
("impto_perc_mun", 15, I),
("imp_internos", 15, I),
("imp_moneda_id", 3, A),
("imp_moneda_ctz", 10, I),
("zona", 5, A),
("cae", 14, N),
("fecha_vto", 8, A),
("resultado", 1, A),
("obs", 2, A),
("reproceso", 1, A),
("id", 15, N),
]
DETALLE = [
("tipo_reg", 1, N), # 1: detalle item
("ncm", 15, A),
("sec", 15, A),
("qty", 15, I),
("umed", 5, N),
("precio", 15, I),
("bonif", 15, I),
("imp_total", 15, I),
("iva_id", 5, N),
("ds", 200, A),
]
def leer(linea, formato):
dic = {}
comienzo = 1
for (clave, longitud, tipo) in formato:
valor = linea[comienzo - 1 : comienzo - 1 + longitud].strip()
if tipo == N and valor:
valor = str(int(valor))
if tipo == I:
if valor:
valor = float("%s.%02d" % (int(valor[:-2]), int(valor[-2:])))
else:
valor = 0.00
dic[clave] = valor
comienzo += longitud
return dic
translate_keys = {
"ncm": "Pro_codigo_ncm",
"bonif": "Imp_bonif",
"precio": "Pro_precio_uni",
"sec": "Pro_codigo_sec",
"ds": "Pro_ds",
"umed": "Pro_umed",
"qty": "Pro_qty",
"imp_moneda_id": "Imp_moneda_Id",
}
def escribir(dic, formato):
linea = " " * 335
comienzo = 1
for (clave, longitud, tipo) in formato:
if clave.capitalize() in dic:
clave = clave.capitalize()
valor = str(dic.get(clave, ""))
if valor == "" and clave in translate_keys:
valor = str(dic.get(translate_keys[clave], ""))
if tipo == N and valor and valor != "NULL":
valor = ("%%0%dd" % longitud) % int(valor)
elif tipo == I and valor:
valor = ("%%0%dd" % longitud) % (float(valor) * 100)
else:
valor = ("%%0%ds" % longitud) % valor
linea = linea[: comienzo - 1] + valor + linea[comienzo - 1 + longitud :]
comienzo += longitud
return linea + "\n"
def autorizar(ws, entrada, salida):
# recupero el último número de transacción
##id = wsbfe.ultnro(client, token, sign, cuit)
detalles = []
encabezado = {}
if "/dbf" in sys.argv:
encabezados = []
formatos = [
("Encabezado", ENCABEZADO, encabezados),
("Detalles", DETALLE, detalles),
]
dic = leer_dbf(formatos, conf_dbf)
encabezado = encabezados[0]
else:
for linea in entrada:
if str(linea[0]) == "0":
encabezado = leer(linea, ENCABEZADO)
elif str(linea[0]) == "1":
detalle = leer(linea, DETALLE)
detalles.append(detalle)
else:
print("Tipo de registro incorrecto:", linea[0])
if isinstance(encabezado["id"], basestring) and not encabezado["id"].strip():
# TODO: habria que leer y/o grabar el id en el archivo
##id += 1 # incremento el nº de transacción
# Por el momento, el id se calcula con el tipo, pv y nº de comprobant
i = int(encabezado["cbte_nro"])
i += (
int(encabezado["cbte_nro"]) * 10 ** 4 + int(encabezado["punto_vta"])
) * 10 ** 8
encabezado["id"] = i
if not encabezado["zona"].strip():
encabezado["zona"] = 0
if "testing" in sys.argv:
ult_cbte = ws.GetLastCMP(punto_vta, tipo_cbte)
encabezado["cbte_nro"] = ult_cbte + 1
ult_id = ws.GetLastID()
encabezado["id"] = ult_id + 1
##encabezado['imp_moneda_ctz'] = 1.00
ws.CrearFactura(**encabezado)
for detalle in detalles:
ws.AgregarItem(**detalle)
if DEBUG:
print("\n".join(["%s='%s'" % (k, v) for k, v in list(ws.factura.items())]))
print("id:", encabezado["id"])
if not DEBUG :
cae = ws.Authorize(encabezado["id"])
dic = ws.factura
dic.update(
{
"id": encabezado["id"],
"fecha_cbte": ws.FechaCbte,
"imp_total": ws.ImpTotal or 0,
"imp_neto": ws.ImpNeto or 0,
"impto_liq": ws.ImptoLiq or 0,
"cae": str(ws.CAE),
"obs": str(ws.Obs),
"reproceso": str(ws.Reproceso),
"fch_venc_cae": ws.Vencimiento,
"err_msg": ws.ErrMsg,
}
)
escribir_factura(dic, salida)
print(
"ID:",
dic["id"],
"CAE:",
dic["cae"],
"Obs:",
dic["obs"],
"Reproceso:",
dic["reproceso"],
)
def escribir_factura(dic, archivo, agrega=False):
dic["tipo_reg"] = 0
archivo.write(escribir(dic, ENCABEZADO))
for it in dic["detalles"]:
it["tipo_reg"] = 1
archivo.write(escribir(it, DETALLE))
if "/dbf" in sys.argv:
formatos = [
("Encabezado", ENCABEZADO, [dic]),
("Detalles", DETALLE, dic.get("detalles", [])),
]
guardar_dbf(formatos, agrega, conf_dbf)
def depurar_xml(client):
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")
f.write(client.xml_response.decode())
f.close()
def main():
global HOMO, DEBUG, XML, CONFIG_FILE, wsaa
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(" /id: consulta último ID")
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("WSBFE", "CUIT")
entrada = config.get("WSBFE", "ENTRADA")
salida = config.get("WSBFE", "SALIDA")
if config.has_option("WSAA", "URL") and not HOMO:
wsaa_url = config.get("WSAA", "URL")
else:
wsaa_url = None
if config.has_option("WSBFE", "URL") and not HOMO:
wsbfe_url = config.get("WSBFE", "URL")
else:
wsbfe_url = None
if "/debug" in sys.argv:
DEBUG = True
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\nwsbfe_url %s" % (wsaa_url, wsbfe_url))
try:
ws = wsbfev1.WSBFEv1()
ws.Conectar("", wsbfe_url)
ws.Cuit = cuit
if "/dummy" in sys.argv:
print("Consultando estado de servidores...")
print(ws.Dummy())
return
if "/formato" in sys.argv:
print("Formato:")
for msg, formato in [("Encabezado", ENCABEZADO), ("Detalle", DETALLE)]:
comienzo = 1
print("== %s ==" % msg)
for (clave, longitud, tipo) in formato:
print(
" * Campo: %-20s Posición: %3d Longitud: %4d Tipo: %s"
% (clave, comienzo, longitud, tipo)
)
comienzo += longitud
return
# obteniendo el TA
from pyafipws.wsaa import WSAA
wsaa = WSAA()
ta = wsaa.Autenticar("wsbfe", cert, privatekey, wsaa_url)
if not ta:
sys.exit("Imposible autenticar con WSAA: %s" % wsaa.Excepcion)
ws.SetTicketAcceso(ta)
if "/prueba" in sys.argv or False:
# generar el archivo de prueba para la próxima factura
fecha = datetime.datetime.now().strftime("%Y%m%d")
tipo_cbte = 1
punto_vta = 2
ult_cbte = int(ws.GetLastCMP(tipo_cbte, punto_vta)) + 1
ult_id = ws.GetLastID() + 1
f_entrada = open(entrada, "w")
f = ws.CrearFactura(
punto_vta=punto_vta,
cbte_nro=ult_cbte,
imp_moneda_id="PES",
imp_moneda_ctz=1,
fecha_cbte=fecha,
imp_neto="390.00",
impto_liq="81.90",
)
ws.AgregarItem(
umed=7,
ncm="7308.10.00",
sec="",
ds="prueba",
qty=2.0,
precio=100.0,
bonif=0.0,
iva_id=5,
imp_total="242.00",
)
ws.AgregarItem(
umed=7,
ncm="7308.20.00",
sec="",
ds="prueba 2",
qty=4.0,
precio=50.0,
bonif=10.0,
iva_id=5,
imp_total="229.90",
)
dic = ws.factura
dic["id"] = ult_id
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.GetLastCMP(tipo_cbte, punto_vta)
print("Ultimo numero: ", ult_cbte)
print("Fecha: ", ws.FechaCbte)
depurar_xml(ws.client)
return
if "/id" in sys.argv:
ult_id = ws.GetLastID()
print("ID: ", ult_id)
depurar_xml(ws.client)
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: "))
cae = ws.GetCMP(tipo_cbte, punto_vta, cbte_nro)
cbt = {
"fecha_cbte": ws.FechaCbte,
"imp_total": ws.ImpTotal or 0,
"imp_neto": ws.ImpNeto or 0,
"impto_liq": ws.ImptoLiq or 0,
"cae": str(ws.CAE),
"obs": str(ws.Obs),
"reproceso": str(ws.Reproceso),
"fch_venc_cae": ws.Vencimiento,
"err_msg": ws.ErrMsg,
}
for k, v in list(cbt.items()):
print("%s = %s" % (k, v))
depurar_xml(ws.client)
return
f_entrada = f_salida = None
try:
f_entrada = open(entrada, "r")
f_salida = open(salida, "w")
try:
autorizar(ws, f_entrada, f_salida)
except:
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 Exception as e:
print(str(e).encode("ascii", "ignore"))
if DEBUG:
raise
sys.exit(5)
if __name__ == "__main__":
main()