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

Module: Project Risk

Entity: project.risk

Compute Method: _compute_rating

Inputs Method Outputs
for risk in self:
            risk.rating = False
            if risk.probability and risk.impact:
                risk.rating = str(int(risk.probability) + int(risk.impact))

Back to entity