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

27 lines
818 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Account Batch Payment Reconciliation',
'version': '1.0',
'category': 'Accounting',
'summary': 'Allows using Reconciliation with the Batch Payment feature.',
'depends': ['account_accountant', 'account_batch_payment'],
'data': [
'security/ir.model.access.csv',
'views/bank_rec_widget_views.xml',
'views/account_batch_payment_rejection_views.xml',
],
'auto_install': True,
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'account_accountant_batch_payment/static/src/components/**/*',
],
'web.assets_tests': [
'account_accountant_batch_payment/static/tests/tours/*.js',
],
}
}