2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

align right columns with counted total

This commit is contained in:
Alex
2015-11-16 20:47:46 +03:00
parent 7901ecc6cc
commit e16c26c876

View File

@@ -135,14 +135,15 @@ function xhtml_table($content,$fields,$head = false,$class = "tclass",$highlight
foreach ($fields as $e)
{
print "<td>";
if (isset($row[$e])) print $row[$e];
print "</td>";
if ($total && in_array($e,$total))
{
if (!isset($tot[$e]))
$tot[$e] = 0;
$tot[$e] += $row[$e];
if (isset($row[$e])) {
if ($total && in_array($e,$total)) {
if (!isset($tot[$e])) $tot[$e] = 0;
$tot[$e] += $row[$e];
print "<span class=\"pull-right\">" . $row[$e] . "</span>";
}
else print $row[$e];
}
print "</td>";
}
print "</tr>";
}
@@ -151,7 +152,7 @@ function xhtml_table($content,$fields,$head = false,$class = "tclass",$highlight
print "</tbody><tfoot><tr>";
foreach ($fields as $e)
{
print "<td><b>";
print "<td><b class=\"pull-right\">";
if (in_array($e,$total))
print $tot[$e];
print "</b></td>";