Look: Modifications esthétiques mineures
This commit is contained in:
parent
5dc3ebbc95
commit
4c6e7c75f8
@ -289,7 +289,7 @@ if ($account > 0)
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td nowrap><input name="dateoy" class="flat" type="text" size="2" value="'.strftime("%Y",time()).'" maxlength="4">';
|
print '<td nowrap><input name="dateoy" class="flat" type="text" size="2" value="'.strftime("%Y",time()).'" maxlength="4">';
|
||||||
print '<input name="dateo" class="flat" type="text" size="2" maxlength="4"></td>';
|
print '<input name="dateo" class="flat" type="text" size="2" maxlength="4"></td>';
|
||||||
print '<td colspan="2"><select name="operation">';
|
print '<td colspan="2" nowrap><select class="flat" name="operation">';
|
||||||
print '<option value="CB">CB';
|
print '<option value="CB">CB';
|
||||||
print '<option value="CHQ">CHQ';
|
print '<option value="CHQ">CHQ';
|
||||||
print '<option value="DEP">DEP';
|
print '<option value="DEP">DEP';
|
||||||
@ -303,7 +303,7 @@ if ($account > 0)
|
|||||||
print '<td align=right><input name="debit" class="flat" type="text" size="6"></td>';
|
print '<td align=right><input name="debit" class="flat" type="text" size="6"></td>';
|
||||||
print '<td align=right><input name="credit" class="flat" type="text" size="6"></td>';
|
print '<td align=right><input name="credit" class="flat" type="text" size="6"></td>';
|
||||||
print "<td colspan=\"2\" align=\"center\">";
|
print "<td colspan=\"2\" align=\"center\">";
|
||||||
print "<select name=\"cat1\">$options</select>";
|
print '<select class="flat" name="cat1">'.$options.'</select>';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print "</form>";
|
print "</form>";
|
||||||
}
|
}
|
||||||
@ -318,7 +318,7 @@ else
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
llxFooter('$Date$ - $Revision$');
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -344,7 +344,7 @@ function _print_lines($db,$result,$sql,$acct)
|
|||||||
{
|
{
|
||||||
$sep = 1 ;
|
$sep = 1 ;
|
||||||
print "<tr><td align=\"right\" colspan=\"6\"> </td>";
|
print "<tr><td align=\"right\" colspan=\"6\"> </td>";
|
||||||
print "<td align=\"right\"><b>".price($total - $objp->amount)."</b></td>";
|
print "<td align=\"right\" nowrap><b>".price($total - $objp->amount)."</b></td>";
|
||||||
print "<td> </td>";
|
print "<td> </td>";
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
}
|
}
|
||||||
@ -369,22 +369,22 @@ function _print_lines($db,$result,$sql,$acct)
|
|||||||
|
|
||||||
if ($objp->amount < 0)
|
if ($objp->amount < 0)
|
||||||
{
|
{
|
||||||
print "<td align=\"right\">".price($objp->amount * -1)."</td><td> </td>\n";
|
print "<td align=\"right\" nowrap>".price($objp->amount * -1)."</td><td> </td>\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "<td> </td><td align=\"right\">".price($objp->amount)."</td>\n";
|
print "<td> </td><td align=\"right\" nowrap>".price($objp->amount)."</td>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($action !='search')
|
if ($action !='search')
|
||||||
{
|
{
|
||||||
if ($total > 0)
|
if ($total > 0)
|
||||||
{
|
{
|
||||||
print '<td align="right">'.price($total)."</td>\n";
|
print '<td align="right" nowrap>'.price($total)."</td>\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print "<td align=\"right\"><b>".price($total)."</b></td>\n";
|
print "<td align=\"right\" nowrap><b>".price($total)."</b></td>\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user