37 lines
770 B
HTML
37 lines
770 B
HTML
<!DOCTYPE html>
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>試算表</title>
|
|
<link rel="stylesheet" href="css/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1>試算表</h1>
|
|
|
|
<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>
|