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 cf9be52d
authored
2022-11-29 14:09:26 -0300
by
juan
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Soporte mensajes resepcion y mejor a en manejo fecha
1 parent
5ea36c6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
3 deletions
models/incidencia.py
models/mensaje.py
wizard/generarmensaje.py
models/incidencia.py
View file @
cf9be52
...
...
@@ -27,7 +27,7 @@ class hgt_soporte_incidencia(models.Model):
si_fecha
=
fields
.
Datetime
(
string
=
'Fecha de creación'
,
default
=
datetime
.
now
()
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
default
=
lambda
self
:
datetime
.
now
()
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
)
si_responsable
=
fields
.
Many2one
(
...
...
@@ -298,6 +298,25 @@ class hgt_soporte_incidencia(models.Model):
if
frespuesta
[
"result"
][
"estado"
]
!=
"ok"
:
raise
UserError
(
str
(
frespuesta
))
def
LaikaSoporte
(
self
,
opt
):
incidencia
=
self
.
search
([[
"si_name"
,
"="
,
opt
[
"si_name"
]]])
#print(opt,incidencia)
incidencia
.
estado
=
opt
[
"estado"
]
incidencia
.
horas
=
opt
[
"horas"
]
if
opt
[
"mensaje"
]
==
False
:
return
()
incidencia
.
Generarmensaje
(
opt
[
"mensaje"
],
opt
[
"usuario"
],
opt
[
"fecha"
])
#raise UserError(str(opt))
def
Generarmensaje
(
self
,
texto
,
usuario
,
fecha
):
if
texto
==
False
:
raise
UserError
(
"No puso ningun mensaje"
)
mensaje
=
self
.
env
[
"hgt.soporte_mensaje"
]
.
create
({})
mensaje
.
si_incidencias
=
[
self
.
id
]
mensaje
.
si_mensaje
=
texto
mensaje
.
usuario
=
usuario
mensaje
.
si_mens_fecha
=
fecha
mensaje
.
remoto
=
True
#print(hgt_soporte_incidencia.GenerarToken())
# si_url = fields.Char(string='Url de ticketera')
...
...
models/mensaje.py
View file @
cf9be52
...
...
@@ -22,7 +22,7 @@ class hgt_soporte_mensaje(models.Model):
si_mens_fecha
=
fields
.
Datetime
(
string
=
u'Fecha de envío'
,
default
=
datetime
.
now
()
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
default
=
lambda
self
:
datetime
.
now
()
.
strftime
(
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
)
)
si_interno
=
fields
.
Boolean
(
...
...
wizard/generarmensaje.py
View file @
cf9be52
...
...
@@ -30,7 +30,7 @@ class tpv_generar_nota(models.TransientModel):
self
.
Generarmensajeinterno
()
self
.
mensaje
.
remoto
=
True
Url
=
self
.
incidencia
.
GetUrlBase
()
print
(
self
.
mensaje
)
#
print(self.mensaje)
datos
=
{
'params'
:
{
'token'
:
self
.
incidencia
.
GenerarToken
(),
...
...
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