Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Maria Agustina
/
hgt_soporte
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit f9e4204e
authored
2023-05-14 13:34:04 -0300
by
Juan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Se agrega Aviso de mensaje en incidencia
1 parent
8d4855db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
1 deletions
controllers/controller_mensaje.py
models/incidencia.py
controllers/controller_mensaje.py
View file @
f9e4204
...
...
@@ -23,9 +23,33 @@ class controlador_soporte_mensajes(http.Controller):
lista
.
append
(
nvo_mensaje
.
id
)
incidencia
.
si_mensajes
=
lista
incidencia
.
registrar_mensaje
(
nvo_mensaje
)
#self.NotificarMensajeNuevo(incidencia)
return
(
"Exito"
)
def
NotificarMensajeNuevo
(
self
,
incidencia
):
print
(
"Notificador de incidencia"
)
try
:
notif_push
=
incidencias
.
env
[
'ext.notificador'
]
.
sudo
()
except
Exception
as
e
:
print
(
e
)
return
()
try
:
self
.
_NotificarMensajeNuevo
(
incidencia
,
notif_push
)
except
Exception
as
e
:
print
(
e
)
def
_NotificarMensajeNuevo
(
self
,
incidencia
,
notif_push
):
uids
=
[]
for
mensaje
in
incidencia
.
si_mensajes
:
print
(
mensaje
.
si_creador
.
id
)
if
not
mensaje
.
si_creador
.
id
in
uids
:
uids
.
append
(
mensaje
.
si_creador
.
id
)
msm
=
f
"""Se a recivido un mensaje en el incidente {incidencia.si_descripcion}"""
notif_push
.
GenerarMensajeMasivo
(
mensaje
=
msm
,
titulo
=
""
,
users
=
uids
)
def
crearMensaje
(
self
,
model
,
incidencia
,
kw
):
nvo_mens
=
model
.
create
({
'si_mensaje'
:
kw
[
'si_mensaje'
],
...
...
models/incidencia.py
View file @
f9e4204
...
...
@@ -372,6 +372,7 @@ class hgt_soporte_incidencia(models.Model):
if
opt
[
"mensaje"
]
==
False
:
return
()
incidencia
.
Generarmensaje
(
opt
[
"mensaje"
],
opt
[
"usuario"
],
opt
[
"fecha"
])
self
.
NotificarMensajeNuevo
(
incidencia
)
#raise UserError(str(opt))
def
Generarmensaje
(
self
,
texto
,
usuario
,
fecha
):
...
...
@@ -467,6 +468,28 @@ class hgt_soporte_incidencia(models.Model):
def
ActualizarVista
(
self
):
pass
def
NotificarMensajeNuevo
(
self
,
incidencia
):
print
(
"Notificador de incidencia"
)
try
:
notif_push
=
incidencia
.
env
[
'ext.notificador'
]
.
sudo
()
except
Exception
as
e
:
return
()
try
:
self
.
_NotificarMensajeNuevo
(
incidencia
,
notif_push
)
except
Exception
as
e
:
print
(
e
)
def
_NotificarMensajeNuevo
(
self
,
incidencia
,
notif_push
):
uids
=
[]
#print(incidencia.si_mensajes)
for
mensaje
in
incidencia
.
si_mensajes
:
#print(mensaje.si_creador.id)
if
not
mensaje
.
si_creador
.
id
in
uids
:
uids
.
append
(
mensaje
.
si_creador
.
id
)
msm
=
f
"""Se a recivido un mensaje en el incidente {incidencia.si_descripcion}"""
pak
=
notif_push
.
GenerarMensajeMasivo
(
mensaje
=
msm
,
titulo
=
""
,
users
=
uids
)
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment