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.
Files changed (157) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +280 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +35 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/commands/auth.d.ts +3 -0
  8. package/dist/commands/auth.d.ts.map +1 -0
  9. package/dist/commands/auth.js +57 -0
  10. package/dist/commands/auth.js.map +1 -0
  11. package/dist/commands/corrupt.d.ts +3 -0
  12. package/dist/commands/corrupt.d.ts.map +1 -0
  13. package/dist/commands/corrupt.js +72 -0
  14. package/dist/commands/corrupt.js.map +1 -0
  15. package/dist/commands/dry-run.d.ts +3 -0
  16. package/dist/commands/dry-run.d.ts.map +1 -0
  17. package/dist/commands/dry-run.js +59 -0
  18. package/dist/commands/dry-run.js.map +1 -0
  19. package/dist/commands/list.d.ts +3 -0
  20. package/dist/commands/list.d.ts.map +1 -0
  21. package/dist/commands/list.js +58 -0
  22. package/dist/commands/list.js.map +1 -0
  23. package/dist/commands/load-all.d.ts +3 -0
  24. package/dist/commands/load-all.d.ts.map +1 -0
  25. package/dist/commands/load-all.js +69 -0
  26. package/dist/commands/load-all.js.map +1 -0
  27. package/dist/commands/load.d.ts +25 -0
  28. package/dist/commands/load.d.ts.map +1 -0
  29. package/dist/commands/load.js +197 -0
  30. package/dist/commands/load.js.map +1 -0
  31. package/dist/commands/reset.d.ts +3 -0
  32. package/dist/commands/reset.d.ts.map +1 -0
  33. package/dist/commands/reset.js +117 -0
  34. package/dist/commands/reset.js.map +1 -0
  35. package/dist/commands/setup.d.ts +4 -0
  36. package/dist/commands/setup.d.ts.map +1 -0
  37. package/dist/commands/setup.js +190 -0
  38. package/dist/commands/setup.js.map +1 -0
  39. package/dist/commands/status.d.ts +3 -0
  40. package/dist/commands/status.d.ts.map +1 -0
  41. package/dist/commands/status.js +25 -0
  42. package/dist/commands/status.js.map +1 -0
  43. package/dist/commands/validate.d.ts +5 -0
  44. package/dist/commands/validate.d.ts.map +1 -0
  45. package/dist/commands/validate.js +132 -0
  46. package/dist/commands/validate.js.map +1 -0
  47. package/dist/commands/verify.d.ts +3 -0
  48. package/dist/commands/verify.d.ts.map +1 -0
  49. package/dist/commands/verify.js +87 -0
  50. package/dist/commands/verify.js.map +1 -0
  51. package/dist/commands/whoami.d.ts +3 -0
  52. package/dist/commands/whoami.d.ts.map +1 -0
  53. package/dist/commands/whoami.js +31 -0
  54. package/dist/commands/whoami.js.map +1 -0
  55. package/dist/types/freee.d.ts +112 -0
  56. package/dist/types/freee.d.ts.map +1 -0
  57. package/dist/types/freee.js +3 -0
  58. package/dist/types/freee.js.map +1 -0
  59. package/dist/types/preset.d.ts +14 -0
  60. package/dist/types/preset.d.ts.map +1 -0
  61. package/dist/types/preset.js +2 -0
  62. package/dist/types/preset.js.map +1 -0
  63. package/dist/utils/accounting-validator.d.ts +13 -0
  64. package/dist/utils/accounting-validator.d.ts.map +1 -0
  65. package/dist/utils/accounting-validator.js +95 -0
  66. package/dist/utils/accounting-validator.js.map +1 -0
  67. package/dist/utils/auth-flow.d.ts +17 -0
  68. package/dist/utils/auth-flow.d.ts.map +1 -0
  69. package/dist/utils/auth-flow.js +137 -0
  70. package/dist/utils/auth-flow.js.map +1 -0
  71. package/dist/utils/config.d.ts +11 -0
  72. package/dist/utils/config.d.ts.map +1 -0
  73. package/dist/utils/config.js +13 -0
  74. package/dist/utils/config.js.map +1 -0
  75. package/dist/utils/confirm-company.d.ts +7 -0
  76. package/dist/utils/confirm-company.d.ts.map +1 -0
  77. package/dist/utils/confirm-company.js +20 -0
  78. package/dist/utils/confirm-company.js.map +1 -0
  79. package/dist/utils/corrupt-injector.d.ts +17 -0
  80. package/dist/utils/corrupt-injector.d.ts.map +1 -0
  81. package/dist/utils/corrupt-injector.js +123 -0
  82. package/dist/utils/corrupt-injector.js.map +1 -0
  83. package/dist/utils/env-loader.d.ts +9 -0
  84. package/dist/utils/env-loader.d.ts.map +1 -0
  85. package/dist/utils/env-loader.js +12 -0
  86. package/dist/utils/env-loader.js.map +1 -0
  87. package/dist/utils/env-writer.d.ts +10 -0
  88. package/dist/utils/env-writer.d.ts.map +1 -0
  89. package/dist/utils/env-writer.js +40 -0
  90. package/dist/utils/env-writer.js.map +1 -0
  91. package/dist/utils/freee-api.d.ts +24 -0
  92. package/dist/utils/freee-api.d.ts.map +1 -0
  93. package/dist/utils/freee-api.js +175 -0
  94. package/dist/utils/freee-api.js.map +1 -0
  95. package/dist/utils/logger.d.ts +6 -0
  96. package/dist/utils/logger.d.ts.map +1 -0
  97. package/dist/utils/logger.js +22 -0
  98. package/dist/utils/logger.js.map +1 -0
  99. package/dist/utils/pkce.d.ts +12 -0
  100. package/dist/utils/pkce.d.ts.map +1 -0
  101. package/dist/utils/pkce.js +18 -0
  102. package/dist/utils/pkce.js.map +1 -0
  103. package/dist/utils/preset-loader.d.ts +3 -0
  104. package/dist/utils/preset-loader.d.ts.map +1 -0
  105. package/dist/utils/preset-loader.js +47 -0
  106. package/dist/utils/preset-loader.js.map +1 -0
  107. package/dist/utils/preset-validator.d.ts +10 -0
  108. package/dist/utils/preset-validator.d.ts.map +1 -0
  109. package/dist/utils/preset-validator.js +23 -0
  110. package/dist/utils/preset-validator.js.map +1 -0
  111. package/dist/utils/state-store.d.ts +6 -0
  112. package/dist/utils/state-store.d.ts.map +1 -0
  113. package/dist/utils/state-store.js +37 -0
  114. package/dist/utils/state-store.js.map +1 -0
  115. package/dist/utils/token-store.d.ts +6 -0
  116. package/dist/utils/token-store.d.ts.map +1 -0
  117. package/dist/utils/token-store.js +30 -0
  118. package/dist/utils/token-store.js.map +1 -0
  119. package/package.json +58 -0
  120. package/presets/README.md +182 -0
  121. package/presets/accounting/README.md +3 -0
  122. package/presets/accounting/construction/preset.json +309 -0
  123. package/presets/accounting/freelance-invoice/preset.json +261 -0
  124. package/presets/accounting/full-year/preset.json +1534 -0
  125. package/presets/accounting/it-startup/preset.json +472 -0
  126. package/presets/accounting/manufacturing/preset.json +333 -0
  127. package/presets/accounting/medical/preset.json +453 -0
  128. package/presets/accounting/non-profit/preset.json +375 -0
  129. package/presets/accounting/npo-subsidy/preset.json +454 -0
  130. package/presets/accounting/payroll-agency/preset.json +286 -0
  131. package/presets/accounting/quickstart/preset.json +917 -0
  132. package/presets/accounting/real-estate/preset.json +453 -0
  133. package/presets/accounting/restaurant/preset.json +349 -0
  134. package/presets/accounting/retail/preset.json +536 -0
  135. package/presets/accounting/sole-proprietor/preset.json +408 -0
  136. package/presets/advanced/multi-company/README.md +3 -0
  137. package/presets/advanced/multi-company/preset.json +640 -0
  138. package/presets/advanced/multi-period/README.md +3 -0
  139. package/presets/advanced/multi-period/preset.json +633 -0
  140. package/presets/common/depreciation/preset.json +433 -0
  141. package/presets/errors/consumption-tax/preset.json +136 -0
  142. package/presets/errors/depreciation-method/preset.json +133 -0
  143. package/presets/errors/duplicate-journal/preset.json +181 -0
  144. package/presets/errors/entertainment/preset.json +108 -0
  145. package/presets/errors/mixed/preset.json +171 -0
  146. package/presets/errors/officer-pay/preset.json +100 -0
  147. package/presets/errors/overdue-receivable/preset.json +157 -0
  148. package/presets/errors/tax-code/preset.json +140 -0
  149. package/presets/errors/year-end-closing/preset.json +163 -0
  150. package/presets/expenses/README.md +3 -0
  151. package/presets/expenses/quickstart/preset.json +240 -0
  152. package/presets/hr/README.md +3 -0
  153. package/presets/hr/quickstart/preset.json +443 -0
  154. package/presets/invoices/README.md +3 -0
  155. package/presets/invoices/quickstart/preset.json +246 -0
  156. package/presets/invoices/subscription/preset.json +263 -0
  157. package/presets/unclassified/quickstart/preset.json +182 -0
@@ -0,0 +1,633 @@
1
+ {
2
+ "name": "複数期デモ(前期・当期比較)",
3
+ "description": "架空のITコンサルティング会社の前期(2025年Q1)と当期(2026年Q1)の2期分デモデータ。期首繰越仕訳付き。会計ソフトの前年同期比較・推移グラフを確認できる。",
4
+ "version": "1.0.0",
5
+ "expected": {
6
+ "walletables": 3,
7
+ "deals": 32,
8
+ "manualJournals": 9
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
+ "type": "credit_card",
23
+ "name": "法人クレジットカード",
24
+ "bank_id": 1442
25
+ }
26
+ ],
27
+ "deals": [
28
+ {
29
+ "issue_date": "2025-01-10",
30
+ "type": "income",
31
+ "partner_name": "株式会社フォレスト商事",
32
+ "details": [
33
+ {
34
+ "account_item_name": "売上高",
35
+ "tax_code": 21,
36
+ "amount": 1540000,
37
+ "description": "ITコンサルティング 2025年1月分"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "issue_date": "2025-01-20",
43
+ "type": "expense",
44
+ "partner_name": "コンサル支援 梅本 義弘",
45
+ "details": [
46
+ {
47
+ "account_item_name": "外注費",
48
+ "tax_code": 34,
49
+ "amount": 440000,
50
+ "description": "業務委託 2025年1月分"
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "issue_date": "2025-01-25",
56
+ "type": "expense",
57
+ "partner_name": "代表取締役 安藤 俊介",
58
+ "details": [
59
+ {
60
+ "account_item_name": "役員報酬",
61
+ "tax_code": 0,
62
+ "amount": 700000,
63
+ "description": "2025年1月度 役員報酬"
64
+ }
65
+ ]
66
+ },
67
+ {
68
+ "issue_date": "2025-01-25",
69
+ "type": "expense",
70
+ "partner_name": "社員 宮本 友香 他1名",
71
+ "details": [
72
+ {
73
+ "account_item_name": "給料手当",
74
+ "tax_code": 0,
75
+ "amount": 480000,
76
+ "description": "2025年1月 給与 2名分"
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "issue_date": "2025-01-31",
82
+ "type": "expense",
83
+ "partner_name": "オフィスパーク株式会社",
84
+ "details": [
85
+ {
86
+ "account_item_name": "地代家賃",
87
+ "tax_code": 0,
88
+ "amount": 132000,
89
+ "description": "事務所賃料 2025年1月分"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "issue_date": "2025-01-31",
95
+ "type": "expense",
96
+ "partner_name": "ルーセント通信株式会社",
97
+ "details": [
98
+ {
99
+ "account_item_name": "通信費",
100
+ "tax_code": 34,
101
+ "amount": 22000,
102
+ "description": "通信費 2025年1月分"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "issue_date": "2025-02-10",
108
+ "type": "income",
109
+ "partner_name": "株式会社フォレスト商事",
110
+ "details": [
111
+ {
112
+ "account_item_name": "売上高",
113
+ "tax_code": 21,
114
+ "amount": 1650000,
115
+ "description": "ITコンサルティング 2025年2月分"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2025-02-15",
121
+ "type": "expense",
122
+ "partner_name": "コンサル支援 梅本 義弘",
123
+ "details": [
124
+ {
125
+ "account_item_name": "外注費",
126
+ "tax_code": 34,
127
+ "amount": 440000,
128
+ "description": "業務委託 2025年2月分"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "issue_date": "2025-02-25",
134
+ "type": "expense",
135
+ "partner_name": "代表取締役 安藤 俊介",
136
+ "details": [
137
+ {
138
+ "account_item_name": "役員報酬",
139
+ "tax_code": 0,
140
+ "amount": 700000,
141
+ "description": "2025年2月度 役員報酬"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "issue_date": "2025-02-25",
147
+ "type": "expense",
148
+ "partner_name": "社員 宮本 友香 他1名",
149
+ "details": [
150
+ {
151
+ "account_item_name": "給料手当",
152
+ "tax_code": 0,
153
+ "amount": 480000,
154
+ "description": "2025年2月 給与 2名分"
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "issue_date": "2025-02-28",
160
+ "type": "expense",
161
+ "partner_name": "オフィスパーク株式会社",
162
+ "details": [
163
+ {
164
+ "account_item_name": "地代家賃",
165
+ "tax_code": 0,
166
+ "amount": 132000,
167
+ "description": "事務所賃料 2025年2月分"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "issue_date": "2025-02-28",
173
+ "type": "expense",
174
+ "partner_name": "ルーセント通信株式会社",
175
+ "details": [
176
+ {
177
+ "account_item_name": "通信費",
178
+ "tax_code": 34,
179
+ "amount": 22000,
180
+ "description": "通信費 2025年2月分"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "issue_date": "2025-03-10",
186
+ "type": "income",
187
+ "partner_name": "株式会社フォレスト商事",
188
+ "details": [
189
+ {
190
+ "account_item_name": "売上高",
191
+ "tax_code": 21,
192
+ "amount": 1430000,
193
+ "description": "ITコンサルティング 2025年3月分"
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "issue_date": "2025-03-15",
199
+ "type": "expense",
200
+ "partner_name": "コンサル支援 梅本 義弘",
201
+ "details": [
202
+ {
203
+ "account_item_name": "外注費",
204
+ "tax_code": 34,
205
+ "amount": 330000,
206
+ "description": "業務委託 2025年3月分"
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ "issue_date": "2025-03-25",
212
+ "type": "expense",
213
+ "partner_name": "代表取締役 安藤 俊介",
214
+ "details": [
215
+ {
216
+ "account_item_name": "役員報酬",
217
+ "tax_code": 0,
218
+ "amount": 700000,
219
+ "description": "2025年3月度 役員報酬"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "issue_date": "2025-03-25",
225
+ "type": "expense",
226
+ "partner_name": "社員 宮本 友香 他1名",
227
+ "details": [
228
+ {
229
+ "account_item_name": "給料手当",
230
+ "tax_code": 0,
231
+ "amount": 480000,
232
+ "description": "2025年3月 給与 2名分"
233
+ }
234
+ ]
235
+ },
236
+ {
237
+ "issue_date": "2026-01-10",
238
+ "type": "income",
239
+ "partner_name": "株式会社フォレスト商事",
240
+ "details": [
241
+ {
242
+ "account_item_name": "売上高",
243
+ "tax_code": 21,
244
+ "amount": 1694000,
245
+ "description": "ITコンサルティング 2026年1月分(前年比+10%)"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "issue_date": "2026-01-15",
251
+ "type": "income",
252
+ "partner_name": "新規顧客 株式会社ライジングコア",
253
+ "details": [
254
+ {
255
+ "account_item_name": "売上高",
256
+ "tax_code": 21,
257
+ "amount": 550000,
258
+ "description": "ITコンサルティング 新規 1月分"
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "issue_date": "2026-01-20",
264
+ "type": "expense",
265
+ "partner_name": "コンサル支援 梅本 義弘",
266
+ "details": [
267
+ {
268
+ "account_item_name": "外注費",
269
+ "tax_code": 34,
270
+ "amount": 550000,
271
+ "description": "業務委託 2026年1月分(工数増)"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "issue_date": "2026-01-25",
277
+ "type": "expense",
278
+ "partner_name": "代表取締役 安藤 俊介",
279
+ "details": [
280
+ {
281
+ "account_item_name": "役員報酬",
282
+ "tax_code": 0,
283
+ "amount": 750000,
284
+ "description": "2026年1月度 役員報酬(改定)"
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "issue_date": "2026-01-25",
290
+ "type": "expense",
291
+ "partner_name": "社員 宮本 友香 他1名",
292
+ "details": [
293
+ {
294
+ "account_item_name": "給料手当",
295
+ "tax_code": 0,
296
+ "amount": 520000,
297
+ "description": "2026年1月 給与 2名分(昇給反映)"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "issue_date": "2026-01-31",
303
+ "type": "expense",
304
+ "partner_name": "オフィスパーク株式会社",
305
+ "details": [
306
+ {
307
+ "account_item_name": "地代家賃",
308
+ "tax_code": 0,
309
+ "amount": 132000,
310
+ "description": "事務所賃料 2026年1月分"
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "issue_date": "2026-02-10",
316
+ "type": "income",
317
+ "partner_name": "株式会社フォレスト商事",
318
+ "details": [
319
+ {
320
+ "account_item_name": "売上高",
321
+ "tax_code": 21,
322
+ "amount": 1815000,
323
+ "description": "ITコンサルティング 2026年2月分"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "issue_date": "2026-02-10",
329
+ "type": "income",
330
+ "partner_name": "株式会社ライジングコア",
331
+ "details": [
332
+ {
333
+ "account_item_name": "売上高",
334
+ "tax_code": 21,
335
+ "amount": 660000,
336
+ "description": "ITコンサルティング 新規 2月分"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "issue_date": "2026-02-15",
342
+ "type": "expense",
343
+ "partner_name": "コンサル支援 梅本 義弘",
344
+ "details": [
345
+ {
346
+ "account_item_name": "外注費",
347
+ "tax_code": 34,
348
+ "amount": 550000,
349
+ "description": "業務委託 2026年2月分"
350
+ }
351
+ ]
352
+ },
353
+ {
354
+ "issue_date": "2026-02-25",
355
+ "type": "expense",
356
+ "partner_name": "代表取締役 安藤 俊介",
357
+ "details": [
358
+ {
359
+ "account_item_name": "役員報酬",
360
+ "tax_code": 0,
361
+ "amount": 750000,
362
+ "description": "2026年2月度 役員報酬"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "issue_date": "2026-02-25",
368
+ "type": "expense",
369
+ "partner_name": "社員 宮本 友香 他1名",
370
+ "details": [
371
+ {
372
+ "account_item_name": "給料手当",
373
+ "tax_code": 0,
374
+ "amount": 520000,
375
+ "description": "2026年2月 給与 2名分"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "issue_date": "2026-02-28",
381
+ "type": "expense",
382
+ "partner_name": "オフィスパーク株式会社",
383
+ "details": [
384
+ {
385
+ "account_item_name": "地代家賃",
386
+ "tax_code": 0,
387
+ "amount": 132000,
388
+ "description": "事務所賃料 2026年2月分"
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "issue_date": "2026-03-10",
394
+ "type": "income",
395
+ "partner_name": "株式会社フォレスト商事",
396
+ "details": [
397
+ {
398
+ "account_item_name": "売上高",
399
+ "tax_code": 21,
400
+ "amount": 1573000,
401
+ "description": "ITコンサルティング 2026年3月分"
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "issue_date": "2026-03-10",
407
+ "type": "income",
408
+ "partner_name": "株式会社ライジングコア",
409
+ "details": [
410
+ {
411
+ "account_item_name": "売上高",
412
+ "tax_code": 21,
413
+ "amount": 770000,
414
+ "description": "ITコンサルティング 3月分(プロジェクト拡大)"
415
+ }
416
+ ]
417
+ },
418
+ {
419
+ "issue_date": "2026-03-15",
420
+ "type": "expense",
421
+ "partner_name": "コンサル支援 梅本 義弘",
422
+ "details": [
423
+ {
424
+ "account_item_name": "外注費",
425
+ "tax_code": 34,
426
+ "amount": 440000,
427
+ "description": "業務委託 2026年3月分"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "issue_date": "2026-03-25",
433
+ "type": "expense",
434
+ "partner_name": "代表取締役 安藤 俊介",
435
+ "details": [
436
+ {
437
+ "account_item_name": "役員報酬",
438
+ "tax_code": 0,
439
+ "amount": 750000,
440
+ "description": "2026年3月度 役員報酬"
441
+ }
442
+ ]
443
+ }
444
+ ],
445
+ "manualJournals": [
446
+ {
447
+ "issue_date": "2026-01-01",
448
+ "details": [
449
+ {
450
+ "entry_side": "debit",
451
+ "account_item_name": "さくら信用銀行 普通預金",
452
+ "tax_code": 0,
453
+ "amount": 3200000,
454
+ "description": "期首繰越: 普通預金残高"
455
+ },
456
+ {
457
+ "entry_side": "debit",
458
+ "account_item_name": "売掛金",
459
+ "tax_code": 0,
460
+ "amount": 1430000,
461
+ "description": "期首繰越: 売掛金残高(前期末未回収分)"
462
+ },
463
+ {
464
+ "entry_side": "credit",
465
+ "account_item_name": "未払費用",
466
+ "tax_code": 0,
467
+ "amount": 880000,
468
+ "description": "期首繰越: 未払費用(前期末未払給与・外注費)"
469
+ },
470
+ {
471
+ "entry_side": "credit",
472
+ "account_item_name": "繰越利益剰余金",
473
+ "tax_code": 0,
474
+ "amount": 3750000,
475
+ "description": "期首繰越: 繰越利益剰余金"
476
+ }
477
+ ]
478
+ },
479
+ {
480
+ "issue_date": "2025-01-31",
481
+ "details": [
482
+ {
483
+ "entry_side": "debit",
484
+ "account_item_name": "法定福利費",
485
+ "tax_code": 0,
486
+ "amount": 108000,
487
+ "description": "2025年1月 社会保険料 会社負担分"
488
+ },
489
+ {
490
+ "entry_side": "credit",
491
+ "account_item_name": "未払費用",
492
+ "tax_code": 0,
493
+ "amount": 108000,
494
+ "description": "2025年1月 社会保険料 未払計上"
495
+ }
496
+ ]
497
+ },
498
+ {
499
+ "issue_date": "2025-02-28",
500
+ "details": [
501
+ {
502
+ "entry_side": "debit",
503
+ "account_item_name": "法定福利費",
504
+ "tax_code": 0,
505
+ "amount": 108000,
506
+ "description": "2025年2月 社会保険料 会社負担分"
507
+ },
508
+ {
509
+ "entry_side": "credit",
510
+ "account_item_name": "未払費用",
511
+ "tax_code": 0,
512
+ "amount": 108000,
513
+ "description": "2025年2月 社会保険料 未払計上"
514
+ }
515
+ ]
516
+ },
517
+ {
518
+ "issue_date": "2025-03-31",
519
+ "details": [
520
+ {
521
+ "entry_side": "debit",
522
+ "account_item_name": "法定福利費",
523
+ "tax_code": 0,
524
+ "amount": 108000,
525
+ "description": "2025年3月 社会保険料 会社負担分"
526
+ },
527
+ {
528
+ "entry_side": "credit",
529
+ "account_item_name": "未払費用",
530
+ "tax_code": 0,
531
+ "amount": 108000,
532
+ "description": "2025年3月 社会保険料 未払計上"
533
+ }
534
+ ]
535
+ },
536
+ {
537
+ "issue_date": "2026-01-31",
538
+ "details": [
539
+ {
540
+ "entry_side": "debit",
541
+ "account_item_name": "法定福利費",
542
+ "tax_code": 0,
543
+ "amount": 116000,
544
+ "description": "2026年1月 社会保険料 会社負担分"
545
+ },
546
+ {
547
+ "entry_side": "credit",
548
+ "account_item_name": "未払費用",
549
+ "tax_code": 0,
550
+ "amount": 116000,
551
+ "description": "2026年1月 社会保険料 未払計上"
552
+ }
553
+ ]
554
+ },
555
+ {
556
+ "issue_date": "2026-02-28",
557
+ "details": [
558
+ {
559
+ "entry_side": "debit",
560
+ "account_item_name": "法定福利費",
561
+ "tax_code": 0,
562
+ "amount": 116000,
563
+ "description": "2026年2月 社会保険料 会社負担分"
564
+ },
565
+ {
566
+ "entry_side": "credit",
567
+ "account_item_name": "未払費用",
568
+ "tax_code": 0,
569
+ "amount": 116000,
570
+ "description": "2026年2月 社会保険料 未払計上"
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "issue_date": "2026-03-31",
576
+ "details": [
577
+ {
578
+ "entry_side": "debit",
579
+ "account_item_name": "法定福利費",
580
+ "tax_code": 0,
581
+ "amount": 116000,
582
+ "description": "2026年3月 社会保険料 会社負担分"
583
+ },
584
+ {
585
+ "entry_side": "credit",
586
+ "account_item_name": "未払費用",
587
+ "tax_code": 0,
588
+ "amount": 116000,
589
+ "description": "2026年3月 社会保険料 未払計上"
590
+ }
591
+ ]
592
+ },
593
+ {
594
+ "issue_date": "2026-01-15",
595
+ "details": [
596
+ {
597
+ "entry_side": "debit",
598
+ "account_item_name": "さくら信用銀行 普通預金",
599
+ "tax_code": 0,
600
+ "amount": 1430000,
601
+ "description": "前期末 売掛金 当期入金(フォレスト商事 前期3月分)"
602
+ },
603
+ {
604
+ "entry_side": "credit",
605
+ "account_item_name": "売掛金",
606
+ "tax_code": 0,
607
+ "amount": 1430000,
608
+ "description": "売掛金 消込"
609
+ }
610
+ ]
611
+ },
612
+ {
613
+ "issue_date": "2026-02-20",
614
+ "details": [
615
+ {
616
+ "entry_side": "debit",
617
+ "account_item_name": "さくら信用銀行 普通預金",
618
+ "tax_code": 0,
619
+ "amount": 1694000,
620
+ "description": "当期1月分 売掛金 入金(フォレスト商事)"
621
+ },
622
+ {
623
+ "entry_side": "credit",
624
+ "account_item_name": "売掛金",
625
+ "tax_code": 0,
626
+ "amount": 1694000,
627
+ "description": "当期1月分 売掛金 消込"
628
+ }
629
+ ]
630
+ }
631
+ ]
632
+ }
633
+ }