This commit is contained in:
Sampanna Rimal
2024-08-11 17:29:32 +05:45
parent 0f5bafdf3e
commit 16246fbdeb
8 changed files with 28 additions and 15 deletions

View File

@ -38,6 +38,7 @@ $AccountCategories = $this->myaccounts->getChildAccountCategories();
$drTotal += $AccountCategory->dr;
$crTotal += $AccountCategory->cr;
?>
<!-- <?php //print_r($AccountCategory);die; ?> -->
<tr>
<td>
<a href="<?php echo site_url("accounts/reports/balance_by_ledger") . "?group=" . $AccountCategory->accategory_id; ?>">
@ -46,8 +47,8 @@ $AccountCategories = $this->myaccounts->getChildAccountCategories();
</td>
<td width="<?php echo $drWidth; ?>"><?php echo myCurrency($AccountCategory->dr); ?></td>
<td width="<?php echo $crWidth; ?>"><?php echo myCurrency($AccountCategory->cr); ?></td>
<td class="text-right">Balance</td>
<td class="text-center"><a href="#" class="btn btn-info btn-xs"><i class="fas fa-edit"></i> </a></td>
<td class="text-right"><?php echo myCurrency($AccountCategory->Balance); ?></td>
<td class="text-center"><a href="<?php echo site_url("accounts/reports/balance_by_ledger") . "?group=" . $AccountCategory->accategory_id; ?>" class="btn btn-info btn-xs"><i class="fas fa-eye"></i> </a></td>
</tr>
<?php endforeach; ?>
</tbody>