Coverage for adhoc-cicd-odoo-odoo / odoo / fields / __init__.py: 100%
14 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 18:22 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 18:22 +0000
1# ruff: noqa: F401
2# Exports features of the ORM to developers.
3# This is a `__init__.py` file to avoid merge conflicts on `odoo/fields.py`.
5from odoo.orm.fields import Field
7from odoo.orm.fields_misc import Id, Json, Boolean
8from odoo.orm.fields_numeric import Integer, Float, Monetary
9from odoo.orm.fields_textual import Char, Text, Html
10from odoo.orm.fields_selection import Selection
11from odoo.orm.fields_temporal import Date, Datetime
13from odoo.orm.fields_relational import Many2one, Many2many, One2many
14from odoo.orm.fields_reference import Many2oneReference, Reference
16from odoo.orm.fields_properties import Properties, PropertiesDefinition
17from odoo.orm.fields_binary import Binary, Image
19from odoo.orm.commands import Command
20from odoo.orm.domains import Domain
21from odoo.orm.models import NO_ACCESS
22from odoo.orm.utils import parse_field_expr