freee-demo-kit 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +280 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +35 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/auth.d.ts +3 -0
- package/dist/commands/auth.d.ts.map +1 -0
- package/dist/commands/auth.js +57 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/corrupt.d.ts +3 -0
- package/dist/commands/corrupt.d.ts.map +1 -0
- package/dist/commands/corrupt.js +72 -0
- package/dist/commands/corrupt.js.map +1 -0
- package/dist/commands/dry-run.d.ts +3 -0
- package/dist/commands/dry-run.d.ts.map +1 -0
- package/dist/commands/dry-run.js +59 -0
- package/dist/commands/dry-run.js.map +1 -0
- package/dist/commands/list.d.ts +3 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +58 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/load-all.d.ts +3 -0
- package/dist/commands/load-all.d.ts.map +1 -0
- package/dist/commands/load-all.js +69 -0
- package/dist/commands/load-all.js.map +1 -0
- package/dist/commands/load.d.ts +25 -0
- package/dist/commands/load.d.ts.map +1 -0
- package/dist/commands/load.js +197 -0
- package/dist/commands/load.js.map +1 -0
- package/dist/commands/reset.d.ts +3 -0
- package/dist/commands/reset.d.ts.map +1 -0
- package/dist/commands/reset.js +117 -0
- package/dist/commands/reset.js.map +1 -0
- package/dist/commands/setup.d.ts +4 -0
- package/dist/commands/setup.d.ts.map +1 -0
- package/dist/commands/setup.js +190 -0
- package/dist/commands/setup.js.map +1 -0
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +25 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/validate.d.ts +5 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +132 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/commands/verify.d.ts +3 -0
- package/dist/commands/verify.d.ts.map +1 -0
- package/dist/commands/verify.js +87 -0
- package/dist/commands/verify.js.map +1 -0
- package/dist/commands/whoami.d.ts +3 -0
- package/dist/commands/whoami.d.ts.map +1 -0
- package/dist/commands/whoami.js +31 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/types/freee.d.ts +112 -0
- package/dist/types/freee.d.ts.map +1 -0
- package/dist/types/freee.js +3 -0
- package/dist/types/freee.js.map +1 -0
- package/dist/types/preset.d.ts +14 -0
- package/dist/types/preset.d.ts.map +1 -0
- package/dist/types/preset.js +2 -0
- package/dist/types/preset.js.map +1 -0
- package/dist/utils/accounting-validator.d.ts +13 -0
- package/dist/utils/accounting-validator.d.ts.map +1 -0
- package/dist/utils/accounting-validator.js +95 -0
- package/dist/utils/accounting-validator.js.map +1 -0
- package/dist/utils/auth-flow.d.ts +17 -0
- package/dist/utils/auth-flow.d.ts.map +1 -0
- package/dist/utils/auth-flow.js +137 -0
- package/dist/utils/auth-flow.js.map +1 -0
- package/dist/utils/config.d.ts +11 -0
- package/dist/utils/config.d.ts.map +1 -0
- package/dist/utils/config.js +13 -0
- package/dist/utils/config.js.map +1 -0
- package/dist/utils/confirm-company.d.ts +7 -0
- package/dist/utils/confirm-company.d.ts.map +1 -0
- package/dist/utils/confirm-company.js +20 -0
- package/dist/utils/confirm-company.js.map +1 -0
- package/dist/utils/corrupt-injector.d.ts +17 -0
- package/dist/utils/corrupt-injector.d.ts.map +1 -0
- package/dist/utils/corrupt-injector.js +123 -0
- package/dist/utils/corrupt-injector.js.map +1 -0
- package/dist/utils/env-loader.d.ts +9 -0
- package/dist/utils/env-loader.d.ts.map +1 -0
- package/dist/utils/env-loader.js +12 -0
- package/dist/utils/env-loader.js.map +1 -0
- package/dist/utils/env-writer.d.ts +10 -0
- package/dist/utils/env-writer.d.ts.map +1 -0
- package/dist/utils/env-writer.js +40 -0
- package/dist/utils/env-writer.js.map +1 -0
- package/dist/utils/freee-api.d.ts +24 -0
- package/dist/utils/freee-api.d.ts.map +1 -0
- package/dist/utils/freee-api.js +175 -0
- package/dist/utils/freee-api.js.map +1 -0
- package/dist/utils/logger.d.ts +6 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +22 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/pkce.d.ts +12 -0
- package/dist/utils/pkce.d.ts.map +1 -0
- package/dist/utils/pkce.js +18 -0
- package/dist/utils/pkce.js.map +1 -0
- package/dist/utils/preset-loader.d.ts +3 -0
- package/dist/utils/preset-loader.d.ts.map +1 -0
- package/dist/utils/preset-loader.js +47 -0
- package/dist/utils/preset-loader.js.map +1 -0
- package/dist/utils/preset-validator.d.ts +10 -0
- package/dist/utils/preset-validator.d.ts.map +1 -0
- package/dist/utils/preset-validator.js +23 -0
- package/dist/utils/preset-validator.js.map +1 -0
- package/dist/utils/state-store.d.ts +6 -0
- package/dist/utils/state-store.d.ts.map +1 -0
- package/dist/utils/state-store.js +37 -0
- package/dist/utils/state-store.js.map +1 -0
- package/dist/utils/token-store.d.ts +6 -0
- package/dist/utils/token-store.d.ts.map +1 -0
- package/dist/utils/token-store.js +30 -0
- package/dist/utils/token-store.js.map +1 -0
- package/package.json +58 -0
- package/presets/README.md +182 -0
- package/presets/accounting/README.md +3 -0
- package/presets/accounting/construction/preset.json +309 -0
- package/presets/accounting/freelance-invoice/preset.json +261 -0
- package/presets/accounting/full-year/preset.json +1534 -0
- package/presets/accounting/it-startup/preset.json +472 -0
- package/presets/accounting/manufacturing/preset.json +333 -0
- package/presets/accounting/medical/preset.json +453 -0
- package/presets/accounting/non-profit/preset.json +375 -0
- package/presets/accounting/npo-subsidy/preset.json +454 -0
- package/presets/accounting/payroll-agency/preset.json +286 -0
- package/presets/accounting/quickstart/preset.json +917 -0
- package/presets/accounting/real-estate/preset.json +453 -0
- package/presets/accounting/restaurant/preset.json +349 -0
- package/presets/accounting/retail/preset.json +536 -0
- package/presets/accounting/sole-proprietor/preset.json +408 -0
- package/presets/advanced/multi-company/README.md +3 -0
- package/presets/advanced/multi-company/preset.json +640 -0
- package/presets/advanced/multi-period/README.md +3 -0
- package/presets/advanced/multi-period/preset.json +633 -0
- package/presets/common/depreciation/preset.json +433 -0
- package/presets/errors/consumption-tax/preset.json +136 -0
- package/presets/errors/depreciation-method/preset.json +133 -0
- package/presets/errors/duplicate-journal/preset.json +181 -0
- package/presets/errors/entertainment/preset.json +108 -0
- package/presets/errors/mixed/preset.json +171 -0
- package/presets/errors/officer-pay/preset.json +100 -0
- package/presets/errors/overdue-receivable/preset.json +157 -0
- package/presets/errors/tax-code/preset.json +140 -0
- package/presets/errors/year-end-closing/preset.json +163 -0
- package/presets/expenses/README.md +3 -0
- package/presets/expenses/quickstart/preset.json +240 -0
- package/presets/hr/README.md +3 -0
- package/presets/hr/quickstart/preset.json +443 -0
- package/presets/invoices/README.md +3 -0
- package/presets/invoices/quickstart/preset.json +246 -0
- package/presets/invoices/subscription/preset.json +263 -0
- package/presets/unclassified/quickstart/preset.json +182 -0
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "フリーランス・インボイス制度対応",
|
|
3
|
+
"description": "インボイス制度(適格請求書等保存方式)に対応した個人事業主(フリーランス)の会計データ。登録番号あり・なし取引先との混在、源泉徴収あり取引、軽減税率対応を含む。2024年フリーランス保護新法以降の実務に即したシナリオ。",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"expected": {
|
|
6
|
+
"walletables": 2,
|
|
7
|
+
"deals": 24,
|
|
8
|
+
"manualJournals": 6
|
|
9
|
+
},
|
|
10
|
+
"data": {
|
|
11
|
+
"walletables": [
|
|
12
|
+
{
|
|
13
|
+
"type": "bank_account",
|
|
14
|
+
"name": "桜川銀行 普通預金(事業用)",
|
|
15
|
+
"bank_id": 2407
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "wallet",
|
|
19
|
+
"name": "事業用クレジットカード"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"deals": [
|
|
23
|
+
{
|
|
24
|
+
"issue_date": "2026-01-31",
|
|
25
|
+
"type": "income",
|
|
26
|
+
"partner_name": "株式会社ハーモニーテック",
|
|
27
|
+
"details": [
|
|
28
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 385000, "description": "Webデザイン業務委託 1月分(税込・インボイス登録番号あり・源泉徴収あり: 源泉税35,000円差引)" }
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"issue_date": "2026-02-28",
|
|
33
|
+
"type": "income",
|
|
34
|
+
"partner_name": "株式会社ハーモニーテック",
|
|
35
|
+
"details": [
|
|
36
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 385000, "description": "Webデザイン業務委託 2月分(税込・インボイス登録番号あり・源泉徴収あり: 源泉税35,000円差引)" }
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"issue_date": "2026-03-31",
|
|
41
|
+
"type": "income",
|
|
42
|
+
"partner_name": "株式会社ハーモニーテック",
|
|
43
|
+
"details": [
|
|
44
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 385000, "description": "Webデザイン業務委託 3月分(税込・インボイス登録番号あり・源泉徴収あり: 源泉税35,000円差引)" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"issue_date": "2026-01-20",
|
|
49
|
+
"type": "income",
|
|
50
|
+
"partner_name": "合同会社ノースウェーブ",
|
|
51
|
+
"details": [
|
|
52
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 165000, "description": "コンテンツ制作 1月(税込・スポット案件・インボイス登録番号あり)" }
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"issue_date": "2026-02-18",
|
|
57
|
+
"type": "income",
|
|
58
|
+
"partner_name": "合同会社ノースウェーブ",
|
|
59
|
+
"details": [
|
|
60
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 110000, "description": "コンテンツ制作 2月(税込・スポット案件・インボイス登録番号あり)" }
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"issue_date": "2026-03-22",
|
|
65
|
+
"type": "income",
|
|
66
|
+
"partner_name": "合同会社ノースウェーブ",
|
|
67
|
+
"details": [
|
|
68
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 220000, "description": "コンテンツ制作 3月(税込・スポット案件・インボイス登録番号あり)" }
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"issue_date": "2026-01-10",
|
|
73
|
+
"type": "expense",
|
|
74
|
+
"partner_name": "株式会社クリエイティブツールズ",
|
|
75
|
+
"details": [
|
|
76
|
+
{ "account_item_name": "消耗品費", "tax_code": 34, "amount": 16500, "description": "デザインソフト年間ライセンス(インボイス登録業者・課税仕入10%)" }
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"issue_date": "2026-01-15",
|
|
81
|
+
"type": "expense",
|
|
82
|
+
"partner_name": "ネットワークインフラ株式会社",
|
|
83
|
+
"details": [
|
|
84
|
+
{ "account_item_name": "通信費", "tax_code": 34, "amount": 5500, "description": "インターネット接続料 1月(インボイス登録業者・課税仕入10%)" }
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"issue_date": "2026-02-15",
|
|
89
|
+
"type": "expense",
|
|
90
|
+
"partner_name": "ネットワークインフラ株式会社",
|
|
91
|
+
"details": [
|
|
92
|
+
{ "account_item_name": "通信費", "tax_code": 34, "amount": 5500, "description": "インターネット接続料 2月(インボイス登録業者・課税仕入10%)" }
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"issue_date": "2026-03-15",
|
|
97
|
+
"type": "expense",
|
|
98
|
+
"partner_name": "ネットワークインフラ株式会社",
|
|
99
|
+
"details": [
|
|
100
|
+
{ "account_item_name": "通信費", "tax_code": 34, "amount": 5500, "description": "インターネット接続料 3月(インボイス登録業者・課税仕入10%)" }
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"issue_date": "2026-01-05",
|
|
105
|
+
"type": "expense",
|
|
106
|
+
"partner_name": "ビジネスシェアスペース株式会社",
|
|
107
|
+
"details": [
|
|
108
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 33000, "description": "コワーキングスペース利用料 1月(インボイス登録業者・課税仕入10%)" }
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"issue_date": "2026-02-05",
|
|
113
|
+
"type": "expense",
|
|
114
|
+
"partner_name": "ビジネスシェアスペース株式会社",
|
|
115
|
+
"details": [
|
|
116
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 33000, "description": "コワーキングスペース利用料 2月(インボイス登録業者・課税仕入10%)" }
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"issue_date": "2026-03-05",
|
|
121
|
+
"type": "expense",
|
|
122
|
+
"partner_name": "ビジネスシェアスペース株式会社",
|
|
123
|
+
"details": [
|
|
124
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 33000, "description": "コワーキングスペース利用料 3月(インボイス登録業者・課税仕入10%)" }
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"issue_date": "2026-01-25",
|
|
129
|
+
"type": "expense",
|
|
130
|
+
"partner_name": "フリーランスライター 鈴木 花子",
|
|
131
|
+
"details": [
|
|
132
|
+
{ "account_item_name": "外注費", "tax_code": 34, "amount": 55000, "description": "記事執筆委託 1月(免税事業者・インボイス未登録・経過措置80%控除適用)" }
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"issue_date": "2026-02-25",
|
|
137
|
+
"type": "expense",
|
|
138
|
+
"partner_name": "フリーランスライター 鈴木 花子",
|
|
139
|
+
"details": [
|
|
140
|
+
{ "account_item_name": "外注費", "tax_code": 34, "amount": 55000, "description": "記事執筆委託 2月(免税事業者・インボイス未登録・経過措置80%控除適用)" }
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"issue_date": "2026-03-25",
|
|
145
|
+
"type": "expense",
|
|
146
|
+
"partner_name": "フリーランスライター 鈴木 花子",
|
|
147
|
+
"details": [
|
|
148
|
+
{ "account_item_name": "外注費", "tax_code": 34, "amount": 55000, "description": "記事執筆委託 3月(免税事業者・インボイス未登録・経過措置80%控除適用)" }
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"issue_date": "2026-01-20",
|
|
153
|
+
"type": "expense",
|
|
154
|
+
"partner_name": "株式会社ブックスタンダード",
|
|
155
|
+
"details": [
|
|
156
|
+
{ "account_item_name": "新聞図書費", "tax_code": 34, "amount": 3300, "description": "技術書籍 1月(インボイス登録業者・課税仕入10%)" }
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"issue_date": "2026-02-20",
|
|
161
|
+
"type": "expense",
|
|
162
|
+
"partner_name": "株式会社ブックスタンダード",
|
|
163
|
+
"details": [
|
|
164
|
+
{ "account_item_name": "新聞図書費", "tax_code": 34, "amount": 2200, "description": "技術書籍 2月(インボイス登録業者・課税仕入10%)" }
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"issue_date": "2026-03-20",
|
|
169
|
+
"type": "expense",
|
|
170
|
+
"partner_name": "株式会社ブックスタンダード",
|
|
171
|
+
"details": [
|
|
172
|
+
{ "account_item_name": "新聞図書費", "tax_code": 34, "amount": 4400, "description": "技術書籍・雑誌 3月(インボイス登録業者・課税仕入10%)" }
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"issue_date": "2026-01-28",
|
|
177
|
+
"type": "expense",
|
|
178
|
+
"partner_name": "カフェレストラン エスプレッソ",
|
|
179
|
+
"details": [
|
|
180
|
+
{ "account_item_name": "交際費", "tax_code": 34, "amount": 8800, "description": "クライアント打ち合わせ飲食 1月(インボイス登録業者・課税仕入10%)" }
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"issue_date": "2026-02-12",
|
|
185
|
+
"type": "expense",
|
|
186
|
+
"partner_name": "カフェレストラン エスプレッソ",
|
|
187
|
+
"details": [
|
|
188
|
+
{ "account_item_name": "交際費", "tax_code": 34, "amount": 6600, "description": "クライアント打ち合わせ飲食 2月(インボイス登録業者・課税仕入10%)" }
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"issue_date": "2026-03-18",
|
|
193
|
+
"type": "expense",
|
|
194
|
+
"partner_name": "カフェレストラン エスプレッソ",
|
|
195
|
+
"details": [
|
|
196
|
+
{ "account_item_name": "交際費", "tax_code": 34, "amount": 11000, "description": "クライアント打ち合わせ飲食 3月(インボイス登録業者・課税仕入10%)" }
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"issue_date": "2026-01-31",
|
|
201
|
+
"type": "expense",
|
|
202
|
+
"partner_name": "国民健康保険",
|
|
203
|
+
"details": [
|
|
204
|
+
{ "account_item_name": "保険料", "tax_code": 0, "amount": 28000, "description": "国民健康保険料 1月(不課税)" }
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"issue_date": "2026-02-28",
|
|
209
|
+
"type": "expense",
|
|
210
|
+
"partner_name": "国民健康保険",
|
|
211
|
+
"details": [
|
|
212
|
+
{ "account_item_name": "保険料", "tax_code": 0, "amount": 28000, "description": "国民健康保険料 2月(不課税)" }
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"manualJournals": [
|
|
217
|
+
{
|
|
218
|
+
"issue_date": "2026-01-31",
|
|
219
|
+
"details": [
|
|
220
|
+
{ "entry_side": "debit", "account_item_name": "売掛金", "tax_code": 0, "amount": 550000, "description": "1月 売掛金計上(ハーモニーテック + ノースウェーブ)" },
|
|
221
|
+
{ "entry_side": "credit", "account_item_name": "売上高", "tax_code": 21, "amount": 550000, "description": "1月 売上計上" }
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"issue_date": "2026-01-31",
|
|
226
|
+
"details": [
|
|
227
|
+
{ "entry_side": "debit", "account_item_name": "立替金", "tax_code": 0, "amount": 35000, "description": "1月 源泉所得税(ハーモニーテック分・確定申告で精算)" },
|
|
228
|
+
{ "entry_side": "credit", "account_item_name": "売掛金", "tax_code": 0, "amount": 35000, "description": "1月 源泉徴収差引後入金調整" }
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"issue_date": "2026-02-28",
|
|
233
|
+
"details": [
|
|
234
|
+
{ "entry_side": "debit", "account_item_name": "売掛金", "tax_code": 0, "amount": 495000, "description": "2月 売掛金計上(ハーモニーテック + ノースウェーブ)" },
|
|
235
|
+
{ "entry_side": "credit", "account_item_name": "売上高", "tax_code": 21, "amount": 495000, "description": "2月 売上計上" }
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"issue_date": "2026-02-28",
|
|
240
|
+
"details": [
|
|
241
|
+
{ "entry_side": "debit", "account_item_name": "立替金", "tax_code": 0, "amount": 35000, "description": "2月 源泉所得税(ハーモニーテック分・確定申告で精算)" },
|
|
242
|
+
{ "entry_side": "credit", "account_item_name": "売掛金", "tax_code": 0, "amount": 35000, "description": "2月 源泉徴収差引後入金調整" }
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"issue_date": "2026-03-31",
|
|
247
|
+
"details": [
|
|
248
|
+
{ "entry_side": "debit", "account_item_name": "売掛金", "tax_code": 0, "amount": 605000, "description": "3月 売掛金計上(ハーモニーテック + ノースウェーブ)" },
|
|
249
|
+
{ "entry_side": "credit", "account_item_name": "売上高", "tax_code": 21, "amount": 605000, "description": "3月 売上計上" }
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"issue_date": "2026-03-31",
|
|
254
|
+
"details": [
|
|
255
|
+
{ "entry_side": "debit", "account_item_name": "立替金", "tax_code": 0, "amount": 35000, "description": "3月 源泉所得税(ハーモニーテック分・確定申告で精算)" },
|
|
256
|
+
{ "entry_side": "credit", "account_item_name": "売掛金", "tax_code": 0, "amount": 35000, "description": "3月 源泉徴収差引後入金調整" }
|
|
257
|
+
]
|
|
258
|
+
}
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
}
|