Odoo Mindscape. Understand Odoo faster. Explore modules, fields, dependencies and version differences in one place instead of digging through the source code.

Module: Endpoint route handler

Entity: endpoint.route.handler

Compute Method: _compute_endpoint_hash

Inputs Method Outputs
values = [
            {fname: rec[fname] for fname in self._routing_impacting_fields()}
            for rec in self
        ]
for rec, vals in zip(self, values, strict=True):
            vals.pop("id", None)
            rec.endpoint_hash = hash(tuple(vals.values()))

Back to entity