Correction faute de style border="0" en class="noborder".
This commit is contained in:
parent
cba8d47f09
commit
dc1102f5de
@ -45,7 +45,7 @@ function valeur($sql)
|
||||
|
||||
print_titre("Bilan");
|
||||
|
||||
print "<TABLE border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
||||
print "<table class=\"noborder\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
||||
|
||||
$var=!$var;
|
||||
$sql = "SELECT sum(amount) FROM ".MAIN_DB_PREFIX."paiement";
|
||||
|
||||
@ -38,14 +38,14 @@ $pagenext = $page + 1;
|
||||
|
||||
print_barre_liste("Transactions BPLC", $page, $PHP_SELF);
|
||||
|
||||
print "<TABLE border=\"1\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
||||
print "<TR class=\"liste_titre\">";
|
||||
print "<table class=\"noborder\" width=\"100%\" cellspacing=\"0\" cellpadding=\"2\">";
|
||||
print "<tr class=\"liste_titre\">";
|
||||
print "<td>Réf. commande</td>";
|
||||
print "<td>ip client</td><td>Num. transaction</td><td>Date</TD><td>Heure</td>";
|
||||
print "<td>ip client</td><td>Num. transaction</td><td>Date</td><td>Heure</td>";
|
||||
print "<td>Num autorisation</td>";
|
||||
print "<td>clé acceptation</td>";
|
||||
print "<td>code retour</td>";
|
||||
print "</TR>\n";
|
||||
print "</tr>\n";
|
||||
|
||||
$sql = "SELECT ipclient,
|
||||
num_transaction,
|
||||
|
||||
@ -54,11 +54,10 @@ if ($action == 'add')
|
||||
print_titre("Catégories");
|
||||
print "<form method=\"post\" action=\"$PHP_SELF\">";
|
||||
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="2">';
|
||||
print '<TR class="liste_titre">';
|
||||
print "<td>Num</td><td colspan=\"2\">Description</TD>";
|
||||
print "</TR>\n";
|
||||
|
||||
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="2">';
|
||||
print '<tr class="liste_titre">';
|
||||
print "<td>Num</td><td colspan=\"2\">Description</td>";
|
||||
print "</tr>\n";
|
||||
|
||||
$sql = "SELECT rowid, label FROM ".MAIN_DB_PREFIX."bank_categ ORDER BY label";
|
||||
|
||||
|
||||
@ -59,8 +59,10 @@ print "<form method=\"post\" action=\"$PHP_SELF\">";
|
||||
|
||||
print '<input type="hidden" name="action" value="add">';
|
||||
|
||||
print '<table class="border" width="100%" cellspacing="0" cellpadding="2">';
|
||||
print "<tr $bc[1]><td>De</td><td>Vers</td><td>Date</td><td>Libelle</td><td>Montant</td></tr>";
|
||||
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="2">';
|
||||
print '<tr class="liste_titre">';
|
||||
print '<td>De</td><td>Vers</td><td>Date</td><td>Libelle</td><td>Montant</td>';
|
||||
print '</tr>';
|
||||
print "<tr $bc[1]><td>";
|
||||
print "<select name=\"account_from\">";
|
||||
$sql = "SELECT rowid, label FROM ".MAIN_DB_PREFIX."bank_account";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user