def __init__(self): logging.basicConfig(filename='/var/log/print-server.log', filemode='w',format='%(asctime)s %(message)s',level=logging.DEBUG) self.impresora = Vmax() self.q = Queue.Queue() t = Thread(target=self.worker) t.daemon = True t.start() logging.info('PosPrintServer inicializado') self.ser = "OK"
from vmax import Vmax import time if __name__ == '__main__': impresora = Vmax() impresora.estado() print "reset" impresora.reset() print "abriendo comprobante" impresora.abrir_devolucion_fiscal() time.sleep(3) impresora.estado() for each in range(10): print 'prueba'+str(each)+" "+str(each*100) impresora.devolucion_articulo('prueba'+str(each),str(each*100)) if each%10==0: time.sleep(1) #impresora.venta_articulo('prueba'+str(each)+'exento',str(each*100+50),impuesto='0') time.sleep(2) print "Subtotal" impresora.subtotal() impresora.pago('Efectivo','0') #impresora.escribir_linea('Gracias por su compra.') #impresora.escribir_linea('Hasta luego.') impresora.cerrar_comprobante()
def __init__(self): self.impresora = Vmax()
class PosPrintServer(object): def __init__(self): self.impresora = Vmax() def bridge(self, env, start_response): print "atendiendo:",env['PATH_INFO'] comando= env['PATH_INFO'][1:].split("___") if comando[0] == 'RESET': print "Enviando comando de RESET" self.impresora.reset() if comando[0] == 'ABRIR1': print "Abriendo comprobante fiscal" self.impresora.abrir_comprobante_fiscal() if comando[0] == 'PRODUCTO': print "Enviando producto" self.impresora.abrir_comprobante_fiscal() self.impresora.venta_articulo(comando[1],comando[2]) if comando[0] == 'SUBTOTAL': print "Enviando Subtotal" self.impresora.subtotal() if comando[0] == 'PAGO': print "Enviando pago" self.impresora.pago(comando[1],comando[2]) if comando[0] == 'CERRAR1': print "Cerrando comprobante" self.impresora.cerrar_comprobante() if comando[0] == 'GAVETA': print "Abriendo gaveta" self.impresora.gaveta() start_response('200 OK', [('Content-Type', 'text/plain')]) return ['OK\r\n'] def run(self): wsgi.server(eventlet.listen(('', 8200)), self.bridge) self.ser.close()
from vmax import Vmax import time if __name__ == '__main__': impresora = Vmax() impresora.estado() print "reset" impresora.reset() print "abriendo comprobante" impresora.abrir_devolucion_fiscal() time.sleep(3) impresora.estado() for each in range(10): print 'prueba' + str(each) + " " + str(each * 100) impresora.devolucion_articulo('prueba' + str(each), str(each * 100)) if each % 10 == 0: time.sleep(1) #impresora.venta_articulo('prueba'+str(each)+'exento',str(each*100+50),impuesto='0') time.sleep(2) print "Subtotal" impresora.subtotal() impresora.pago('Efectivo', '0') #impresora.escribir_linea('Gracias por su compra.') #impresora.escribir_linea('Hasta luego.') impresora.cerrar_comprobante()
class PosPrintServer(object): def __init__(self): logging.basicConfig(filename='/var/log/print-server.log', filemode='w',format='%(asctime)s %(message)s',level=logging.DEBUG) self.impresora = Vmax() self.q = Queue.Queue() t = Thread(target=self.worker) t.daemon = True t.start() logging.info('PosPrintServer inicializado') self.ser = "OK" def worker(self): while True: try: comando = self.q.get() comando = comando.split("___") try: comando[2] = comando[2].split(".")[0] except: pass if comando[0] == 'RESET': logging.info("Enviando comando de RESET") self.impresora.reset() if comando[0] == 'ABRIR1': logging.info("Abriendo comprobante fiscal") self.impresora.abrir_comprobante_fiscal() #num = self.impresora.abrir_comprobante_fiscal() #if num != None: # self.ser = num if comando[0] == 'ABRIR2': logging.info("Abriendo devolucion fiscal") self.impresora.abrir_devolucion_fiscal() if comando[0] == 'PRODUCTO': logging.info("Enviando producto") self.impresora.venta_articulo(comando[1],comando[2]) if comando[0] == 'ANULACION': logging.info("Enviando producto") self.impresora.anulacion_articulo(comando[1],comando[2]) if comando[0] == 'DEVOLUCION': logging.info("Enviando producto a devolver") self.impresora.devolucion_articulo(comando[1],comando[2]) if comando[0] == 'SUBTOTAL': logging.info("Enviando Subtotal") self.impresora.subtotal() if comando[0] == 'PAGO': logging.info("Enviando pago") self.impresora.pago(comando[1],comando[2]) if comando[0] == 'BLANCO': self.impresora.avance_linea() if comando[0] == 'ESCRIBIR': logging.info("ESCRIBIENDO: "+comando[1]) self.impresora.escribir_linea(comando[1]) if comando[0] == 'CERRAR1': logging.info("Cerrando comprobante") tweet = "Felicito a los y las Graduandas del I Cohorte del Diplomado en Saberes Africanos! Viva la Madre Africa!! " self.impresora.avance_linea() self.impresora.escribir_linea("@chavezcandanga:") self.impresora.escribir_linea(tweet[:40]) self.impresora.escribir_linea(tweet[40:80]) self.impresora.escribir_linea(tweet[80:120]) self.impresora.escribir_linea(tweet[120:160]) self.impresora.cerrar_comprobante() if comando[0] == 'GAVETA': logging.info("Abriendo Gaveta") self.impresora.abrir_gaveta() if comando[0] == 'REPORTEX': logging.info("Enviando Reporte X") self.impresora.imprimir_x() if comando[0] == 'REPORTEZ': logging.info("Enviando Reporte Z") self.impresora.imprimir_z() except IOError: logging.warning(comando[0]+' ERROR') self.q.task_done() def bridge(self, env, start_response): logging.info('Procesando'+env['PATH_INFO']) try: self.q.put(env['PATH_INFO'][1:]) start_response('200 OK', [('Content-Type', 'text/plain')]) except: logging.warning('Bridge ERROR processing:'+env['PATH_INFO']) return [str(self.ser)+'\r\n'] def run(self): wsgi.server(eventlet.listen(('', 8200)), self.bridge) self.ser.close()
class PosPrintServer(object): def __init__(self): self.impresora = Vmax() def bridge(self, env, start_response): print "atendiendo:", env['PATH_INFO'] comando = env['PATH_INFO'][1:].split("___") if comando[0] == 'RESET': print "Enviando comando de RESET" self.impresora.reset() if comando[0] == 'ABRIR1': print "Abriendo comprobante fiscal" self.impresora.abrir_comprobante_fiscal() if comando[0] == 'PRODUCTO': print "Enviando producto" self.impresora.abrir_comprobante_fiscal() self.impresora.venta_articulo(comando[1], comando[2]) if comando[0] == 'SUBTOTAL': print "Enviando Subtotal" self.impresora.subtotal() if comando[0] == 'PAGO': print "Enviando pago" self.impresora.pago(comando[1], comando[2]) if comando[0] == 'CERRAR1': print "Cerrando comprobante" self.impresora.cerrar_comprobante() if comando[0] == 'GAVETA': print "Abriendo gaveta" self.impresora.gaveta() start_response('200 OK', [('Content-Type', 'text/plain')]) return ['OK\r\n'] def run(self): wsgi.server(eventlet.listen(('', 8200)), self.bridge) self.ser.close()