Skip to content
Snippets Groups Projects
__manifest__.py 2.19 KiB
Newer Older
##############################################################################
#
#    Accounting Reports, for Odoo
#    Copyright (C) 2015 XCG Consulting <https://xcg-consulting.fr>
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU Affero General Public License as
#    published by the Free Software Foundation, either version 3 of the
#    License, or (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU Affero General Public License for more details.
#
#    You should have received a copy of the GNU Affero General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

{
    "name": "Accounting Reports",
    "license": "AGPL-3",
    "category": "Accounting",
    "author": "XCG Consulting",
    "website": "https://odoo.consulting/",
    "depends": [
        "base",
        "account",
        "account_invoice_refund_link",
        "account_invoicing",
        "account_payment_split",
        "account_period",
        "analytic_structure",
        "account_analytic_structure",
        "report_py3o",
        "account_export",
        "queue_job",  # OCA/queue
        "report_xlsx",  # OCA/reporting-engine
    "data": [
        "security/ir.model.access.csv",
        "menu.xml",
        "data/ir.sequence.xml",
        "reports/reports.xml",
        "wizards/account_consultation.xml",
        "wizards/account_monthly_statement_gen.xml",
        "views/account_account_type.xml",
        "views/account_invoice.xml",
        "views/account_monthly_statement.xml",
        "views/account_monthly_statement_kind.xml",
        "views/account_move.xml",
        "views/account_move_line.xml",
        "views/account_report.xml",
        "views/res_partner.xml",
    "demo": ["demo/account.monthly_statement.kind.csv"],
    "installable": True,