incidencia.py
6.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# -*- coding: utf-8 -*-
from odoo.exceptions import UserError
from odoo import models, fields, api
import datetime
from datetime import datetime
import requests, json, random
headers = {'Content-Type': 'application/json'}
TokensValidos = [
"dadsaf.tghrth,tre433325456,34fgevdsñQWEERFcwqe445VSDasfGrew4vsdfgljk456gf4we8wfg4g4e8r4",
"retbgv,opervbtolsdfhgtr,wfrrwegf,te,hthrjyqwwqefwer57e74fwtgreñloewwefcd,{sdafsdasdffw6",
"asdASFefcECWÑlfweñ324dcfwcfdwefcñfdwqecwedfñfc43fd.dfqwe,dfweqf3cvbtr.LDSFsdfsaewfvresf",
]
HgtUrlBase = """https://validacion.hgtsa.com.ar/"""
class hgt_soporte_incidencia(models.Model):
_name = 'hgt.soporte_incidencia'
_order = "id desc"
_rec_name = "si_name"
#si_numero = fields.Char(string='Numero de ticket')
si_cerrada = fields.Boolean(
string=u'Cerrada',
default=False,
)
si_fecha = fields.Datetime(
string = 'Fecha de creación',
default=datetime.now().strftime('%Y-%m-%d %H:%M:%S')
)
si_responsable = fields.Many2one(
string = 'Responsable',
comodel_name = 'res.users',
ondelete = 'set null',
default = lambda self: self.env.user.id
)
si_name = fields.Char(
string=u'Codigo Insidencia',
readonly=True
)
si_descripcion = fields.Text(
string=u'Descripción',
required=True
)
si_estado = fields.Char(
string="Estado",
)
si_responsabilidad = fields.Selection(
string=u'Responsabilidad',
selection=[('pro', 'Propia'), ('ter', 'Tercero'), ('cli', 'Cliente'), ('cat', 'Catástrofe')]
)
si_historico_mensajes = fields.Text(string='Mensajes')
si_texto_mensaje = fields.Char(string='Mensaje')
si_si_interno = fields.Boolean(
string="Nota Interna?",
default=False
)
si_mensajes = fields.Many2many('hgt.soporte_mensaje', string=u'Mensajes',
relation='hgt_soporte_incidencia_mensaje_rel',
column1='hgt_soporte_incidencia_id',
column2='hgt_soporte_mensaje_id')
si_id_in = fields.Char(
string=u'Id Incidencia',
)
subida = fields.Boolean(
string="Subida a Incidencias?",
default=False
)
estado = fields.Selection(string='Estado', selection=[
('borrador', 'Borrador'),
('abierta', 'Abierta'),
('proceso', 'En Proceso'),
('cerrada', 'Cerrada'),
],
required=True,
default="borrador",
readonly=True)
def registrar_mensaje(self, mens):
text = mens.si_mensaje
envia = mens.si_creador
envia = envia.name
fecha = mens.si_mens_fecha
text_orig = self.si_historico_mensajes
if text_orig:
texto_nuevo = """\n{} - {} \n\n{}\n\n ______________________________________________________\n""".format(fecha,envia,text)
Texto = """{}\n{}""".format(texto_nuevo,text_orig)
self.si_historico_mensajes = Texto
return(True)
else:
texto_nuevo = """\n{} - {} \n\n{}\n\n ______________________________________________________\n""".format(fecha,envia,text)
Texto = """{}""".format(texto_nuevo)
self.si_historico_mensajes = Texto
return(True)
def enviar_mensaje(self, mens):
#funcion para mandar el mensaje al modulo de incidencias
datos = {
'params': { 'token':"""a2354mtrgrerxswertyhj76543edfghoiuhEDSfvwerd-5644-fgdh34ergdf""",
'in_mensaje': mens.si_mensaje,
'in_creador_nombre': mens.si_creador.name,
'in_mens_fecha': mens.si_mens_fecha,
'in_id_si': self.id,
'in_fecha': self.si_fecha,
'name': self.si_name,
'descripcion': self.si_descripcion,
}
}
datos_json = json.dumps(datos)
URL = self.env['ir.config_parameter'].sudo().search([('key','=','web.base.url')])
URL = str(URL.value)
f = requests.post(URL+'/incidencia/mensaje', data=datos_json, headers=headers)
frespuesta = f.json()
#print(frespuesta)
def enviarIncidencia(self):
#funcion para la creacion de incidencias en modulo incidencias
self.estado = "abierta"
self.subida = True
URL = self.env['ir.config_parameter'].sudo().search([('key','=','web.base.url')])
URL_local = str(URL.value)
database = self.env.cr.dbname
datos = {
'params': { 'token':self.GenerarToken(),
'si_fecha': self.si_fecha,
'si_name': self.si_name,
'si_descripcion': self.si_descripcion,
'in_id_si': self.id,
'cliente_URL': URL_local,
'database': database
}
}
datos_json = json.dumps(datos)
#print(datos_json)
f = requests.post(f"{HgtUrlBase}soporteIncidencias/crear", data=datos_json, headers=headers)
frespuesta = f.json()
if frespuesta["result"]["estado"] != "ok":
raise UserError(str(frespuesta))
#en frespuesta tengo el id de la incidencia creada en el otro modulo
#self.si_id_in = frespuesta
#("entro a enviar incidencia y ahora el valor de ella es " + str(self.subida))
#print(frespuesta)
def GenerarToken(self):
return(random.choice(TokensValidos))
def ChequearToken(self,token):
return(token in TokensValidos)
@api.model
def create(self, values):
rta = super(hgt_soporte_incidencia, self).create(values)
empresa = self.env['res.company']._company_default_get()
rta.si_name = f"{empresa.display_name} {str(rta.id).zfill(5)}"
return(rta)
def AgregarMensaje(self):
msj = self.env['soporte.mensaje_wiz'].create({"incidencia":self.id})
return {
'name': "Mensaje",
'type': 'ir.actions.act_window',
'res_model': 'soporte.mensaje_wiz',
'view_mode': 'form',
'view_type': 'form',
'res_id': msj.id,
'target': 'new',
}
#print(hgt_soporte_incidencia.GenerarToken())
# si_url = fields.Char(string='Url de ticketera')
# _sql_constraints = [('id_ost_uniq', 'unique (id_ost)', 'Id Ticket must be unique.')]
# si_id_ost = fields.Integer(string='Id osticket')
# si_ost_cliente = fields.Char(string='Ost cliente')
# si_ost_asunto = fields.Char(string='Ost asunto')
# si_ost_mail = fields.Char(string='Ost mail')
# si_ost_telefeno = fields.Char(string='Ost telefono')
#forma de adjuntar queda pendiente