desktop修正

This commit is contained in:
admin
2025-12-14 23:54:48 +09:00
parent f9f5eec35e
commit 74dcb88fe6
25 changed files with 1068 additions and 157 deletions

View File

@@ -2,15 +2,35 @@
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>NJTS 会計システム</title>
<title>試算表</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>NJTS 会計システム</h1>
<h1>試算表</h1>
<ul>
<li><a href="accounts.html">科目マスタ</a></li>
<li><a href="trial-balance.html">試算表</a></li>
</ul>
<label>
期間:
<input type="date" id="from" />
<input type="date" id="to" />
</label>
<button onclick="loadTrialBalance()">表示</button>
<table id="trial-table">
<thead>
<tr>
<th>科目コード</th>
<th>科目名</th>
<th>期首</th>
<th>借方</th>
<th>贷方</th>
<th>期末</th>
</tr>
</thead>
<tbody></tbody>
</table>
<script src="js/api.js"></script>
<script src="js/trial_balance.js"></script>
</body>
</html>