修正
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user