forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Z_CurrencySuppliersBalances.php
49 lines (39 loc) · 1.81 KB
/
Z_CurrencySuppliersBalances.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/* This script is an utility to show suppliers balances in total by currency. */
include ('includes/session.php');
$Title = _('Currency Supplier Balances');// Screen identificator.
$ViewTopic = 'SpecialUtilities';// Filename's id in ManualContents.php's TOC.
$BookMark = 'Z_CurrencySuppliersBalances';// Anchor's id in the manual's html document.
include('includes/header.php');
echo '<p class="page_title_text"><img alt="" src="'.$RootPath.'/css/'.$Theme.
'/images/supplier.png" title="' .
_('Show Local Currency Total Suppliers Balances') . '" /> ' .// Icon title.
_('Suppliers Balances By Currency Totals') . '</p>';// Page title.
$sql = "SELECT SUM(ovamount+ovgst-alloc) AS currencybalance,
currcode,
decimalplaces AS currdecimalplaces,
SUM((ovamount+ovgst-alloc)/supptrans.rate) AS localbalance
FROM supptrans INNER JOIN suppliers ON supptrans.supplierno=suppliers.supplierid
INNER JOIN currencies ON suppliers.currcode=currencies.currabrev
WHERE (ovamount+ovgst-alloc)<>0
GROUP BY currcode";
$result = DB_query($sql);
$LocalTotal =0;
echo '<table>';
while ($myrow=DB_fetch_array($result)){
echo '<tr>
<td>' . _('Total Supplier Balances in') . ' </td>
<td>' . $myrow['currcode'] . '</td>
<td class="number">' . locale_number_format($myrow['currencybalance'],$myrow['currdecimalplaces']) . '</td>
<td> ' . _('in') . ' ' . $_SESSION['CompanyRecord']['currencydefault'] . '</td>
<td class="number">' . locale_number_format($myrow['localbalance'],$_SESSION['CompanyRecord']['decimalplaces']) . '</td>
</tr>';
$LocalTotal += $myrow['localbalance'];
}
echo '<tr>
<td colspan="4">' . _('Total Balances in local currency') . ':</td>
<td class="number">' . locale_number_format($LocalTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</td>
</tr>';
echo '</table>';
include('includes/footer.php');
?>