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.
65 lines
3.1 KiB
65 lines
3.1 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# You can modify it under the terms of the GNU LESSER
|
|
# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
|
|
#
|
|
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
|
|
# (LGPL v3) along with this program.
|
|
# If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import api, fields, models
|
|
|
|
|
|
class HrPayslip(models.Model):
|
|
"""Class for the inherited model hr_payslip"""
|
|
_inherit = 'hr.payslip'
|
|
|
|
total_hours = fields.Float(string='Total Hours',
|
|
compute='_compute_total_hours',
|
|
help='Total worked hours of the employee in the'
|
|
' selected period of time.', digits=(16, 4))
|
|
hour_based_salary = fields.Float(string='Hour Based Salary',
|
|
help='Salary based on the worked hours '
|
|
'for the employee',
|
|
compute='_compute_hour_based_salary')
|
|
show_total_hours = fields.Boolean(string='Related Boolean', default=False,
|
|
help='Will show total_hours in the view'
|
|
' only if hourly_payslip is enabled'
|
|
' in the hr_contract.')
|
|
|
|
@api.onchange('contract_id')
|
|
def _onchange_contract_id(self):
|
|
"""This function helps to show the Total Hours field if the hourly
|
|
payslip is available for the employee."""
|
|
if self.contract_id and self.contract_id.hourly_payslip is True:
|
|
self.show_total_hours = True
|
|
|
|
@api.depends('date_from', 'date_to', 'employee_id')
|
|
def _compute_total_hours(self):
|
|
"""Function to compute total worked hours to the particular employee
|
|
for the given period of date."""
|
|
for record in self:
|
|
record.total_hours = sum(self.env['hr.attendance'].search(
|
|
[('employee_id', '=', record.employee_id.id)]).filtered(
|
|
lambda ids: record.date_from <= ids.check_in.date() <= record.date_to).mapped('worked_hours'))
|
|
|
|
@api.depends('total_hours')
|
|
def _compute_hour_based_salary(self):
|
|
"""Function to compute salary based on the worked hours for the
|
|
employee"""
|
|
for record in self:
|
|
record.hour_based_salary = self.env['hr.contract'].search(
|
|
[('employee_id', '=', record.employee_id.id),
|
|
('state', '=', 'open')]).hourly_wage * record.total_hours
|
|
|