mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 14:52:07 +02:00
19.0 vanilla
This commit is contained in:
parent
0a7ae8db93
commit
991d2234ca
416 changed files with 646602 additions and 300844 deletions
22
odoo-bringout-oca-ocb-base/odoo/fields/__init__.py
Normal file
22
odoo-bringout-oca-ocb-base/odoo/fields/__init__.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# ruff: noqa: F401
|
||||
# Exports features of the ORM to developers.
|
||||
# This is a `__init__.py` file to avoid merge conflicts on `odoo/fields.py`.
|
||||
|
||||
from odoo.orm.fields import Field
|
||||
|
||||
from odoo.orm.fields_misc import Id, Json, Boolean
|
||||
from odoo.orm.fields_numeric import Integer, Float, Monetary
|
||||
from odoo.orm.fields_textual import Char, Text, Html
|
||||
from odoo.orm.fields_selection import Selection
|
||||
from odoo.orm.fields_temporal import Date, Datetime
|
||||
|
||||
from odoo.orm.fields_relational import Many2one, Many2many, One2many
|
||||
from odoo.orm.fields_reference import Many2oneReference, Reference
|
||||
|
||||
from odoo.orm.fields_properties import Properties, PropertiesDefinition
|
||||
from odoo.orm.fields_binary import Binary, Image
|
||||
|
||||
from odoo.orm.commands import Command
|
||||
from odoo.orm.domains import Domain
|
||||
from odoo.orm.models import NO_ACCESS
|
||||
from odoo.orm.utils import parse_field_expr
|
||||
Loading…
Add table
Add a link
Reference in a new issue