CakeAccounting/templates/DeExternalAccountStatements/view.php

45 lines
2.2 KiB
PHP
Raw Normal View History

2025-08-09 21:07:39 +00:00
<?php
/**
* @var \App\View\AppView $this
* @var \Cake\Datasource\EntityInterface $deExternalAccountStatement
*/
?>
<div class="row">
<aside class="column">
<div class="side-nav">
<h4 class="heading"><?= __('Actions') ?></h4>
<?= $this->Html->link(__('Edit De External Account Statement'), ['action' => 'edit', $deExternalAccountStatement->external_account_number], ['class' => 'side-nav-item']) ?>
<?= $this->Form->postLink(__('Delete De External Account Statement'), ['action' => 'delete', $deExternalAccountStatement->external_account_number], ['confirm' => __('Are you sure you want to delete # {0}?', $deExternalAccountStatement->external_account_number), 'class' => 'side-nav-item']) ?>
<?= $this->Html->link(__('List De External Account Statements'), ['action' => 'index'], ['class' => 'side-nav-item']) ?>
<?= $this->Html->link(__('New De External Account Statement'), ['action' => 'add'], ['class' => 'side-nav-item']) ?>
</div>
</aside>
<div class="column column-80">
<div class="deExternalAccountStatements view content">
<h3><?= h($deExternalAccountStatement->Array) ?></h3>
<table>
<tr>
<th><?= __('External Account Number') ?></th>
<td><?= h($deExternalAccountStatement->external_account_number) ?></td>
</tr>
<tr>
<th><?= __('Closing Balance') ?></th>
<td><?= $this->Number->format($deExternalAccountStatement->closing_balance) ?></td>
</tr>
<tr>
<th><?= __('Total Credit') ?></th>
<td><?= $this->Number->format($deExternalAccountStatement->total_credit) ?></td>
</tr>
<tr>
<th><?= __('Total Debit') ?></th>
<td><?= $this->Number->format($deExternalAccountStatement->total_debit) ?></td>
</tr>
<tr>
<th><?= __('Statement Date') ?></th>
<td><?= h($deExternalAccountStatement->statement_date) ?></td>
</tr>
</table>
</div>
</div>
</div>