get_limit_current_exercice(); $start = $http->request("start_date", "date", $limit[0]); $end = $http->request("end_date", "date", $limit[1]); $start_periode = new IDate("start_date", $start); $end_periode = new IDate("end_date", $end); echo '
'; echo HtmlInput::array_to_hidden(['gDossier','ac'],$_GET); echo HtmlInput::hidden("do","display"); printf(_("Période du %s au %s"), $start_periode->input(), $end_periode->input()); echo HtmlInput::submit("show_tax_summary",_("Afficher")); echo '
'; echo '
'; if ( $http->get("do","string","no") == "display") { $tax_summary=new Tax_Summary($cn,$start_periode->value,$end_periode->value); try { $tax_summary->check(); echo ''; $tax_summary->display(); echo ''; } catch (Exception $e) { echo ''; echo $e->getMessage(); echo ''; } }