Exemplo n.º 1
0
    def on_btnImprimirFac_clicked(self, widget):
        try:

            impresion.factura(datosfactura)
        except:
            variables.vendialogfactura.show()
            print('No sale el modulo de impresion')
Exemplo n.º 2
0
    def on_btnPrintFac_clicked(self, widget):
        try:

            impresion.factura()

        except Exception as e:
            print('Error evento impresion', e)
Exemplo n.º 3
0
 def on_btnImprimir_clicked(self, widget):
     """
     Evento que lanza la impresion de la factura de la reserva
     :return: Void
     """
     try:
         impresion.factura(datosfactura)
     except Exception as e:
         print(e)
Exemplo n.º 4
0
 def on_botonImprimirFactura_clicked(self, widget):
     '''
     Genera la factura de la reserva seleccionada.
         :return: void
     '''
     try:
         impresion.factura(variables.factura)
     except:
         print('Error en on_botonImprimirFactura_clicked')
Exemplo n.º 5
0
    def on_btnImprimir_clicked(self, widget):
        '''
        Se encarga de llamar a imprimir la factura
        @param widget:
        @return:
        '''

        try:
            impresion.factura(datosfactura)
        except:
            print('No lanza el pdf')
Exemplo n.º 6
0
    def on_btnPrintfac_clicked(self, widget):
        """
        Llama a un metodo para imprimir la factura.

        :param widget:
        :return: void

        """
        try:
            impresion.factura(datosfactura)
        except Exception as e:
            print(e)
Exemplo n.º 7
0
 def on_btnPrintfac_clicked(self, widget):
     try:
         impresion.factura(datosfactura)
     except Exception as e:
         print(e)
Exemplo n.º 8
0
 def mostrar(self, widget):
     impresion.factura()