def on_btnImprimirFac_clicked(self, widget): try: impresion.factura(datosfactura) except: variables.vendialogfactura.show() print('No sale el modulo de impresion')
def on_btnPrintFac_clicked(self, widget): try: impresion.factura() except Exception as e: print('Error evento impresion', e)
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)
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')
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)
def on_btnPrintfac_clicked(self, widget): try: impresion.factura(datosfactura) except Exception as e: print(e)
def mostrar(self, widget): impresion.factura()