You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.3 KiB
54 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Ranjith R(odoo@cybrosys.com)
|
|
#
|
|
# You can modify it under the terms of the GNU AFFERO
|
|
# GENERAL PUBLIC LICENSE (AGPL v3), Version 3.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
# (AGPL v3) along with this program.
|
|
|
|
###############################################################################
|
|
from odoo import fields, models
|
|
|
|
|
|
class CalendarChecklistLines(models.Model):
|
|
""" This class is used to store checklist items associated with calendar
|
|
events. Each checklist item can be marked as complete or canceled,
|
|
allowing users to track tasks or actions related to specific calendar
|
|
events."""
|
|
_name = 'calendar.checklist.lines'
|
|
_description = 'Checklists lines'
|
|
_order = "sequence asc"
|
|
|
|
event_id = fields.Many2one(comodel_name='calendar.event', string="Event",
|
|
required=True, ondelete='cascade',
|
|
copy=False, index=True,
|
|
help='Each record in this model can be linked '
|
|
'to a single calendar event record.')
|
|
sequence = fields.Integer(string='Sequence',
|
|
help='Used to order checklists.')
|
|
checklist_id = fields.Many2one(comodel_name='meeting.checklist',
|
|
string='Checklist',
|
|
help='Checklist for the calendar event.')
|
|
stage = fields.Selection(
|
|
selection=[('new', 'New'), ('completed', 'Completed'),
|
|
('canceled', 'Canceled')], string='Stage', default='new',
|
|
readonly='True', help='State of checklist.')
|
|
|
|
def action_complete(self):
|
|
"""Set the checklist's status to 'completed'."""
|
|
self.stage = 'completed'
|
|
|
|
def action_cancel(self):
|
|
"""Set the checklist's status to 'cancelled'."""
|
|
self.stage = 'canceled'
|
|
|