1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/hr_payroll_account_sepa/__manifest__.py
2024-12-10 09:04:09 +07:00

23 lines
737 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "SEPA Payments for Payroll",
'summary': "Pay your employees with SEPA payment.",
'category': 'Human Resources/Payroll',
'version': '1.0',
'depends': ['hr_payroll_account', 'account_sepa'],
'data': [
'security/ir.model.access.csv',
'views/hr_payroll_account_sepa_views.xml',
'wizard/hr_payroll_account_sepa_wizard_views.xml',
'views/hr_employee_views.xml'
],
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'hr_payroll_account_sepa/static/src/**/*.js',
'hr_payroll_account_sepa/static/src/**/*.xml',
],
},
}