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.
119 lines
5.5 KiB
119 lines
5.5 KiB
# -*- coding: utf-8 -*-
|
|
###############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Gayathri V(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.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
###############################################################################
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError, ValidationError
|
|
|
|
|
|
class UniversityAttendance(models.Model):
|
|
"""For managing student daily attendance details"""
|
|
_name = 'university.attendance'
|
|
_inherit = ['mail.thread', 'mail.activity.mixin']
|
|
_description = "University Student attendance"
|
|
|
|
name = fields.Char(string="Name", default="New",
|
|
help="Name of the attendance")
|
|
batch_id = fields.Many2one('university.batch', string="Batch",
|
|
required=True,
|
|
help="Select batch for the attendance")
|
|
faculty_id = fields.Many2one(related='batch_id.faculty_id',
|
|
string="Faculty",
|
|
help="Faculty in charge for the batch")
|
|
date = fields.Date(string="Date", default=fields.Date.today, required=True,
|
|
help="Select date of attendance")
|
|
attendance_line_ids = fields.One2many('university.attendance.line',
|
|
'attendance_id',
|
|
string='Attendance Line',
|
|
help="Students attendance "
|
|
"list/attendance line")
|
|
state = fields.Selection([('draft', 'Draft'), ('done', 'Done')],
|
|
default='draft', help="Status of attendance")
|
|
is_all_marked_morning = fields.Boolean(
|
|
string='All students are present in the morning',
|
|
help="Is all student present in the morning")
|
|
is_all_marked_afternoon = fields.Boolean(
|
|
string='All students are present in the afternoon',
|
|
help="Is all student present in the afternoon")
|
|
is_attendance_created = fields.Boolean(string='Attendance Created',
|
|
help="Is Attendance created or not")
|
|
|
|
@api.onchange('batch_id')
|
|
def _onchange_batch_id(self):
|
|
""" Method to clear the attendance line if the batch is changed """
|
|
if self.batch_id:
|
|
self.is_attendance_created = False
|
|
self.attendance_line_ids = False
|
|
|
|
def action_create_attendance_line(self):
|
|
"""Action to create attendance line with students in the batch"""
|
|
if self.search_count(
|
|
[('batch_id', '=', self.batch_id.id), ('date', '=', self.date),
|
|
('state', '=', 'done')]) == 1:
|
|
raise ValidationError(
|
|
_('Attendance for this batch on this date already exists.'))
|
|
self.name = str(self.date)
|
|
if len(self.batch_id.batch_student_ids) < 1:
|
|
raise UserError(_('There are no students in this Batch'))
|
|
for student in self.batch_id.batch_student_ids:
|
|
self.env['university.attendance.line'].create(
|
|
{'name': self.name,
|
|
'attendance_id': self.id,
|
|
'student_id': student.id,
|
|
'batch_id': self.batch_id.id,
|
|
'date': self.date, })
|
|
self.is_attendance_created = True
|
|
|
|
def action_mark_all_present_morning(self):
|
|
"""Action to mark all marked presents of students in the morning"""
|
|
for records in self.attendance_line_ids:
|
|
records.is_present_morning = True
|
|
self.is_all_marked_morning = True
|
|
|
|
def action_un_mark_all_present_morning(self):
|
|
"""Action to unmark all marked presents of students in the morning"""
|
|
for records in self.attendance_line_ids:
|
|
records.is_present_morning = False
|
|
self.is_all_marked_morning = False
|
|
|
|
def action_mark_all_present_afternoon(self):
|
|
"""Action to mark all marked presents of students in the afternoon"""
|
|
for records in self.attendance_line_ids:
|
|
records.is_present_afternoon = True
|
|
self.is_all_marked_afternoon = True
|
|
|
|
def action_un_mark_all_present_afternoon(self):
|
|
"""Action to unmark all marked presents of students in the afternoon"""
|
|
for records in self.attendance_line_ids:
|
|
records.is_present_afternoon = False
|
|
self.is_all_marked_afternoon = False
|
|
|
|
def action_attendance_done(self):
|
|
"""To compute absent of student is half/full day and
|
|
make the attendance to done stage"""
|
|
for records in self.attendance_line_ids:
|
|
if not records.is_present_morning and \
|
|
not records.is_present_afternoon:
|
|
records.full_day_absent = 1
|
|
elif not records.is_present_morning:
|
|
records.half_day_absent = 1
|
|
elif not records.is_present_afternoon:
|
|
records.half_day_absent = 1
|
|
self.state = 'done'
|
|
|