From 12d0079ce7aa41bee1dbfe19782683a32ed687a1 Mon Sep 17 00:00:00 2001 From: "Pedro M. Baeza" Date: Fri, 22 Dec 2017 16:42:19 +0100 Subject: [PATCH] [IMP] account_financial_report_qweb: Remove unneeded dependency Module `account_fiscal_year` allows companies with fiscal years with duration different from 1 year to make financial reporting, but the method used is overwrting a standard method `compute_fiscalyear_dates` on company, so it's transparent for this module, and you don't need to have it installed for most of the companies, that have regular fiscal years. --- account_financial_report_qweb/__manifest__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/account_financial_report_qweb/__manifest__.py b/account_financial_report_qweb/__manifest__.py index 59c289f2..eae96f5e 100644 --- a/account_financial_report_qweb/__manifest__.py +++ b/account_financial_report_qweb/__manifest__.py @@ -16,7 +16,6 @@ 'depends': [ 'account', 'date_range', - 'account_fiscal_year', 'report_xlsx', 'report', ],