Files
njts-accounting-core/backend/sql/insert_opening_balances_2024.sql
2026-01-13 16:29:34 +09:00

51 lines
1.7 KiB
SQL
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.
-- 2024年度2024年6月1日2025年5月31日期首残高データ
-- ★残高試算表_20250724.pdfより
-- 既存データを削除2024年度のみ
DELETE FROM opening_balances WHERE fiscal_year = 2024;
-- 期首残高データの挿入
INSERT INTO opening_balances (fiscal_year, account_id, opening_debit, opening_credit) VALUES
-- 現金101
(2024, (SELECT account_id FROM accounts WHERE account_code = '101'), 878375, 0),
-- 普通預金102- UFJ/0788058 として登録
(2024, (SELECT account_id FROM accounts WHERE account_code = '102'), 11246013, 0),
-- 売掛金201
(2024, (SELECT account_id FROM accounts WHERE account_code = '201'), 5269872, 0),
-- 仮払金203
(2024, (SELECT account_id FROM accounts WHERE account_code = '203'), 1284834, 0),
-- 買掛金501
(2024, (SELECT account_id FROM accounts WHERE account_code = '501'), 0, 9933067),
-- 未払金502
(2024, (SELECT account_id FROM accounts WHERE account_code = '502'), 0, 840000),
-- 未払法人税等504
(2024, (SELECT account_id FROM accounts WHERE account_code = '504'), 0, 94700),
-- 未払消費税等505
(2024, (SELECT account_id FROM accounts WHERE account_code = '505'), 0, 1498400),
-- 預り金506
(2024, (SELECT account_id FROM accounts WHERE account_code = '506'), 0, 61300),
-- 資本金601
(2024, (SELECT account_id FROM accounts WHERE account_code = '601'), 0, 6000000);
-- 繰越利益剰余金602は自動計算されるため入力不要
-- 確認用クエリ
SELECT
a.account_code,
a.account_name,
ob.opening_debit,
ob.opening_credit
FROM opening_balances ob
JOIN accounts a ON ob.account_id = a.account_id
WHERE ob.fiscal_year = 2024
ORDER BY a.account_code;