This commit is contained in:
Raju Shrestha 2024-08-26 13:39:34 +05:45
parent a5d29a202e
commit 31e7f8de87

View File

@ -112,6 +112,9 @@ $BIBAccounts = new BIBAccounts();
border: 1px solid #ddd; border: 1px solid #ddd;
border-collapse: collapse; border-collapse: collapse;
} }
.text-bold{
font-weight: 900;
}
</style> </style>
<div class="content-wrapper"> <div class="content-wrapper">
<div class="content"> <div class="content">
@ -264,7 +267,7 @@ $BIBAccounts = new BIBAccounts();
<?php $PL = $incomes_totalClosingCr - $incomes_totalClosingDr; ?> <?php $PL = $incomes_totalClosingCr - $incomes_totalClosingDr; ?>
<tr> <tr>
<th class="p-1">Total Incomes</th> <th class="p-1">Total Incomes</th>
<th class="cr closing-cr"> <th class="cr closing-cr text-bold">
<?php if ($PL > 0) : ?> <?php if ($PL > 0) : ?>
<?php echo myCurrency($incomes_totalClosingCr); ?> <?php echo myCurrency($incomes_totalClosingCr); ?>
<?php else : ?> <?php else : ?>
@ -323,7 +326,7 @@ $BIBAccounts = new BIBAccounts();
<!-- <th></th> <!-- <th></th>
<th></th> --> <th></th> -->
<th class="pl-1">Total Profit</th> <th class="pl-1">Total Profit</th>
<th class="cr closing-cr text-right"><?php echo myCurrency($PL); ?></th> <th class="cr closing-cr text-right text-bold"><?php echo myCurrency($PL); ?></th>
</tr> </tr>
@ -331,7 +334,7 @@ $BIBAccounts = new BIBAccounts();
</tbody> </tbody>
<tfoot> <tfoot>
<th class="pl-1">Total Expenses</th> <th class="pl-1">Total Expenses</th>
<th class="dr closing-dr"> <th class="dr closing-dr text-bold">
<?php if ($PL > 0) : ?> <?php if ($PL > 0) : ?>
<?php echo myCurrency($totalClosingDr + abs($PL)); ?> <?php echo myCurrency($totalClosingDr + abs($PL)); ?>