def enviarCodigos(self): hacerCodigos(self.informacionVenta) try: enviarCorreo("CODIGO",self.informacionCliente[8],None,None) self.UIv.enableBTcorreo(False) self.UIv.throwMsgTerminado() except Exception as e: self.UIv.enableBTcorreo(True) print(e) self.UIv.throwMsgErrorCorreo()
def enviarFactura(self): hacerCodigos(self.informacionVenta) pathArchivo = "Facturas/" + self.informacionCliente[3] + ".pdf" try: enviarCorreo("FACTURA",self.informacionCliente[8], pathArchivo,None) self.UIv.enableBTfacturaCorreo(False) self.UIv.throwMsgTerminado() except: self.UIv.enableBTfacturaCorreo(True) self.UIv.throwMsgErrorCorreo()
def notificarIngreso(self): enviarCorreo("NOTIF_INGRESO", CORREO, None, self.usuario)
def notificarCompra(self): enviarCorreo('NOTIF_COMPRA', CORREO, None, None)
def notificarVenta(self): enviarCorreo("NOTIF_VENTA", CORREO, None, None)