Main super-class for regular database-persisted Odoo models.
Odoo models are created by inheriting from this class::
class user(Model):
...
The system will later instantiate the class once per database (on
which the class' module is installed).
Fields
company_id [readonly; required; many2one: res.company]:
Company
create_date [readonly; datetime]:
Created on
create_uid [readonly; many2one: res.users]:
Created by
display_name [readonly; char]:
Display Name
id [readonly; integer]:
ID
last_generated_end_datetime [readonly; datetime]:
Last Generated End Datetime
repeat_interval [required; integer]:
Repeat Every
repeat_number [integer]:
Repetitions
repeat_type [selection]:
Weeks
repeat_unit [required; selection]:
Repeat Unit
repeat_until [datetime]:
Repeat Until
slot_ids [one2many: planning.slot]:
Related Planning Entries
write_date [readonly; datetime]:
Last Updated on
write_uid [readonly; many2one: res.users]:
Last Updated by