Trad: Fichier traduction non chargé

This commit is contained in:
Laurent Destailleur 2005-04-27 22:13:50 +00:00
parent d699fcb1c0
commit 5f56578ae3

View File

@ -33,6 +33,7 @@ require("./pre.inc.php");
$user->getrights(); // On a besoin des permissions sur plusieurs modules $user->getrights(); // On a besoin des permissions sur plusieurs modules
$langs->load("compta"); $langs->load("compta");
$langs->load("bills");
/* /*
* Sécurité accés client * Sécurité accés client
@ -84,19 +85,20 @@ print '<tr><td valign="top" width="30%">';
/* /*
* Zone recherche facture * Zone recherche facture
*/ */
print '<form method="post" action="facture.php">'; if ($conf->facture->anabled) {
print '<table class="noborder" width="100%">'; print '<form method="post" action="facture.php">';
print "<tr class=\"liste_titre\">"; print '<table class="noborder" width="100%">';
print '<td colspan="2">'.$langs->trans("SearchABill").'</td></tr>'; print "<tr class=\"liste_titre\">";
print "<tr $bc[0]><td>"; print '<td colspan="2">'.$langs->trans("SearchABill").'</td></tr>';
print $langs->trans("Ref").': <input type="text" name="sf_ref" class="flat" size="18">&nbsp;<input type="submit" value="'.$langs->trans("Search").'" class="button"></td></tr>'; print "<tr $bc[0]><td>";
print "</table></form><br>"; print $langs->trans("Ref").': <input type="text" name="sf_ref" class="flat" size="18">&nbsp;<input type="submit" value="'.$langs->trans("Search").'" class="button"></td></tr>';
print "</table></form><br>";
}
/* /*
* Factures brouillons * Factures brouillons
*/ */
if ($conf->facture->enabled && $user->rights->facture->lire) if ($conf->facture->enabled && $user->rights->facture->lire)
{ {