Correction erreur html
This commit is contained in:
parent
d99205eb93
commit
f9ce59aee7
@ -106,7 +106,6 @@ print "<tr $bc[1]>".'<td colspan="3" align="right"><b>Total</b></td><td align="r
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
print '<tr class="liste_titre"><td colspan="5">Comptes placements</td></tr>';
|
print '<tr class="liste_titre"><td colspan="5">Comptes placements</td></tr>';
|
||||||
|
|
||||||
for ($i = 0 ; $i < sizeof($accounts) ; $i++) {
|
for ($i = 0 ; $i < sizeof($accounts) ; $i++) {
|
||||||
@ -122,7 +121,7 @@ for ($i = 0 ; $i < sizeof($accounts) ; $i++) {
|
|||||||
|
|
||||||
print "</td><td>$acc->bank</td><td>$acc->number</td>";
|
print "</td><td>$acc->bank</td><td>$acc->number</td>";
|
||||||
|
|
||||||
print '</td><td align="right">'.price($solde).'</td><td> </td></tr>';
|
print '<td align="right">'.price($solde).'</td><td> </td></tr>';
|
||||||
|
|
||||||
$total += $solde;
|
$total += $solde;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -56,7 +56,7 @@ print "<form method=\"post\" action=\"$PHP_SELF\">";
|
|||||||
|
|
||||||
print '<input type="hidden" name="action" value="add">';
|
print '<input type="hidden" name="action" value="add">';
|
||||||
|
|
||||||
print '<TABLE border="1" width="100%" cellspacing="0" cellpadding="2">';
|
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 "<tr $bc[1]><td>De</td><td>Vers</td><td>Date</td><td>Libelle</td><td>Montant</td></tr>";
|
||||||
print "<tr $bc[1]><td>";
|
print "<tr $bc[1]><td>";
|
||||||
print "<select name=\"account_from\">";
|
print "<select name=\"account_from\">";
|
||||||
@ -71,7 +71,7 @@ if ($result)
|
|||||||
while ($i < $num)
|
while ($i < $num)
|
||||||
{
|
{
|
||||||
$objp = $db->fetch_object($i);
|
$objp = $db->fetch_object($i);
|
||||||
print "<option value=\"$objp->rowid\">$objp->label</option><br>";
|
print "<option value=\"$objp->rowid\">$objp->label</option>";
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -89,7 +89,7 @@ if ($result)
|
|||||||
while ($i < $num)
|
while ($i < $num)
|
||||||
{
|
{
|
||||||
$objp = $db->fetch_object($i);
|
$objp = $db->fetch_object($i);
|
||||||
print "<option value=\"$objp->rowid\">$objp->label</option><br>";
|
print "<option value=\"$objp->rowid\">$objp->label</option>";
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -98,16 +98,13 @@ print "</select></td>\n";
|
|||||||
print "<td>";
|
print "<td>";
|
||||||
print_date_select();
|
print_date_select();
|
||||||
print "</td>\n";
|
print "</td>\n";
|
||||||
print "<td><input name=\"label\" type=\"text\" size=40></td>";
|
print '<td><input name="label" type="text" size="40"></td>';
|
||||||
print "<td><input name=\"amount\" type=\"text\" size=8></td>";
|
print '<td><input name="amount" type="text" size="8"></td>';
|
||||||
|
|
||||||
|
|
||||||
print "<tr $bc[1]>".'<td colspan="5" align="center"><input type="submit" value="ajouter"</td></tr>';
|
print "<tr $bc[1]>".'<td colspan="5" align="center"><input type="submit" value="ajouter"</td></tr>';
|
||||||
|
|
||||||
print "</table></form>";
|
print "</table></form>";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter(" - <em>Dernière modification $Date$ révision $Revision$</em>");
|
llxFooter(" - <em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user