Exemple #1
0
    def on_btnImprimirFac_clicked(self, widget):
        try:

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

            impresion.factura()

        except Exception as e:
            print('Error evento impresion', e)
Exemple #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)
Exemple #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')
    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')
Exemple #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)
Exemple #7
0
 def on_btnPrintfac_clicked(self, widget):
     try:
         impresion.factura(datosfactura)
     except Exception as e:
         print(e)
Exemple #8
0
 def mostrar(self, widget):
     impresion.factura()