appointment.slot :: Appointment: Time Slot

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

  • allday [boolean]: All day

  • appointment_type_id [many2one: appointment.type]: Appointment Type

  • create_date [readonlydatetime]: Created on

  • create_uid [readonlymany2one: res.users]: Created by

  • display_name [readonlychar]: Display Name

  • duration [readonlyfloat]: Duration

  • end_datetime [datetime]: To

  • end_hour [requiredfloat]: Ending Hour

  • id [readonlyinteger]: ID

  • restrict_to_resource_ids [many2many: appointment.resource]: Restrict to Resources

  • restrict_to_user_ids [many2many: res.users]: Restrict to Users

  • schedule_based_on [readonlyselection]: Availability on

  • slot_type [readonlyrequiredselection]: Slot type

  • start_datetime [datetime]: From

  • start_hour [requiredfloat]: Starting Hour

  • weekday [requiredselection]: Week Day

  • write_date [readonlydatetime]: Last Updated on

  • write_uid [readonlymany2one: res.users]: Last Updated by