mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
21 lines
534 B
Python
Executable File
21 lines
534 B
Python
Executable File
# -*- coding: utf-8 -*-
|
|
|
|
{
|
|
'name': 'Payroll Payments',
|
|
'author': 'Hibou Corp. <hello@hibou.io>',
|
|
'version': '11.0.0.0.0',
|
|
'category': 'Human Resources',
|
|
'sequence': 95,
|
|
'summary': 'Register payments for Payroll Payslips',
|
|
'description': """
|
|
Adds the ability to register a payment on a payslip.
|
|
""",
|
|
'website': 'https://hibou.io/',
|
|
'depends': ['hr_payroll_account', 'payment'],
|
|
'data': [
|
|
'hr_payroll_register_payment.xml',
|
|
],
|
|
'installable': True,
|
|
'application': False,
|
|
}
|