Balance Sheet
As of
| Account Type |
Account Name |
Account Balance |
| Assets |
= 11 && $account_type <= 19) {
$balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses'];
print_row($row, $balance, $currency_format);
$total_assets += $balance;
$formatted_total_assets = numfmt_format_currency($currency_format, $total_assets, $row['account_currency_code']);
}
}
?>
|
Total Assets |
|
| Liabilities |
= 21 && $account_type <= 29) {
$balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses'];
print_row($row, $balance, $currency_format);
$total_liabilities += $balance;
$formatted_total_liabilities = numfmt_format_currency($currency_format, $total_liabilities, $row['account_currency_code']);
}
}
?>
|
Total Liabilities |
|
| Equity |
= 30) {
$balance = $row['opening_balance'] + $row['total_payments'] + $row['total_revenues'] - $row['total_expenses'];
print_row($row, $balance, $currency_format);
$total_equity += $balance;
$formatted_total_equity = numfmt_format_currency($currency_format, $total_equity, $row['account_currency_code']);
}
}
?>
|
Total Equity |
|
|
Total Liabilities and Equity |
|
|
Unbalanced:
|
";
echo " | ";
echo "$account_name | ";
echo "$formatted_balance | ";
echo "";
}
?>