profitloss
This commit is contained in:
parent
15b3e542a3
commit
b1c6bad445
@ -245,6 +245,15 @@ $BIBAccounts = new BIBAccounts();
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<?php
|
||||
// Update column totals
|
||||
$incomes_totalOpeningDr += ($group->posting_side == "DR") ? $group->opening_balance : 0;
|
||||
$incomes_totalOpeningCr += ($group->posting_side == "CR") ? $group->opening_balance : 0;
|
||||
$incomes_totalThisYearDr += ($group->posting_side == "DR") ? $group->regular_balance : 0;
|
||||
$incomes_totalThisYearCr += ($group->posting_side == "CR") ? $group->regular_balance : 0;
|
||||
$incomes_totalClosingDr += ($group->posting_side == "DR") ? $group->closing_balance : 0;
|
||||
$incomes_totalClosingCr += ($group->posting_side == "CR") ? $group->closing_balance : 0;
|
||||
?>
|
||||
|
||||
<?php endforeach; ?>
|
||||
|
||||
@ -252,7 +261,7 @@ $BIBAccounts = new BIBAccounts();
|
||||
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<?php $PL = $incomes_totalClosingCr - $totalClosingDr; ?>
|
||||
<?php $PL = $incomes_totalClosingCr - $incomes_totalClosingDr; ?>
|
||||
<tr>
|
||||
<th class="p-1">Total Incomes</th>
|
||||
<th class="cr closing-cr">
|
||||
@ -311,8 +320,8 @@ $BIBAccounts = new BIBAccounts();
|
||||
<?php $PL = $incomes_totalClosingCr - $totalClosingDr; ?>
|
||||
<?php if ($incomes_totalClosingCr > $totalClosingDr) : ?>
|
||||
<tr>
|
||||
<th></th>
|
||||
<th></th>
|
||||
<!-- <th></th>
|
||||
<th></th> -->
|
||||
<th class="pl-1">Total Profit</th>
|
||||
<th class="cr closing-cr text-right"><?php echo myCurrency($PL); ?></th>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user