From 96512730227e6ce905bf35eff6fea4633872ee43 Mon Sep 17 00:00:00 2001 From: Srv Privilege de marque Date: Mon, 20 Feb 2017 11:31:30 +0100 Subject: [PATCH] #12268 - max of 31 days to generate invoices --- controllers/admin/AdminInvoicesController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/controllers/admin/AdminInvoicesController.php b/controllers/admin/AdminInvoicesController.php index 44a87c13..2d0fae72 100755 --- a/controllers/admin/AdminInvoicesController.php +++ b/controllers/admin/AdminInvoicesController.php @@ -111,7 +111,7 @@ class AdminInvoicesControllerCore extends AdminController 'maxlength' => 10, 'required' => true, 'hint' => $this->l('Format: 2012-12-31 (inclusive).'), - 'desc' => $this->l('Intervalle de 32 jours maximum entre les 2 dates.') + 'desc' => $this->l('Intervalle de 31 jours maximum entre les 2 dates.') ) ), 'submit' => array( @@ -231,8 +231,8 @@ class AdminInvoicesControllerCore extends AdminController $d_from = new DateTime($date_from); $d_to = new DateTime($date_to); $interval = $d_from->diff($d_to); - if ($interval->days>32) { - $this->errors[] = $this->l('Les factures ne peuvent être générées que pour une période de 32 jours maximum.'); + if ($interval->days>31) { + $this->errors[] = $this->l('Les factures ne peuvent être générées que pour une période de 31 jours maximum.'); } if (!count($this->errors))