Skip to content

Commit

Permalink
Merge pull request coral-erm#532 from biblibre/Fix_library_number_das…
Browse files Browse the repository at this point in the history
…hboard

Dashboard fix: payment amount should be the last column
  • Loading branch information
veggiematts authored Feb 11, 2019
2 parents 5d49426 + f7d85ec commit 1860a0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/ajax_htmldata/getDashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
echo "<th>" . _("Resource Type") . "</th>";
echo "<th>" . _("Subject") . "</th>";
echo "<th>" . _("Acquisition Type") . "</th>";
echo "<th>" . _("Payment amount") . "</th>";
echo "<th>" . _("Library number") . "</th>";
echo "<th>" . _("Payment amount") . "</th>";
echo "</tr></thead>";
echo "<tbody>";
$count = sizeof($results);
Expand All @@ -38,8 +38,8 @@
$result['generalSubject'] . $result['detailedSubject'];
echo "<td>" . $subject . "</td>";
echo "<td>" . $result['acquisitionType'] . "</td>";
echo "<td>" . $result['paymentAmount'] . "</td>";
echo "<td>" . $result['libraryNumber'] . "</td>";
echo "<td>" . $result['paymentAmount'] . "</td>";
echo "</tr>";
} else {
echo "<tr><td colspan='5'><b>";
Expand Down

0 comments on commit 1860a0e

Please sign in to comment.