Files
suite/hr_payroll_attendance/__manifest__.py
Jared Kipe 9f59dd2dee [MIG] hr_payroll_attendance: for Odoo Enterprise 13.0
Move some concerns to other modules, refactor new API to make it possible to use timesheets and attendances together.

Now possible to add attendances by hand or import via smart button and 'recompute' attendances.
2020-11-27 14:20:26 -08:00

25 lines
776 B
Python
Executable File

# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
{
'name': 'Attendance on Payslips',
'description': 'Get Attendence numbers onto Employee Payslips.',
'version': '14.0.1.0.0',
'website': 'https://hibou.io/',
'author': 'Hibou Corp. <hello@hibou.io>',
'license': 'OPL-1',
'category': 'Human Resources',
'data': [
'data/hr_payroll_attendance_data.xml',
'views/hr_attendance_views.xml',
'views/hr_contract_views.xml',
'views/hr_payslip_views.xml',
],
'depends': [
'hr_payroll_hibou',
'hr_attendance_work_entry',
'hr_payroll_overtime',
'hibou_professional',
],
'pre_init_hook': 'attn_payroll_pre_init_hook',
}