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.
 
 
 
 
 

47 lines
2.0 KiB

# -*- coding: utf-8 -*-
#############################################################################
#
# Cybrosys Technologies Pvt. Ltd.
# Copyright (C) 2024-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
# Author: Ammu Raj(odoo@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, models
class HrPayslip(models.Model):
""" This class is used to create the bonus reasons. """
_inherit = "hr.payslip"
@api.onchange('employee_id', 'date_from', 'date_to', 'struct_id')
def _onchange_employee_id(self):
""" When changing employee the bonus amount for the employee will be
loaded as other input """
bonus_rule = self.env.ref(
'employee_bonus_manager.hr_salary_rule_bonus')
rules = self.struct_id.rule_ids.mapped('name')
if bonus_rule.name in rules:
bonus = self.env['bonus.request'].search([
('employee_id', '=', self.employee_id.id),
('state', '=', 'accounting'), ('move_id.state', '=', 'posted'),
('move_id.date', '>=', self.date_from),
('move_id.date', '<=', self.date_to)])
amount = sum(bonus.mapped('bonus_amount'))
self.input_line_ids = [(0, 0, {
'name': 'Bonus',
'code': 'BONUS',
'contract_id': self.contract_id.id,
'amount': amount,
})]