借方總計等於貸方總計,試算表正確
差額: NT$ {{ number_format(abs($difference), 2) }} ({{ $difference > 0 ? '借方多' : '貸方多' }})
| 科目代碼 | 科目名稱 | 借方 | 貸方 |
|---|---|---|---|
| {{ $item['account']->account_code }} | {{ $item['account']->account_name_zh }} {{ $item['account']->account_name_en }} | {{ $item['debit_total'] > 0 ? number_format($item['debit_total'], 2) : '' }} | {{ $item['credit_total'] > 0 ? number_format($item['credit_total'], 2) : '' }} |
| 小計 | {{ $typeDebitTotal > 0 ? number_format($typeDebitTotal, 2) : '' }} | {{ $typeCreditTotal > 0 ? number_format($typeCreditTotal, 2) : '' }} | |
| 總計 |
借方
NT$ {{ number_format($grandDebitTotal, 2) }}
|
貸方
NT$ {{ number_format($grandCreditTotal, 2) }}
|
差額
NT$ {{ number_format(abs($difference), 2) }}
|