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

Module: Test ORM

Entity: test_orm.precompute

Compute Method: _compute_names

View 19.0
Inputs Method Outputs
  • name
+ for record in self:
+             record.lower = (record.name or "").lower()
+             record.upper = (record.name or "").upper()
  • lower
  • upper

Back to entity