forked from Mapan/odoo17e
31 lines
824 B
Python
31 lines
824 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Employment Hero Australian Payroll',
|
|
'countries': ['au'],
|
|
'category': 'Accounting',
|
|
'depends': [
|
|
'l10n_au',
|
|
'account_accountant',
|
|
],
|
|
'version': '1.0',
|
|
'description': """
|
|
Employment Hero Payroll Integration
|
|
This Module will synchronise all payrun journals from Employment Hero to Odoo.
|
|
""",
|
|
'author': 'Odoo S.A.,Inspired Software Pty Limited',
|
|
'contributors': [
|
|
'Michael Villamar',
|
|
'Jacob Oldfield',
|
|
],
|
|
'website': 'http://www.inspiredsoftware.com.au',
|
|
'data': [
|
|
'data/ir_cron_data.xml',
|
|
'views/account_views.xml',
|
|
'views/res_config_settings.xml',
|
|
],
|
|
'installable': True,
|
|
'license': 'OEEL-1',
|
|
}
|