forked from reingart/pyfiscalprinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
controlador.py
executable file
·326 lines (283 loc) · 13 KB
/
controlador.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
#!/usr/bin/python
# -*- coding: utf8 -*-
# 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.
"Interfaz de alto nivel para automatización de controladores fiscales"
__author__ = "Mariano Reingart <[email protected]>"
__copyright__ = "Copyright (C) 2014 Mariano Reingart"
__license__ = "GPL 3.0"
__version__ = "1.02a"
CONFIG_FILE = "fiscal.ini"
DEBUG = True
LICENCIA = u"""
Interfaz para imprimir Facturas y Tickets en Controladores Fiscales
Copyright (C) 2014 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/PyFiscalPrinter
"""
AYUDA=u"""
Opciones:
--ayuda: este mensaje
--licencia: muestra la licencia del programa
--debug: modo depuración (detalla y confirma las operaciones)
--ult: consulta y devuelve el último número de comprobante impreso
--prueba: genera y autoriza una factura de prueba (no usar en producción!)
--dbus: inicia el servicio y exporta el componente (Linux)
--register: registra el componente (Windows)
Ver fiscal.ini para parámetros de configuración "
"""
import datetime
import decimal
import os
import sys
import traceback
from cStringIO import StringIO
from decimal import Decimal
from functools import wraps
# Drivers:
from epsonFiscal import EpsonPrinter
from hasarPrinter import HasarPrinter
try:
import dbus, dbus.mainloop.glib
import gobject
from dbus.service import Object, method
except ImportError:
dbus = None
Object = object
method = lambda *args, **kwargs: (lambda func: func) # decorator
def inicializar_y_capturar_excepciones(func):
"Decorador para inicializar y capturar errores"
@wraps(func)
def capturar_errores_wrapper(self, *args, **kwargs):
try:
# inicializo (limpio variables)
self.Traceback = self.Excepcion = ""
return func(self, *args, **kwargs)
except Exception, e:
ex = traceback.format_exception( sys.exc_type, sys.exc_value, sys.exc_traceback)
self.Traceback = ''.join(ex)
self.Excepcion = traceback.format_exception_only( sys.exc_type, sys.exc_value)[0]
if self.LanzarExcepciones:
raise
finally:
pass
return capturar_errores_wrapper
class PyFiscalPrinter(Object):
"Interfaz unificada para imprimir facturas en controladores fiscales"
_public_methods_ = ['Conectar',
'AbrirComprobante', 'CerrarComprobante',
'ImprimirItem', 'ImprimirPago',
'ConsultarUltNro',
]
_public_attrs_ = ['Version', 'Excepcion', 'Traceback', 'LanzarExcepciones',
]
_reg_progid_ = "PyFiscalPrinter"
_reg_clsid_ = "{4E214B11-424E-40F7-9869-680C9520125E}"
DBUS_IFACE = 'ar.com.pyfiscalprinter.Interface'
def __init__(self, session_bus=None, object_path=None):
if dbus:
Object.__init__(self, session_bus, object_path)
self.Version = __version__
self.factura = None
self.Exception = self.Traceback = ""
self.LanzarExcepciones = False
self.factura = {}
self.printer = None
self.log = StringIO()
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='ssss', out_signature='b')
def Conectar(self, marca="epson", modelo="320", puerto="COM1", equipo=None):
"Iniciar la comunicación con la instancia del controlador fiscal"
if marca == 'epson':
Printer = EpsonPrinter
elif marca == 'hasar':
Printer = HasarPrinter
dummy = puerto == "dummy"
# instanciar la impresora fiscal
if not equipo:
# conexión por puerto serie
printer = Printer(deviceFile=puerto, model=modelo, dummy=dummy)
else:
# conexion por proxy TCP/IP
printer = Printer(model=modelo, host=equipo, port=int(puerto), dummy=dummy)
self.printer = printer
self.cbte_fiscal_map = {
1: 'FA', 2: 'NDA', 3: 'NCA',
6: 'FB', 7: 'NDB', 8: 'NCB',
11: 'FC', 12: 'NDC', 13: 'NDC',
81: 'FA', 82: 'FB', 83: 'T', # tiques
}
self.pos_fiscal_map = {
1: printer.IVA_TYPE_RESPONSABLE_INSCRIPTO,
2: printer.IVA_TYPE_RESPONSABLE_NO_INSCRIPTO,
3: printer.IVA_TYPE_NO_RESPONSABLE,
4: printer.IVA_TYPE_EXENTO,
5: printer.IVA_TYPE_CONSUMIDOR_FINAL,
6: printer.IVA_TYPE_RESPONSABLE_MONOTRIBUTO,
7: printer.IVA_TYPE_NO_CATEGORIZADO,
12: printer.IVA_TYPE_PEQUENIO_CONTRIBUYENTE_EVENTUAL,
13: printer.IVA_TYPE_MONOTRIBUTISTA_SOCIAL,
14: printer.IVA_TYPE_PEQUENIO_CONTRIBUYENTE_EVENTUAL_SOCIAL,
}
self.doc_fiscal_map = {
96: printer.DOC_TYPE_DNI,
80: printer.DOC_TYPE_CUIT,
89: printer.DOC_TYPE_LIBRETA_ENROLAMIENTO,
90: printer.DOC_TYPE_LIBRETA_CIVICA,
00: printer.DOC_TYPE_CEDULA,
94: printer.DOC_TYPE_PASAPORTE,
99: printer.DOC_TYPE_SIN_CALIFICADOR,
}
return True
def DebugLog(self):
"Devolver bitácora de depuración"
msg = self.log.getvalue()
return msg
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='iiissss', out_signature='b')
def AbrirComprobante(self,
tipo_cbte=83, # tique
tipo_responsable=5, # consumidor final
tipo_doc=99, nro_doc=0, # sin especificar
nombre_cliente="", domicilio_cliente="",
referencia=None, # comprobante original (ND/NC)
**kwargs
):
"Creo un objeto factura (internamente)"
printer = self.printer
# mapear el tipo de comprobante según RG1785/04:
cbte_fiscal = self.cbte_fiscal_map[int(tipo_cbte)]
letra_cbte = cbte_fiscal[-1] if len(cbte_fiscal) > 1 else None
# mapear el tipo de cliente (posicion/categoria) según RG1785/04:
pos_fiscal = self.pos_fiscal_map[int(tipo_responsable)]
# mapear el numero de documento según RG1361
doc_fiscal = self.doc_fiscal_map[int(tipo_doc)]
# cancelar y volver a un estado conocido
printer.cancelAnyDocument()
# enviar los comandos de apertura de comprobante fiscal:
if cbte_fiscal.startswith('T'):
if letra_cbte:
ret = printer.openTicket(letra_cbte)
else:
ret = printer.openTicket()
elif cbte_fiscal.startswith("F"):
ret = printer.openBillTicket(letra_cbte, nombre_cliente, domicilio_cliente,
nro_doc, doc_fiscal, pos_fiscal)
elif cbte_fiscal.startswith("ND"):
ret = printer.openDebitNoteTicket(letra_cbte, nombre_cliente,
domicilio_cliente, nro_doc, doc_fiscal,
pos_fiscal)
elif cbte_fiscal.startswith("NC"):
ret = printer.openBillCreditTicket(letra_cbte, nombre_cliente,
domicilio_cliente, nro_doc, doc_fiscal,
pos_fiscal, referencia)
return True
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='vvvv', out_signature='b')
def ImprimirItem(self, ds, qty, importe, alic_iva=21.):
"Envia un item (descripcion, cantidad, etc.) a una factura"
##ds = unicode(ds, "latin1") # convierto a latin1
# Nota: no se calcula neto, iva, etc (deben venir calculados!)
discount = discountDescription = None
self.printer.addItem(ds, float(qty), float(importe), float(alic_iva),
discount, discountDescription)
return True
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='vv', out_signature='b')
def ImprimirPago(self, ds, importe):
"Imprime una linea con la forma de pago y monto"
self.printer.addPayment(ds, float(importe))
return True
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='', out_signature='b')
def CerrarComprobante(self):
"Envia el comando para cerrar un comprobante Fiscal"
self.printer.closeDocument()
return True
@inicializar_y_capturar_excepciones
@method(DBUS_IFACE, in_signature='v', out_signature='i')
def ConsultarUltNro(self, tipo_cbte):
"Devuelve el último número de comprobante"
# mapear el numero de documento según RG1361
cbte_fiscal = self.cbte_fiscal_map[int(tipo_cbte)]
letra_cbte = cbte_fiscal[-1] if len(cbte_fiscal) > 1 else None
return self.printer.getLastNumber(letra_cbte)
if __name__ == '__main__':
if "--register" in sys.argv or "--unregister" in sys.argv:
import win32com.server.register
win32com.server.register.UseCommandLine(PyFiscalPrinter)
elif "--dbus":
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
session_bus = dbus.SessionBus()
name = dbus.service.BusName("ar.com.pyfiscalprinter.Service", session_bus)
object = PyFiscalPrinter(session_bus, '/ar/com/pyfiscalprinter/Object')
mainloop = gobject.MainLoop()
print "Running PyFiscalPrinter service."
mainloop.run()
else:
from ConfigParser import SafeConfigParser
DEBUG = '--debug' in sys.argv
# leeo configuración (primer argumento o rece.ini por defecto)
if len(sys.argv)>1 and not sys.argv[1].startswith("--"):
CONFIG_FILE = sys.argv.pop(1)
if DEBUG: print "CONFIG_FILE:", CONFIG_FILE
config = SafeConfigParser()
config.read(CONFIG_FILE)
if config.has_section('CONTROLADOR'):
conf = dict(config.items('CONTROLADOR'))
else:
conf = {}
if '--ayuda' in sys.argv:
print AYUDA
sys.exit(0)
if '--licencia' in sys.argv:
print LICENCIA
sys.exit(0)
controlador = ControladorFiscal()
controlador.LanzarExcepciones = True
marca = conf.get("marca", "epson")
modelo = conf.get("modelo", "epsonlx300+")
puerto = conf.get("puerto", "COM2")
equipo = conf.get("equipo", "")
controlador.Conectar(marca, modelo, puerto, equipo)
if '--ult' in sys.argv:
print "Consultar ultimo numero:"
i = sys.argv.index("--ult")
if i+1 < len(sys.argv):
tipo_cbte = int(sys.argv[i+1])
else:
tipo_cbte = int(raw_input("Tipo de comprobante: ") or 83)
ult = controlador.ConsultarUltNro(tipo_cbte)
print "Ultimo Nro de Cbte:", ult
if '--prueba' in sys.argv:
# creo una factura de ejemplo
tipo_cbte = 6
tipo_doc = 80; nro_doc = "20267565393"
nombre_cliente = 'Joao Da Silva'
domicilio_cliente = 'Rua 76 km 34.5 Alagoas'
tipo_responsable = 5
referencia = None
ok = controlador.AbrirComprobante(tipo_cbte, tipo_responsable,
tipo_doc, nro_doc,
nombre_cliente, domicilio_cliente,
referencia)
codigo = "P0001"
ds = "Descripcion del producto P0001"
qty = 1.00
precio = 100.00
bonif = 0.00
alic_iva = 21.00
importe = 121.00
ok = controlador.ImprimirItem(ds, qty, importe, alic_iva)
ok = controlador.ImprimirPago("efectivo", importe)
ok = controlador.CerrarComprobante()