1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/appointment/models/calendar_alarm.py
2024-12-10 09:04:09 +07:00

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")