mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 12:32:04 +02:00
19.0 vanilla
This commit is contained in:
parent
0a7ae8db93
commit
991d2234ca
416 changed files with 646602 additions and 300844 deletions
21
odoo-bringout-oca-ocb-base/odoo/api/__init__.py
Normal file
21
odoo-bringout-oca-ocb-base/odoo/api/__init__.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# ruff: noqa: F401
|
||||
# Exports features of the ORM to developers.
|
||||
# This is a `__init__.py` file to avoid merge conflicts on `odoo/api.py`.
|
||||
from odoo.orm.identifiers import NewId
|
||||
from odoo.orm.decorators import (
|
||||
autovacuum,
|
||||
constrains,
|
||||
depends,
|
||||
depends_context,
|
||||
deprecated,
|
||||
model,
|
||||
model_create_multi,
|
||||
onchange,
|
||||
ondelete,
|
||||
private,
|
||||
readonly,
|
||||
)
|
||||
from odoo.orm.environments import Environment
|
||||
from odoo.orm.utils import SUPERUSER_ID
|
||||
|
||||
from odoo.orm.types import ContextType, DomainType, IdType, Self, ValuesType
|
||||
Loading…
Add table
Add a link
Reference in a new issue