mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Abstract fixes and behaviors.
- Adds configurable option for Payslip rule calculation sum date field.
- Fixes inconsistency between .sum_category('CODE') and .categories['CODE']
- Adds semi-monthly Semi-monthly schedule_pay
All features are tested and the tests themselves should serve as test harnesses for other 'payroll' modules.
28 lines
671 B
Python
28 lines
671 B
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Hibou Payroll',
|
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
|
'version': '14.0.1.0.0',
|
|
'category': 'Payroll Localization',
|
|
'depends': [
|
|
'hr_payroll',
|
|
'hr_contract_reports',
|
|
'hibou_professional',
|
|
],
|
|
'description': """
|
|
Hibou Payroll
|
|
=============
|
|
|
|
Base module for fixing specific qwerks or assumptions in the way Payroll Odoo Enterprise Edition behaves.
|
|
|
|
""",
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
'demo': [
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OPL-1',
|
|
}
|