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

28 lines
824 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Singapore - Accounting Reports',
'countries': ['sg'],
'version': '1.1',
'author': 'Tech Receptives',
'category': 'Accounting/Localizations/Reporting',
'description': """
Accounting reports for Singapore
================================
This module allow to generate the IRAS Audit File.
- To generate the IRAS Audit File, go to Accounting -> Reporting -> IRAS Audit File
""",
'depends': [
'l10n_sg', 'account_reports'
],
'data': [
'security/ir.model.access.csv',
'data/account_iras_audit_file_data.xml',
'views/iaf_template.xml'
],
'installable': True,
'auto_install': ['l10n_sg', 'account_reports'],
'license': 'OEEL-1',
}