diff --git a/htdocs/compta/localtax/index.php b/htdocs/compta/localtax/index.php
index ad0b86a161d..fb96e766945 100644
--- a/htdocs/compta/localtax/index.php
+++ b/htdocs/compta/localtax/index.php
@@ -18,11 +18,13 @@
* along with this program. If not, see .
*/
+
/**
* \file htdocs/compta/localtax/index.php
* \ingroup tax
* \brief Index page of IRPF reports
*/
+
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/report.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/tax.lib.php';
@@ -441,16 +443,6 @@ while ((($y < $yend) || ($y == $yend && $m <= $mend)) && $mcursor < 1000) { // $
$hookmanager->initHooks(array('externalbalance'));
$reshook = $hookmanager->executeHooks('addVatLine', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if (!is_array($x_coll) && $coll_listbuy == -1) {
- $langs->load("errors");
- print '
| '.$langs->trans("ErrorNoAccountancyModuleLoaded").' |
';
- break;
- }
- if (!is_array($x_paye) && $coll_listbuy == -2) {
- print '| '.$langs->trans("FeatureNotYetAvailable").' |
';
- break;
- }
-
print '';
print '| '.dol_print_date(dol_mktime(0, 0, 0, $m, 1, $y), "%b %Y").' | ';
diff --git a/htdocs/compta/tva/index.php b/htdocs/compta/tva/index.php
index f0efe305d8c..5c0d6930475 100644
--- a/htdocs/compta/tva/index.php
+++ b/htdocs/compta/tva/index.php
@@ -389,16 +389,6 @@ if ($refresh === true) {
$hookmanager->initHooks(array('externalbalance'));
$reshook = $hookmanager->executeHooks('addVatLine', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
- if (!is_array($x_coll) && $coll_listbuy == -1) {
- $langs->load("errors");
- print '
| ' . $langs->trans("ErrorNoAccountancyModuleLoaded") . ' |
';
- break;
- }
- if (!is_array($x_paye) && $coll_listbuy == -2) {
- print '| ' . $langs->trans("FeatureNotYetAvailable") . ' |
';
- break;
- }
-
print '';
print '| ' . dol_print_date(dol_mktime(0, 0, 0, $m, 1, $y), "%b %Y") . ' | ';