{{ session('status') }}
{{ session('error') }}
調節後餘額與銀行對帳單餘額不符,差異金額: NT$ {{ number_format($reconciliation->discrepancy_amount, 2) }}
| 支票號碼 | 金額 | 說明 |
|---|---|---|
| {{ $check['check_number'] ?? 'N/A' }} | NT$ {{ number_format($check['amount'], 2) }} | {{ $check['description'] ?? '' }} |
| 存款日期 | 金額 | 說明 |
|---|---|---|
| {{ $deposit['date'] ?? 'N/A' }} | NT$ {{ number_format($deposit['amount'], 2) }} | {{ $deposit['description'] ?? '' }} |
| 金額 | 說明 |
|---|---|
| NT$ {{ number_format($charge['amount'], 2) }} | {{ $charge['description'] ?? '' }} |
此調節表待會計覆核
@can('review_bank_reconciliation') @if($reconciliation->canBeReviewed()) @endif @endcan @endif此調節表待主管核准
@can('approve_bank_reconciliation') @if($reconciliation->canBeApproved()) @endif @endcan @else等待會計覆核完成後,方可進行主管核准
@endif @endif