2
0
forked from Wavyzz/dolibarr

Ajout: ajout d'une option dans le module propal et commande qui permet de cacher les propales et commandes signs et/ou factures afin d'y voir plus clair dans les listes.

This commit is contained in:
Regis Houssin
2006-08-02 10:03:03 +00:00
parent b721f1b844
commit 3842c50b48
4 changed files with 62 additions and 0 deletions

View File

@@ -127,6 +127,11 @@ if ($_GET["action"] == 'setmod')
dolibarr_set_const($db, "COMMANDE_ADDON",$_GET["value"]);
}
if ($_POST["action"] == 'sethidetreated')
{
dolibarr_set_const($db, "COMMANDE_HIDE_TREATED",$_POST["hidetreated"]);
}
/*
@@ -324,5 +329,32 @@ closedir($handle);
print '</table>';
//Autres Options
print "<br>";
print_titre($langs->trans("OtherOptions"));
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Parameter").'</td>';
print '<td align="center" width="60">'.$langs->trans("Value").'</td>';
print '<td width="80">&nbsp;</td>';
print "</tr>\n";
$var=true;
// cacher les commandes classer factur<75>es des listes
$var=! $var;
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
print '<input type="hidden" name="action" value="sethidetreated">';
print '<tr '.$bc[$var].'><td>';
print $langs->trans("HideTreadedOrders");
print '</td><td width="60" align="center">';
print $html->selectyesno("hidetreated",$conf->global->COMMANDE_HIDE_TREATED,1);
print '</td><td align="right">';
print '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
print "</td></tr>\n";
print '</form>';
print '</table>';
llxFooter('$Date$ - $Revision$');
?>