mirror of https://github.com/itflow-org/itflow
436 lines
26 KiB
PHP
436 lines
26 KiB
PHP
<?php
|
|
|
|
require_once("inc_all_reports.php");
|
|
validateAccountantRole();
|
|
|
|
if (isset($_GET['year'])) {
|
|
$year = intval($_GET['year']);
|
|
} else {
|
|
$year = date('Y');
|
|
}
|
|
|
|
//GET unique years from expenses, payments and revenues
|
|
$sql_all_years = mysqli_query($mysqli, "SELECT YEAR(expense_date) AS all_years FROM expenses
|
|
UNION DISTINCT SELECT YEAR(payment_date) FROM payments
|
|
UNION DISTINCT SELECT YEAR(revenue_date) FROM revenues
|
|
ORDER BY all_years DESC"
|
|
);
|
|
|
|
$sql_categories_income = mysqli_query($mysqli, "SELECT * FROM categories WHERE category_type = 'Income' ORDER BY category_name ASC");
|
|
|
|
$sql_categories_expense = mysqli_query($mysqli, "SELECT * FROM categories WHERE category_type = 'Expense' ORDER BY category_name ASC");
|
|
|
|
|
|
?>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header py-2">
|
|
<h3 class="card-title mt-2"><i class="fas fa-fw fa-balance-scale mr-2"></i>Profit & Loss</h3>
|
|
<div class="card-tools">
|
|
<button type="button" class="btn btn-primary d-print-none" onclick="window.print();"><i class="fas fa-fw fa-print mr-2"></i>Print</button>
|
|
</div>
|
|
</div>
|
|
<div class="card-body p-0">
|
|
<form class="p-3">
|
|
<select onchange="this.form.submit()" class="form-control" name="year">
|
|
<?php
|
|
|
|
while ($row = mysqli_fetch_array($sql_all_years)) {
|
|
$all_years = intval($row['all_years']);
|
|
?>
|
|
<option <?php if ($year == $all_years) { ?> selected <?php } ?> > <?php echo $all_years; ?></option>
|
|
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</select>
|
|
</form>
|
|
<div class="table-responsive-sm">
|
|
<table class="table table-sm">
|
|
<thead class="text-dark">
|
|
<tr>
|
|
<th></th>
|
|
<th class="text-right">Jan-Mar</th>
|
|
<th class="text-right">Apr-Jun</th>
|
|
<th class="text-right">Jul-Sep</th>
|
|
<th class="text-right">Oct-Dec</th>
|
|
<th class="text-right">Total</th>
|
|
</tr>
|
|
<tr>
|
|
<th><br><br>Income</th>
|
|
<th colspan="5"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
while ($row = mysqli_fetch_array($sql_categories_income)) {
|
|
$category_id = intval($row['category_id']);
|
|
$category_name = nullable_htmlentities($row['category_name']);
|
|
?>
|
|
|
|
<tr>
|
|
<td><?php echo $category_name; ?></td>
|
|
|
|
<?php
|
|
|
|
$payment_amount_for_quarter_one = 0;
|
|
|
|
for($month = 1; $month<=3; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND invoice_category_id = $category_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_amount_for_month = floatval($row['payment_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_category_id = $category_id AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_amount_for_month = floatval($row['revenue_amount_for_month']);
|
|
|
|
$payment_amount_for_month = $payment_amount_for_month + $revenue_amount_for_month;
|
|
|
|
$payment_amount_for_quarter_one = $payment_amount_for_quarter_one + $payment_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_amount_for_quarter_one, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$payment_amount_for_quarter_two = 0;
|
|
|
|
for($month = 4; $month<=6; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND invoice_category_id = $category_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_amount_for_month = floatval($row['payment_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_category_id = $category_id AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_amount_for_month = floatval($row['revenue_amount_for_month']);
|
|
|
|
$payment_amount_for_month = $payment_amount_for_month + $revenue_amount_for_month;
|
|
|
|
$payment_amount_for_quarter_two = $payment_amount_for_quarter_two + $payment_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_amount_for_quarter_two, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$payment_amount_for_quarter_three = 0;
|
|
|
|
for($month = 7; $month<=9; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND invoice_category_id = $category_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_amount_for_month = floatval($row['payment_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_category_id = $category_id AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_amount_for_month = floatval($row['revenue_amount_for_month']);
|
|
|
|
$payment_amount_for_month = $payment_amount_for_month + $revenue_amount_for_month;
|
|
$payment_amount_for_quarter_three = $payment_amount_for_quarter_three + $payment_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_amount_for_quarter_three, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$payment_amount_for_quarter_four = 0;
|
|
|
|
for($month = 10; $month<=12; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND invoice_category_id = $category_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_amount_for_month = floatval($row['payment_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_amount_for_month FROM revenues WHERE revenue_category_id = $category_id AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_amount_for_month = floatval($row['revenue_amount_for_month']);
|
|
|
|
$payment_amount_for_month = $payment_amount_for_month + $revenue_amount_for_month;
|
|
$payment_amount_for_quarter_four = $payment_amount_for_quarter_four + $payment_amount_for_month;
|
|
}
|
|
|
|
$total_payments_for_all_four_quarters = $payment_amount_for_quarter_one + $payment_amount_for_quarter_two + $payment_amount_for_quarter_three + $payment_amount_for_quarter_four;
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_amount_for_quarter_four, $session_company_currency); ?></td>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $total_payments_for_all_four_quarters, $session_company_currency); ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$total_payment_for_all_months = 0;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
|
<th>Gross Profit</th>
|
|
<?php
|
|
|
|
$payment_total_amount_for_quarter_one = 0;
|
|
|
|
for($month = 1; $month<=3; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_total_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_total_amount_for_month = floatval($row['payment_total_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_total_amount_for_month FROM revenues WHERE revenue_category_id > 0 AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_total_amount_for_month = floatval($row['revenue_total_amount_for_month']);
|
|
|
|
$payment_total_amount_for_month = $payment_total_amount_for_month + $revenue_total_amount_for_month;
|
|
|
|
$payment_total_amount_for_quarter_one = $payment_total_amount_for_quarter_one + $payment_total_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_total_amount_for_quarter_one, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$payment_total_amount_for_quarter_two = 0;
|
|
|
|
for($month = 4; $month<=6; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_total_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_total_amount_for_month = floatval($row['payment_total_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_total_amount_for_month FROM revenues WHERE revenue_category_id > 0 AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_total_amount_for_month = floatval($row['revenue_total_amount_for_month']);
|
|
|
|
$payment_total_amount_for_month = $payment_total_amount_for_month + $revenue_total_amount_for_month;
|
|
|
|
$payment_total_amount_for_quarter_two = $payment_total_amount_for_quarter_two + $payment_total_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_total_amount_for_quarter_two, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$payment_total_amount_for_quarter_three = 0;
|
|
|
|
for($month = 7; $month<=9; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_total_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_total_amount_for_month = floatval($row['payment_total_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_total_amount_for_month FROM revenues WHERE revenue_category_id > 0 AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_total_amount_for_month = floatval($row['revenue_total_amount_for_month']);
|
|
|
|
$payment_total_amount_for_month = $payment_total_amount_for_month + $revenue_total_amount_for_month;
|
|
|
|
$payment_total_amount_for_quarter_three = $payment_total_amount_for_quarter_three + $payment_total_amount_for_month;
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_total_amount_for_quarter_three, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$payment_total_amount_for_quarter_four = 0;
|
|
|
|
for($month = 10; $month<=12; $month++) {
|
|
$sql_payments = mysqli_query($mysqli, "SELECT SUM(payment_amount) AS payment_total_amount_for_month FROM payments, invoices WHERE payment_invoice_id = invoice_id AND YEAR(payment_date) = $year AND MONTH(payment_date) = $month");
|
|
$row = mysqli_fetch_array($sql_payments);
|
|
$payment_total_amount_for_month = floatval($row['payment_total_amount_for_month']);
|
|
|
|
$sql_revenues = mysqli_query($mysqli, "SELECT SUM(revenue_amount) AS revenue_total_amount_for_month FROM revenues WHERE revenue_category_id > 0 AND YEAR(revenue_date) = $year AND MONTH(revenue_date) = $month");
|
|
$row = mysqli_fetch_array($sql_revenues);
|
|
$revenue_total_amount_for_month = floatval($row['revenue_total_amount_for_month']);
|
|
|
|
$payment_total_amount_for_month = $payment_total_amount_for_month + $revenue_total_amount_for_month;
|
|
|
|
$payment_total_amount_for_quarter_four = $payment_total_amount_for_quarter_four + $payment_total_amount_for_month;
|
|
}
|
|
|
|
$total_payments_for_all_four_quarters = $payment_total_amount_for_quarter_one + $payment_total_amount_for_quarter_two + $payment_total_amount_for_quarter_three + $payment_total_amount_for_quarter_four;
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $payment_total_amount_for_quarter_four, $session_company_currency); ?></th>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $total_payments_for_all_four_quarters, $session_company_currency); ?></th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th><br><br>Expenses</th>
|
|
<th colspan="5"></th>
|
|
</tr>
|
|
<?php
|
|
while ($row = mysqli_fetch_array($sql_categories_expense)) {
|
|
$category_id = intval($row['category_id']);
|
|
$category_name = nullable_htmlentities($row['category_name']);
|
|
?>
|
|
|
|
<tr>
|
|
<td><?php echo $category_name; ?></td>
|
|
|
|
<?php
|
|
|
|
$expense_amount_for_quarter_one = 0;
|
|
|
|
for($month = 1; $month<=3; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_amount_for_month FROM expenses WHERE expense_category_id = $category_id AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_amount_for_quarter_one = $expense_amount_for_quarter_one + floatval($row['expense_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_amount_for_quarter_one, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$expense_amount_for_quarter_two = 0;
|
|
|
|
for($month = 4; $month<=6; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_amount_for_month FROM expenses WHERE expense_category_id = $category_id AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_amount_for_quarter_two = $expense_amount_for_quarter_two + floatval($row['expense_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_amount_for_quarter_two, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$expense_amount_for_quarter_three = 0;
|
|
|
|
for($month = 7; $month<=9; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_amount_for_month FROM expenses WHERE expense_category_id = $category_id AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_amount_for_quarter_three = $expense_amount_for_quarter_three + floatval($row['expense_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_amount_for_quarter_three, $session_company_currency); ?></td>
|
|
|
|
<?php
|
|
|
|
$expense_amount_for_quarter_four = 0;
|
|
|
|
for($month = 10; $month<=12; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_amount_for_month FROM expenses WHERE expense_category_id = $category_id AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_amount_for_quarter_four = $expense_amount_for_quarter_four + floatval($row['expense_amount_for_month']);
|
|
}
|
|
|
|
$total_expenses_for_all_four_quarters = $expense_amount_for_quarter_one + $expense_amount_for_quarter_two + $expense_amount_for_quarter_three + $expense_amount_for_quarter_four;
|
|
|
|
?>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_amount_for_quarter_four, $session_company_currency); ?></td>
|
|
|
|
<td class="text-right"><?php echo numfmt_format_currency($currency_format, $total_expenses_for_all_four_quarters, $session_company_currency); ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
$total_expense_for_all_months = 0;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<tr>
|
|
<th>Total Expenses<br><br><br></th>
|
|
<?php
|
|
|
|
$expense_total_amount_for_quarter_one = 0;
|
|
|
|
for($month = 1; $month<=3; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_total_amount_for_month FROM expenses WHERE expense_category_id > 0 AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month AND expense_vendor_id > 0");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_total_amount_for_quarter_one = $expense_total_amount_for_quarter_one + floatval($row['expense_total_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_total_amount_for_quarter_one, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$expense_total_amount_for_quarter_two = 0;
|
|
|
|
for($month = 4; $month<=6; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_total_amount_for_month FROM expenses WHERE expense_category_id > 0 AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month AND expense_vendor_id > 0");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_total_amount_for_quarter_two = $expense_total_amount_for_quarter_two + floatval($row['expense_total_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_amount_for_quarter_two, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$expense_total_amount_for_quarter_three = 0;
|
|
|
|
for($month = 7; $month<=9; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_total_amount_for_month FROM expenses WHERE expense_category_id > 0 AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month AND expense_vendor_id > 0");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_total_amount_for_quarter_three = $expense_total_amount_for_quarter_three + floatval($row['expense_total_amount_for_month']);
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_total_amount_for_quarter_three, $session_company_currency); ?></th>
|
|
|
|
<?php
|
|
|
|
$expense_total_amount_for_quarter_four = 0;
|
|
|
|
for($month = 10; $month<=12; $month++) {
|
|
$sql_expenses = mysqli_query($mysqli, "SELECT SUM(expense_amount) AS expense_total_amount_for_month FROM expenses WHERE expense_category_id > 0 AND YEAR(expense_date) = $year AND MONTH(expense_date) = $month AND expense_vendor_id > 0");
|
|
$row = mysqli_fetch_array($sql_expenses);
|
|
$expense_total_amount_for_quarter_four = $expense_total_amount_for_quarter_four + floatval($row['expense_total_amount_for_month']);
|
|
}
|
|
|
|
$total_expenses_for_all_four_quarters = $expense_total_amount_for_quarter_one + $expense_total_amount_for_quarter_two + $expense_total_amount_for_quarter_three + $expense_total_amount_for_quarter_four;
|
|
|
|
?>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $expense_total_amount_for_quarter_four, $session_company_currency); ?></th>
|
|
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $total_expenses_for_all_four_quarters, $session_company_currency); ?></th>
|
|
</tr>
|
|
<tr>
|
|
<?php
|
|
$net_profit_quarter_one = $payment_total_amount_for_quarter_one - $expense_total_amount_for_quarter_one;
|
|
$net_profit_quarter_two = $payment_total_amount_for_quarter_two - $expense_total_amount_for_quarter_two;
|
|
$net_profit_quarter_three = $payment_total_amount_for_quarter_three - $expense_total_amount_for_quarter_three;
|
|
$net_profit_quarter_four = $payment_total_amount_for_quarter_four - $expense_total_amount_for_quarter_four;
|
|
$net_profit_year = $total_payments_for_all_four_quarters - $total_expenses_for_all_four_quarters;
|
|
?>
|
|
|
|
<th>Net Profit</th>
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $net_profit_quarter_one, $session_company_currency); ?></th>
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $net_profit_quarter_two, $session_company_currency); ?></th>
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $net_profit_quarter_three, $session_company_currency); ?></th>
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $net_profit_quarter_four, $session_company_currency); ?></th>
|
|
<th class="text-right"><?php echo numfmt_format_currency($currency_format, $net_profit_year, $session_company_currency); ?></th>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php require_once("footer.php");
|