mirror of
https://github.com/itflow-org/itflow
synced 2026-03-23 14:05:38 +00:00
Merge pull request #819 from twetech/fix-collections-formatting
Add missing currency variable
This commit is contained in:
@@ -57,6 +57,9 @@
|
|||||||
ORDER BY
|
ORDER BY
|
||||||
months_behind DESC;";
|
months_behind DESC;";
|
||||||
$result_client_balance_report = mysqli_query($mysqli, $sql_client_balance_report);
|
$result_client_balance_report = mysqli_query($mysqli, $sql_client_balance_report);
|
||||||
|
|
||||||
|
//get currency format from settings
|
||||||
|
$config_currency_code = getSettingValue($mysqli, "company_currency");
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="card card-dark">
|
<div class="card card-dark">
|
||||||
@@ -97,11 +100,11 @@
|
|||||||
|
|
||||||
echo "<tr>";
|
echo "<tr>";
|
||||||
echo "<td><a href='client_details.php?client_id=$client_id'>$client_name</a></td>";
|
echo "<td><a href='client_details.php?client_id=$client_id'>$client_name</a></td>";
|
||||||
echo "<td class='text-right'>$formatted_balance</td>";
|
echo "<td>$formatted_balance</td>";
|
||||||
echo "<td>$billing_contact_phone</td>";
|
echo "<td>$billing_contact_phone</td>";
|
||||||
echo "<td class='text-right'>$formatted_recurring_monthly_total</td>";
|
echo "<td>$formatted_recurring_monthly_total</td>";
|
||||||
echo "<td class='text-right'>$formatted_behind_amount</td>";
|
echo "<td>$formatted_behind_amount</td>";
|
||||||
echo "<td class='text-right'>$months_behind</td>";
|
echo "<td>$months_behind</td>";
|
||||||
echo "</tr>";
|
echo "</tr>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user