Files
njts-accounting-core/frontend/journal.html
2025-12-14 23:54:48 +09:00

48 lines
909 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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="journal-date" />
</label>
<br /><br />
<label>
摘要:
<input type="text" id="description" size="40" />
</label>
<br /><br />
<table id="lines-table">
<thead>
<tr>
<th>科目ID</th>
<th>借方</th>
<th>贷方</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<button onclick="addLine()"> 行追加</button>
<br /><br />
<button onclick="submitJournal()">保存</button>
<a href="index.html">← 戻る</a>
<script src="js/api.js"></script>
<script src="js/journal.js"></script>
</body>
</html>