forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BankAccountBalances.php
63 lines (55 loc) · 2.48 KB
/
BankAccountBalances.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
// BankAccountBalances.php
// Shows bank accounts authorised for with balances
include('includes/session.php');
$Title = _('List of bank account balances');
$ViewTopic = 'GeneralLedger';
$BookMark = 'BankAccountBalances';
include('includes/header.php');
echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme,
'/images/bank.png" title="', // Icon image.
_('Bank Account Balances'), '" /> ', // Icon title.
_('Bank Account Balances'), '</p>',// Page title.
'<table>
<tr>
<th>', _('Bank Account'), '</th>
<th>', _('Account Name'), '</th>
<th>', _('Balance in account currency'), '</th>
<th>', _('Balance in functional currency'), '</th>
</tr>';
$SQL = "SELECT DISTINCT
bankaccounts.accountcode,
bankaccounts.bankaccountname,
bankaccounts.currcode
FROM bankaccounts
INNER JOIN bankaccountusers
ON bankaccounts.accountcode=bankaccountusers.accountcode
AND userid='" . $_SESSION['UserID'] . "'
ORDER BY bankaccounts.accountcode";
$ErrMsg = _('The bank accounts could not be retrieved because');
$DbgMsg = _('The SQL used to retrieve the bank accounts was');
$Result = DB_query($SQL, $ErrMsg, $DbgMsg);
if (DB_num_rows($Result) == 0) {
echo _('There are no bank accounts defined that you have authority to see');
} else {
while ($MyBankRow = DB_fetch_array($Result)) {
$CurrBalanceSQL = "SELECT SUM(amount) AS balance FROM banktrans WHERE bankact='" . $MyBankRow['accountcode'] . "'";
$CurrBalanceResult = DB_query($CurrBalanceSQL);
$CurrBalanceRow = DB_fetch_array($CurrBalanceResult);
$FuncBalanceSQL = "SELECT SUM(amount) AS balance FROM gltrans WHERE account='" . $MyBankRow['accountcode'] . "'";
$FuncBalanceResult = DB_query($FuncBalanceSQL);
$FuncBalanceRow = DB_fetch_array($FuncBalanceResult);
$DecimalPlacesSQL = "SELECT decimalplaces FROM currencies WHERE currabrev='" . $MyBankRow['currcode'] . "'";
$DecimalPlacesResult = DB_query($DecimalPlacesSQL);
$DecimalPlacesRow = DB_fetch_array($DecimalPlacesResult);
echo '<tr class="selection">
<td>', $MyBankRow['accountcode'], '</td>
<td>', $MyBankRow['bankaccountname'], '</td>
<td class="number">', locale_number_format($CurrBalanceRow['balance'], $DecimalPlacesRow['decimalplaces']), ' ', $MyBankRow['currcode'], '</td>
<td class="number">', locale_number_format($FuncBalanceRow['balance'], $_SESSION['CompanyRecord']['decimalplaces']), ' ', $_SESSION['CompanyRecord']['currencydefault'], '</td>
</tr>';
}
echo '</table>';
}
include('includes/footer.php');
?>