mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Merge branch 'mig/12.0/hr_payroll_gamification' into '12.0'
mig/12.0/hr_payroll_gamification into 12.0 See merge request hibou-io/hibou-odoo/suite!168
This commit is contained in:
1
hr_payroll_gamification/__init__.py
Normal file
1
hr_payroll_gamification/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import models
|
||||
17
hr_payroll_gamification/__manifest__.py
Executable file
17
hr_payroll_gamification/__manifest__.py
Executable file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
'name': 'Payroll Gamification',
|
||||
'description': 'Payroll Gamification',
|
||||
'version': '12.0.1.0.1',
|
||||
'website': 'https://hibou.io/',
|
||||
'author': 'Hibou Corp. <hello@hibou.io>',
|
||||
'license': 'AGPL-3',
|
||||
'category': 'Human Resources',
|
||||
'data': [
|
||||
'data/payroll_data.xml',
|
||||
'views/gamification_views.xml',
|
||||
],
|
||||
'depends': [
|
||||
'hr_gamification',
|
||||
'hr_payroll',
|
||||
],
|
||||
}
|
||||
30
hr_payroll_gamification/data/payroll_data.xml
Normal file
30
hr_payroll_gamification/data/payroll_data.xml
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record id="salary_rule_badges" model="hr.salary.rule">
|
||||
<field name="name">Badge Bonus</field>
|
||||
<field name="category_id" ref="hr_payroll.BASIC"/>
|
||||
<field name="code">BADGES</field>
|
||||
<field name="sequence" eval="5"/>
|
||||
<field name="amount_select">code</field>
|
||||
<field name="amount_python_compute">
|
||||
result = 0.0
|
||||
if inputs.BADGES:
|
||||
result = inputs.BADGES.amount
|
||||
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="salary_rule_input_badges" model="hr.rule.input">
|
||||
<field name="name">Badges</field>
|
||||
<field name="code">BADGES</field>
|
||||
<field name="input_id" ref="salary_rule_badges"/>
|
||||
</record>
|
||||
|
||||
<record id="hr_payroll.structure_base" model="hr.payroll.structure">
|
||||
<field eval="[(4, ref('hr_payroll_gamification.salary_rule_badges'))]" name="rule_ids"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
2
hr_payroll_gamification/models/__init__.py
Normal file
2
hr_payroll_gamification/models/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from . import gamification
|
||||
from . import payroll
|
||||
12
hr_payroll_gamification/models/gamification.py
Normal file
12
hr_payroll_gamification/models/gamification.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class GamificationBadge(models.Model):
|
||||
_inherit = 'gamification.badge'
|
||||
|
||||
payroll_type = fields.Selection([
|
||||
('', 'None'),
|
||||
('fixed', 'Fixed'),
|
||||
('period', 'Granted in Pay Period'),
|
||||
], string='Payroll Type')
|
||||
payroll_amount = fields.Float(string='Payroll Amount', digits=(10, 4))
|
||||
25
hr_payroll_gamification/models/payroll.py
Normal file
25
hr_payroll_gamification/models/payroll.py
Normal file
@@ -0,0 +1,25 @@
|
||||
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('contract_id') == contract.id and 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):
|
||||
amount = 0.0
|
||||
for bu in contract.employee_id.badge_ids.filtered(lambda bu: bu.badge_id.payroll_type == 'fixed'):
|
||||
amount += bu.badge_id.payroll_amount
|
||||
for bu in contract.employee_id.badge_ids.filtered(lambda bu: (
|
||||
bu.badge_id.payroll_type == 'period'
|
||||
and date_from <= bu.create_date.date() <= date_to
|
||||
)):
|
||||
amount += bu.badge_id.payroll_amount
|
||||
return amount
|
||||
1
hr_payroll_gamification/tests/__init__.py
Executable file
1
hr_payroll_gamification/tests/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
from . import test_payroll_badge
|
||||
122
hr_payroll_gamification/tests/test_payroll_badge.py
Normal file
122
hr_payroll_gamification/tests/test_payroll_badge.py
Normal file
@@ -0,0 +1,122 @@
|
||||
from odoo.tests import common
|
||||
from odoo import fields
|
||||
from datetime import date
|
||||
|
||||
|
||||
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
|
||||
additional_wage_period = 15.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, date(2018, 1, 1), date(2018, 1, 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,
|
||||
})
|
||||
|
||||
badge_period = self.env['gamification.badge'].create({
|
||||
'name': 'test period',
|
||||
'payroll_type': 'period',
|
||||
'payroll_amount': additional_wage_period,
|
||||
})
|
||||
|
||||
# Need a specific 'create_date' to test.
|
||||
badge_user_period = self.env['gamification.badge.user'].create({
|
||||
'badge_id': badge_period.id,
|
||||
'employee_id': self.employee.id,
|
||||
'user_id': self.env.user.id,
|
||||
})
|
||||
self.env.cr.execute('update gamification_badge_user set create_date = \'2018-02-10\' where id = %d;' % (badge_user_period.id, ))
|
||||
badge_user_period = self.env['gamification.badge.user'].browse(badge_user_period.id)
|
||||
|
||||
self.assertEqual(self.employee.badge_ids, badge_user + badge_user_period)
|
||||
|
||||
# Includes only one badge
|
||||
payslip = self.env['hr.payslip'].create({
|
||||
'employee_id': self.employee.id,
|
||||
'date_from': '2018-01-01',
|
||||
'date_to': '2018-01-31',
|
||||
})
|
||||
# This is crazy, but...
|
||||
res = payslip.onchange_employee_id(date(2018, 1, 1), date(2018, 1, 31), employee_id=self.employee.id, contract_id=self.contract.id)
|
||||
del res['value']['line_ids']
|
||||
res['value']['input_line_ids'] = [(0, 0, l) for l in res['value']['input_line_ids']]
|
||||
res['value']['worked_days_line_ids'] = [(0, 0, l) for l in res['value']['worked_days_line_ids']]
|
||||
payslip.write(res['value'])
|
||||
self.assertTrue(payslip.input_line_ids)
|
||||
payslip.compute_sheet()
|
||||
|
||||
self.assertEqual(payslip._get_input_badges(self.contract, date(2018, 1, 1), date(2018, 1, 31)), additional_wage)
|
||||
|
||||
basic = payslip.details_by_salary_rule_category.filtered(lambda l: l.code == 'GROSS')
|
||||
self.assertTrue(basic)
|
||||
self.assertEqual(basic.total, self.wage + additional_wage)
|
||||
|
||||
# Include both Badges
|
||||
payslip = self.env['hr.payslip'].create({
|
||||
'employee_id': self.employee.id,
|
||||
'date_from': '2018-02-01',
|
||||
'date_to': '2018-02-25', # Feb...
|
||||
})
|
||||
# This is crazy, but...
|
||||
res = payslip.onchange_employee_id(date(2018, 2, 1), date(2018, 2, 25), employee_id=self.employee.id,
|
||||
contract_id=self.contract.id)
|
||||
del res['value']['line_ids']
|
||||
res['value']['input_line_ids'] = [(0, 0, l) for l in res['value']['input_line_ids']]
|
||||
res['value']['worked_days_line_ids'] = [(0, 0, l) for l in res['value']['worked_days_line_ids']]
|
||||
payslip.write(res['value'])
|
||||
self.assertTrue(payslip.input_line_ids)
|
||||
payslip.compute_sheet()
|
||||
|
||||
self.assertEqual(payslip._get_input_badges(self.contract, date(2018, 2, 1), date(2018, 2, 25)), additional_wage + additional_wage_period)
|
||||
|
||||
basic = payslip.details_by_salary_rule_category.filtered(lambda l: l.code == 'GROSS')
|
||||
self.assertTrue(basic)
|
||||
self.assertEqual(basic.total, self.wage + additional_wage + additional_wage_period)
|
||||
19
hr_payroll_gamification/views/gamification_views.xml
Normal file
19
hr_payroll_gamification/views/gamification_views.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<odoo>
|
||||
<record id="badge_form_view_inherit" model="ir.ui.view">
|
||||
<field name="name">gamification.badge.form.inherit</field>
|
||||
<field name="model">gamification.badge</field>
|
||||
<field name="priority">20</field>
|
||||
<field name="inherit_id" ref="gamification.badge_form_view"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//sheet" position="inside">
|
||||
<group string="Payroll">
|
||||
<group>
|
||||
<field name="payroll_type"/>
|
||||
<field name="payroll_amount" attrs="{'invisible': [('payroll_type', '=', False)]}"/>
|
||||
</group>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user