mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-23 01:12:00 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
4
odoo-bringout-oca-ocb-base/odoo/osv/__init__.py
Normal file
4
odoo-bringout-oca-ocb-base/odoo/osv/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import osv
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
1166
odoo-bringout-oca-ocb-base/odoo/osv/expression.py
Normal file
1166
odoo-bringout-oca-ocb-base/odoo/osv/expression.py
Normal file
File diff suppressed because it is too large
Load diff
13
odoo-bringout-oca-ocb-base/odoo/osv/osv.py
Normal file
13
odoo-bringout-oca-ocb-base/odoo/osv/osv.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from ..exceptions import except_orm
|
||||
from ..models import Model, TransientModel, AbstractModel
|
||||
|
||||
# Deprecated, kept for backward compatibility.
|
||||
except_osv = except_orm
|
||||
|
||||
# Deprecated, kept for backward compatibility.
|
||||
osv = Model
|
||||
osv_memory = TransientModel
|
||||
osv_abstract = AbstractModel # ;-)
|
||||
Loading…
Add table
Add a link
Reference in a new issue