Commit 06531f70 by Juan

Merge branch 'master' of git.anacsoft.com:matu/hgt_soporte

2 parents cf064ca4 afbb5171
......@@ -407,6 +407,16 @@ class hgt_soporte_incidencia(models.Model):
return()
incidencia.Generarmensaje(opt["mensaje"],opt["usuario"],opt["fecha"])
self.NotificarMensajeNuevo(incidencia)
self.EnviarAvisoTelegram()
def EnviarAvisoTelegram(self):
model = self.env["hgt.telegram"].sudo()
try:
model = NotificarUsuario(self,
f"Se ha actualizado la incidencia {self.name}",
self.si_responsable.id)
except Exception as E:
print(E)
#raise UserError(str(opt))
def Generarmensaje(self,texto,usuario,fecha):
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!