This commit is contained in:
admin
2026-03-04 00:35:51 +09:00
parent 079057ef41
commit 99d16d8219
5 changed files with 1012 additions and 72 deletions

View File

@@ -44,10 +44,11 @@
<table>
<thead>
<tr>
<th>科目コード</th>
<th style="width: 80px">科目コード</th>
<th>科目名</th>
<th>借方</th>
<th>貸方</th>
<th>摘要(行)</th>
</tr>
</thead>
<tbody id="lines"></tbody>
@@ -123,6 +124,7 @@
<td style="text-align:right">${
line.credit > 0 ? line.credit.toLocaleString() : ""
}</td>
<td>${line.line_description || ""}</td>
`;
tbody.appendChild(tr);
@@ -137,6 +139,7 @@
<td colspan="2" style="text-align:center">合計</td>
<td style="text-align:right">${totalDebit.toLocaleString()}</td>
<td style="text-align:right">${totalCredit.toLocaleString()}</td>
<td></td>
`;
tbody.appendChild(totalRow);
}