This commit is contained in:
admin
2026-02-07 20:04:42 +09:00
parent 331953bb7f
commit c60cbf2d9a
29 changed files with 1851 additions and 1246 deletions

View File

@@ -115,6 +115,22 @@
</style>
</head>
<body>
<button
onclick="location.href = 'index.html'"
class="back-button"
style="
margin: 0 0 20px 0;
padding: 8px 16px;
background: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
"
>
← 首ページに戻る
</button>
<h2>仕訳入力</h2>
<div class="row">
@@ -295,9 +311,7 @@
<div id="printArea"></div>
<script>
let rowSeq = 0; // 各行唯一ID
const API = "http://127.0.0.1:18080";
const API = "";
// 千分位カンマフォーマット関数
function formatNumberInput(input) {
@@ -909,7 +923,7 @@
}
}
const API_BASE = "http://127.0.0.1:18080";
const API_BASE = "";
async function callApi(path) {
try {