controllers_incide.py 1001 Bytes
from requests.sessions import session
from odoo import http

TOKEN ="""a2354mtrgre3456783edfghoiuhEDSfvwerd-5644-fgdh34ergdf"""

class controlador_incidencias(http.Controller):

    @http.route('/incidencias/crear', auth='public', type='json' , website=False ,csrf=False, methods = ['POST','GET'])
    def index(self, **kw):
        if not kw["token"] == TOKEN:
            return({"resultado":"ALERTA DE SEGURIDAD error autenticacion"})

        inci_model = http.request.env["hgt.incidencias"].sudo()
        incidencia = inci_model.search([('name', '=', kw["name"] )])

        if incidencia: 
            return (True)
        else:
            nva_incidencia = self.crearIncidencia2(inci_model, kw)

        return({"resultado":"OK",
        "argum": kw})

    def crearIncidencia2(self, model, kw):
        nva_inci = model.create({
            'in_fecha': kw['in_fecha'],
            'responsable': kw['responsable'],
            'name': kw['name'],
        })
        
        return(nva_inci)