forked from Mapan/odoo17e
28 lines
824 B
Python
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',
|
|
}
|