forked from Mapan/odoo17e
12 lines
334 B
Python
12 lines
334 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Alarm(models.Model):
|
|
_inherit = "calendar.alarm"
|
|
|
|
default_for_new_appointment_type = fields.Boolean(
|
|
"New Appointments Default", help="Use as default for new Appointment Types")
|