login画面追加
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<!doctype html>
|
||||
<html lang="ja">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<script src="js/auth.js"></script>
|
||||
<title>修正仕訳入力</title>
|
||||
<style>
|
||||
body {
|
||||
@@ -102,9 +103,8 @@
|
||||
|
||||
// ヘッダ反映
|
||||
document.getElementById("entryDate").value = srcData.entry_date;
|
||||
document.getElementById(
|
||||
"description"
|
||||
).value = `【修正後】${srcData.description}`;
|
||||
document.getElementById("description").value =
|
||||
`【修正後】${srcData.description}`;
|
||||
|
||||
// 明細反映
|
||||
srcData.lines.forEach((l) => addRow(l));
|
||||
@@ -126,7 +126,7 @@
|
||||
${accounts
|
||||
.map(
|
||||
(a) =>
|
||||
`<option value="${a.account_id}">${a.account_code} ${a.account_name}</option>`
|
||||
`<option value="${a.account_id}">${a.account_code} ${a.account_name}</option>`,
|
||||
)
|
||||
.join("")}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user