diff --git a/hr_payroll_gamification/__init__.py b/hr_payroll_gamification/__init__.py new file mode 100644 index 00000000..0650744f --- /dev/null +++ b/hr_payroll_gamification/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/hr_payroll_gamification/__manifest__.py b/hr_payroll_gamification/__manifest__.py new file mode 100755 index 00000000..277008b9 --- /dev/null +++ b/hr_payroll_gamification/__manifest__.py @@ -0,0 +1,17 @@ +{ + 'name': 'Payroll Gamification', + 'description': 'Payroll Gamification', + 'version': '11.0.1.0.1', + 'website': 'https://hibou.io/', + 'author': 'Hibou Corp. ', + 'license': 'AGPL-3', + 'category': 'Human Resources', + 'data': [ + 'data/payroll_data.xml', + 'views/gamification_views.xml', + ], + 'depends': [ + 'hr_gamification', + 'hr_payroll', + ], +} diff --git a/hr_payroll_gamification/data/payroll_data.xml b/hr_payroll_gamification/data/payroll_data.xml new file mode 100644 index 00000000..ca89d7c4 --- /dev/null +++ b/hr_payroll_gamification/data/payroll_data.xml @@ -0,0 +1,30 @@ + + + + + + Badge Bonus + + BADGES + + code + +result = 0.0 +if inputs.BADGES: + result = inputs.BADGES.amount + + + + + + Badges + BADGES + + + + + + + + + \ No newline at end of file diff --git a/hr_payroll_gamification/models/__init__.py b/hr_payroll_gamification/models/__init__.py new file mode 100644 index 00000000..4ce66a41 --- /dev/null +++ b/hr_payroll_gamification/models/__init__.py @@ -0,0 +1,2 @@ +from . import gamification +from . import payroll diff --git a/hr_payroll_gamification/models/gamification.py b/hr_payroll_gamification/models/gamification.py new file mode 100644 index 00000000..9a32f3f8 --- /dev/null +++ b/hr_payroll_gamification/models/gamification.py @@ -0,0 +1,11 @@ +from odoo import api, fields, models + + +class GamificationBadge(models.Model): + _inherit = 'gamification.badge' + + payroll_type = fields.Selection([ + ('', 'None'), + ('fixed', 'Fixed'), + ], string='Payroll Type') + payroll_amount = fields.Float(string='Payroll Amount', digits=(10, 4)) diff --git a/hr_payroll_gamification/models/payroll.py b/hr_payroll_gamification/models/payroll.py new file mode 100644 index 00000000..21d0665b --- /dev/null +++ b/hr_payroll_gamification/models/payroll.py @@ -0,0 +1,17 @@ +from odoo import api, fields, models + + +class Payslip(models.Model): + _inherit = 'hr.payslip' + + @api.model + def get_inputs(self, contracts, date_from, date_to): + res = super(Payslip, self).get_inputs(contracts, date_from, date_to) + for contract in contracts: + for input in res: + if input.get('code') == 'BADGES': + input['amount'] = self._get_input_badges(contract, date_from, date_to) + return res + + def _get_input_badges(self, contract, date_from, date_to): + return sum(contract.employee_id.badge_ids.filtered(lambda l: l.badge_id.payroll_type == 'fixed').mapped('badge_id.payroll_amount')) diff --git a/hr_payroll_gamification/tests/__init__.py b/hr_payroll_gamification/tests/__init__.py new file mode 100755 index 00000000..ce4bbfce --- /dev/null +++ b/hr_payroll_gamification/tests/__init__.py @@ -0,0 +1 @@ +from . import test_payroll_badge diff --git a/hr_payroll_gamification/tests/test_payroll_badge.py b/hr_payroll_gamification/tests/test_payroll_badge.py new file mode 100644 index 00000000..24ab278d --- /dev/null +++ b/hr_payroll_gamification/tests/test_payroll_badge.py @@ -0,0 +1,137 @@ +from odoo.tests import common +from odoo import fields + + +class TestPayroll(common.TransactionCase): + + def setUp(self): + super(TestPayroll, self).setUp() + self.wage = 21.50 + self.employee = self.env['hr.employee'].create({ + 'birthday': '1985-03-14', + 'country_id': self.ref('base.us'), + 'department_id': self.ref('hr.dep_rd'), + 'gender': 'male', + 'name': 'Jared', + 'user_id': self.env.user.id, + }) + self.contract = self.env['hr.contract'].create({ + 'name': 'test', + 'employee_id': self.employee.id, + 'type_id': self.ref('hr_contract.hr_contract_type_emp'), + 'struct_id': self.ref('hr_payroll.structure_base'), + 'resource_calendar_id': self.ref('resource.resource_calendar_std'), + 'wage': self.wage, + 'date_start': '2018-01-01', + 'state': 'open', + 'schedule_pay': 'monthly', + }) + + def test_badge_amounts(self): + badge = self.env['gamification.badge'].create({ + 'name': 'test', + }) + badge.payroll_amount = 5.0 + + def test_badge_payroll(self): + additional_wage = 5.0 + payslip = self.env['hr.payslip'].create({ + 'employee_id': self.employee.id, + 'contract_id': self.contract.id, + 'date_from': '2018-01-01', + 'date_to': '2018-01-31', + }) + self.assertEqual(payslip._get_input_badges(self.contract, '2018-01-01', '2018-01-31'), 0.0) + payslip.compute_sheet() + basic = payslip.details_by_salary_rule_category.filtered(lambda l: l.code == 'GROSS') + self.assertTrue(basic) + self.assertEqual(basic.total, self.wage) + + badge = self.env['gamification.badge'].create({ + 'name': 'test', + 'payroll_type': 'fixed', + 'payroll_amount': additional_wage, + }) + + badge_user = self.env['gamification.badge.user'].create({ + 'badge_id': badge.id, + 'employee_id': self.employee.id, + 'user_id': self.env.user.id, + }) + + self.assertEqual(self.employee.badge_ids, badge_user) + + payslip = self.env['hr.payslip'].create({ + 'employee_id': self.employee.id, + 'contract_id': self.contract.id, + 'date_from': '2018-01-01', + 'date_to': '2018-01-31', + }) + payslip.onchange_employee_id('2018-01-01', '2018-01-31', employee_id=self.employee.id, contract_id=self.contract.id) + payslip.compute_sheet() + self.assertEqual(payslip._get_input_badges(self.contract, '2018-01-01', '2018-01-31'), 5.0) + self.assertTrue(payslip.contract_id) + basic = payslip.details_by_salary_rule_category.filtered(lambda l: l.code == 'GROSS') + self.assertTrue(basic) + self.assertEqual(basic.total, self.wage + additional_wage) + + + + + + + # def test_payroll_rate_multicompany(self): + # test_rate_other = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate', + # 'code': 'TEST', + # 'rate': 1.65, + # 'date_from': '2018-01-01', + # 'company_id': self.company_other.id, + # }) + # rate = self.payslip.get_rate('TEST') + # self.assertFalse(rate) + # test_rate = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate', + # 'code': 'TEST', + # 'rate': 1.65, + # 'date_from': '2018-01-01', + # }) + # + # rate = self.payslip.get_rate('TEST') + # self.assertEqual(rate, test_rate) + # + # test_rate_more_specific = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate Specific', + # 'code': 'TEST', + # 'rate': 1.65, + # 'date_from': '2018-01-01', + # 'company_id': self.payslip.company_id.id, + # }) + # rate = self.payslip.get_rate('TEST') + # self.assertEqual(rate, test_rate_more_specific) + # + # def test_payroll_rate_newer(self): + # test_rate_old = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate', + # 'code': 'TEST', + # 'rate': 1.65, + # 'date_from': '2018-01-01', + # }) + # test_rate = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate', + # 'code': 'TEST', + # 'rate': 2.65, + # 'date_from': '2019-01-01', + # }) + # + # rate = self.payslip.get_rate('TEST') + # self.assertEqual(rate, test_rate) + # + # def test_payroll_rate_precision(self): + # test_rate = self.env['hr.payroll.rate'].create({ + # 'name': 'Test Rate', + # 'code': 'TEST', + # 'rate': 2.65001, + # 'date_from': '2019-01-01', + # }) + # self.assertEqual(round(test_rate.rate * 100000), 265001.0) diff --git a/hr_payroll_gamification/views/gamification_views.xml b/hr_payroll_gamification/views/gamification_views.xml new file mode 100644 index 00000000..17fe63a8 --- /dev/null +++ b/hr_payroll_gamification/views/gamification_views.xml @@ -0,0 +1,19 @@ + + + + gamification.badge.form.inherit + gamification.badge + 20 + + + + + + + + + + + + + \ No newline at end of file