* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * or see http://www.gnu.org/ */ /** \file htdocs/lib/report.lib.php \brief Ensemble de fonctions de base de dolibarr pour reporting sous forme d'include \version $Id$ */ /** * \brief Affiche la cartouche générique d'un rapport * \param nom Valeur pour nom du rapport * \param variante Lien optionnel de variante du rapport * \param period Periode du reporting * \param periodlink Lien pour changer de période * \param description Description * \param builddate Date génération * \param exportlink Lien pour export */ function report_header($nom,$variante='',$period,$periodlink,$description,$builddate,$exportlink) { global $langs; print "\n\n\n"; $h=0; $head[$h][0] = $_SERVER["PHP_SELF"]; $head[$h][1] = $langs->trans("Report"); dol_fiche_head($head, $hselected, $societe->nom); print '
| '.$langs->trans("ReportName").' | '; if (! $variante) print ''; else print ' | '; print $nom; if ($variante) print ' | '.$variante; print ' | '; print '|||
| '.$langs->trans("ReportPeriod").' | '; if (! $periodlink) print ''; else print ' | '; print $period; if ($periodlink) print ' | '.$periodlink; print ' | '; print '|||
| '.$langs->trans("ReportDescription").' | '; print ''.$description.' | '; print '|||||
| '.$langs->trans("GeneratedOn").' | '; if (! $exportlink) print ''; else print ' | '; print dol_print_date($builddate); if ($exportlink) print ' | '.$langs->trans("Export").' | '.$exportlink; print ' | ||