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,1534 @@
1
+ {
2
+ "name": "会計クイックスタート(12ヶ月・異常値込み)",
3
+ "description": "架空のITサービス業(年商3,600万円相当)の12ヶ月分の会計データ。9月の売上急落・11月の外注費急増・2月の二重仕訳を含む。月次チェック自動化のデモ用。",
4
+ "version": "1.0.0",
5
+ "expected": {
6
+ "walletables": 3,
7
+ "deals": 98,
8
+ "manualJournals": 12
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-04-10",
30
+ "type": "income",
31
+ "partner_name": "株式会社アルファシステム",
32
+ "details": [
33
+ {
34
+ "account_item_name": "売上高",
35
+ "tax_code": 21,
36
+ "amount": 920000,
37
+ "description": "Webシステム開発 4月分"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "issue_date": "2025-04-15",
43
+ "type": "income",
44
+ "partner_name": "ベータ工業株式会社",
45
+ "details": [
46
+ {
47
+ "account_item_name": "売上高",
48
+ "tax_code": 21,
49
+ "amount": 700000,
50
+ "description": "基幹システム保守 4月分"
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "issue_date": "2025-04-05",
56
+ "type": "expense",
57
+ "partner_name": "フリーランスエンジニア 木村",
58
+ "details": [
59
+ {
60
+ "account_item_name": "外注費",
61
+ "tax_code": 34,
62
+ "amount": 330000,
63
+ "description": "開発委託費 4月分"
64
+ }
65
+ ]
66
+ },
67
+ {
68
+ "issue_date": "2025-04-25",
69
+ "type": "expense",
70
+ "partner_name": "代表取締役 山田 義明",
71
+ "details": [
72
+ {
73
+ "account_item_name": "役員報酬",
74
+ "tax_code": 0,
75
+ "amount": 500000,
76
+ "description": "4月度 役員報酬"
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "issue_date": "2025-04-25",
82
+ "type": "expense",
83
+ "partner_name": "給与(社員3名)",
84
+ "details": [
85
+ {
86
+ "account_item_name": "給料手当",
87
+ "tax_code": 0,
88
+ "amount": 950000,
89
+ "description": "4月度 給与"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "issue_date": "2025-04-07",
95
+ "type": "expense",
96
+ "partner_name": "株式会社クラウドサービス",
97
+ "details": [
98
+ {
99
+ "account_item_name": "支払手数料",
100
+ "tax_code": 34,
101
+ "amount": 110000,
102
+ "description": "クラウドサービス利用料 4月分"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "issue_date": "2025-04-12",
108
+ "type": "expense",
109
+ "partner_name": "ネットリンク通信株式会社",
110
+ "details": [
111
+ {
112
+ "account_item_name": "通信費",
113
+ "tax_code": 34,
114
+ "amount": 15000,
115
+ "description": "オフィス通信費 4月分"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2025-05-10",
121
+ "type": "income",
122
+ "partner_name": "株式会社アルファシステム",
123
+ "details": [
124
+ {
125
+ "account_item_name": "売上高",
126
+ "tax_code": 21,
127
+ "amount": 880000,
128
+ "description": "Webシステム開発 5月分"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "issue_date": "2025-05-15",
134
+ "type": "income",
135
+ "partner_name": "ベータ工業株式会社",
136
+ "details": [
137
+ {
138
+ "account_item_name": "売上高",
139
+ "tax_code": 21,
140
+ "amount": 660000,
141
+ "description": "基幹システム保守 5月分"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "issue_date": "2025-05-20",
147
+ "type": "income",
148
+ "partner_name": "ガンマ商事株式会社",
149
+ "details": [
150
+ {
151
+ "account_item_name": "売上高",
152
+ "tax_code": 21,
153
+ "amount": 600000,
154
+ "description": "コンサルティング 5月分"
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "issue_date": "2025-05-05",
160
+ "type": "expense",
161
+ "partner_name": "フリーランスエンジニア 木村",
162
+ "details": [
163
+ {
164
+ "account_item_name": "外注費",
165
+ "tax_code": 34,
166
+ "amount": 330000,
167
+ "description": "開発委託費 5月分"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "issue_date": "2025-05-25",
173
+ "type": "expense",
174
+ "partner_name": "代表取締役 山田 義明",
175
+ "details": [
176
+ {
177
+ "account_item_name": "役員報酬",
178
+ "tax_code": 0,
179
+ "amount": 500000,
180
+ "description": "5月度 役員報酬"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "issue_date": "2025-05-25",
186
+ "type": "expense",
187
+ "partner_name": "給与(社員3名)",
188
+ "details": [
189
+ {
190
+ "account_item_name": "給料手当",
191
+ "tax_code": 0,
192
+ "amount": 950000,
193
+ "description": "5月度 給与"
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "issue_date": "2025-05-07",
199
+ "type": "expense",
200
+ "partner_name": "株式会社クラウドサービス",
201
+ "details": [
202
+ {
203
+ "account_item_name": "支払手数料",
204
+ "tax_code": 34,
205
+ "amount": 110000,
206
+ "description": "クラウドサービス利用料 5月分"
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ "issue_date": "2025-05-12",
212
+ "type": "expense",
213
+ "partner_name": "ネットリンク通信株式会社",
214
+ "details": [
215
+ {
216
+ "account_item_name": "通信費",
217
+ "tax_code": 34,
218
+ "amount": 15000,
219
+ "description": "オフィス通信費 5月分"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "issue_date": "2025-05-28",
225
+ "type": "expense",
226
+ "partner_name": "株式会社オフィスリンク",
227
+ "details": [
228
+ {
229
+ "account_item_name": "消耗品費",
230
+ "tax_code": 34,
231
+ "amount": 18000,
232
+ "description": "文房具・コピー用紙 5月分"
233
+ }
234
+ ]
235
+ },
236
+ {
237
+ "issue_date": "2025-06-10",
238
+ "type": "income",
239
+ "partner_name": "株式会社アルファシステム",
240
+ "details": [
241
+ {
242
+ "account_item_name": "売上高",
243
+ "tax_code": 21,
244
+ "amount": 950000,
245
+ "description": "Webシステム開発 6月分"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "issue_date": "2025-06-15",
251
+ "type": "income",
252
+ "partner_name": "ベータ工業株式会社",
253
+ "details": [
254
+ {
255
+ "account_item_name": "売上高",
256
+ "tax_code": 21,
257
+ "amount": 720000,
258
+ "description": "基幹システム保守 6月分"
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "issue_date": "2025-06-05",
264
+ "type": "expense",
265
+ "partner_name": "フリーランスエンジニア 木村",
266
+ "details": [
267
+ {
268
+ "account_item_name": "外注費",
269
+ "tax_code": 34,
270
+ "amount": 330000,
271
+ "description": "開発委託費 6月分"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "issue_date": "2025-06-25",
277
+ "type": "expense",
278
+ "partner_name": "代表取締役 山田 義明",
279
+ "details": [
280
+ {
281
+ "account_item_name": "役員報酬",
282
+ "tax_code": 0,
283
+ "amount": 500000,
284
+ "description": "6月度 役員報酬"
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "issue_date": "2025-06-25",
290
+ "type": "expense",
291
+ "partner_name": "給与(社員3名)",
292
+ "details": [
293
+ {
294
+ "account_item_name": "給料手当",
295
+ "tax_code": 0,
296
+ "amount": 950000,
297
+ "description": "6月度 給与"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "issue_date": "2025-06-07",
303
+ "type": "expense",
304
+ "partner_name": "株式会社クラウドサービス",
305
+ "details": [
306
+ {
307
+ "account_item_name": "支払手数料",
308
+ "tax_code": 34,
309
+ "amount": 110000,
310
+ "description": "クラウドサービス利用料 6月分"
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "issue_date": "2025-06-12",
316
+ "type": "expense",
317
+ "partner_name": "ネットリンク通信株式会社",
318
+ "details": [
319
+ {
320
+ "account_item_name": "通信費",
321
+ "tax_code": 34,
322
+ "amount": 15000,
323
+ "description": "オフィス通信費 6月分"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "issue_date": "2025-07-10",
329
+ "type": "income",
330
+ "partner_name": "株式会社アルファシステム",
331
+ "details": [
332
+ {
333
+ "account_item_name": "売上高",
334
+ "tax_code": 21,
335
+ "amount": 880000,
336
+ "description": "Webシステム開発 7月分"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "issue_date": "2025-07-15",
342
+ "type": "income",
343
+ "partner_name": "ベータ工業株式会社",
344
+ "details": [
345
+ {
346
+ "account_item_name": "売上高",
347
+ "tax_code": 21,
348
+ "amount": 660000,
349
+ "description": "基幹システム保守 7月分"
350
+ }
351
+ ]
352
+ },
353
+ {
354
+ "issue_date": "2025-07-20",
355
+ "type": "income",
356
+ "partner_name": "ガンマ商事株式会社",
357
+ "details": [
358
+ {
359
+ "account_item_name": "売上高",
360
+ "tax_code": 21,
361
+ "amount": 550000,
362
+ "description": "コンサルティング 7月分"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "issue_date": "2025-07-05",
368
+ "type": "expense",
369
+ "partner_name": "フリーランスエンジニア 木村",
370
+ "details": [
371
+ {
372
+ "account_item_name": "外注費",
373
+ "tax_code": 34,
374
+ "amount": 330000,
375
+ "description": "開発委託費 7月分"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "issue_date": "2025-07-25",
381
+ "type": "expense",
382
+ "partner_name": "代表取締役 山田 義明",
383
+ "details": [
384
+ {
385
+ "account_item_name": "役員報酬",
386
+ "tax_code": 0,
387
+ "amount": 500000,
388
+ "description": "7月度 役員報酬"
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "issue_date": "2025-07-25",
394
+ "type": "expense",
395
+ "partner_name": "給与(社員3名)",
396
+ "details": [
397
+ {
398
+ "account_item_name": "給料手当",
399
+ "tax_code": 0,
400
+ "amount": 950000,
401
+ "description": "7月度 給与"
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "issue_date": "2025-07-07",
407
+ "type": "expense",
408
+ "partner_name": "株式会社クラウドサービス",
409
+ "details": [
410
+ {
411
+ "account_item_name": "支払手数料",
412
+ "tax_code": 34,
413
+ "amount": 110000,
414
+ "description": "クラウドサービス利用料 7月分"
415
+ }
416
+ ]
417
+ },
418
+ {
419
+ "issue_date": "2025-07-12",
420
+ "type": "expense",
421
+ "partner_name": "ネットリンク通信株式会社",
422
+ "details": [
423
+ {
424
+ "account_item_name": "通信費",
425
+ "tax_code": 34,
426
+ "amount": 15000,
427
+ "description": "オフィス通信費 7月分"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "issue_date": "2025-07-28",
433
+ "type": "expense",
434
+ "partner_name": "株式会社オフィスリンク",
435
+ "details": [
436
+ {
437
+ "account_item_name": "消耗品費",
438
+ "tax_code": 34,
439
+ "amount": 22000,
440
+ "description": "文房具・コピー用紙 7月分"
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "issue_date": "2025-08-10",
446
+ "type": "income",
447
+ "partner_name": "株式会社アルファシステム",
448
+ "details": [
449
+ {
450
+ "account_item_name": "売上高",
451
+ "tax_code": 21,
452
+ "amount": 900000,
453
+ "description": "Webシステム開発 8月分"
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "issue_date": "2025-08-15",
459
+ "type": "income",
460
+ "partner_name": "ベータ工業株式会社",
461
+ "details": [
462
+ {
463
+ "account_item_name": "売上高",
464
+ "tax_code": 21,
465
+ "amount": 680000,
466
+ "description": "基幹システム保守 8月分"
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "issue_date": "2025-08-05",
472
+ "type": "expense",
473
+ "partner_name": "フリーランスエンジニア 木村",
474
+ "details": [
475
+ {
476
+ "account_item_name": "外注費",
477
+ "tax_code": 34,
478
+ "amount": 330000,
479
+ "description": "開発委託費 8月分"
480
+ }
481
+ ]
482
+ },
483
+ {
484
+ "issue_date": "2025-08-25",
485
+ "type": "expense",
486
+ "partner_name": "代表取締役 山田 義明",
487
+ "details": [
488
+ {
489
+ "account_item_name": "役員報酬",
490
+ "tax_code": 0,
491
+ "amount": 500000,
492
+ "description": "8月度 役員報酬"
493
+ }
494
+ ]
495
+ },
496
+ {
497
+ "issue_date": "2025-08-25",
498
+ "type": "expense",
499
+ "partner_name": "給与(社員3名)",
500
+ "details": [
501
+ {
502
+ "account_item_name": "給料手当",
503
+ "tax_code": 0,
504
+ "amount": 950000,
505
+ "description": "8月度 給与"
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "issue_date": "2025-08-07",
511
+ "type": "expense",
512
+ "partner_name": "株式会社クラウドサービス",
513
+ "details": [
514
+ {
515
+ "account_item_name": "支払手数料",
516
+ "tax_code": 34,
517
+ "amount": 110000,
518
+ "description": "クラウドサービス利用料 8月分"
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "issue_date": "2025-08-12",
524
+ "type": "expense",
525
+ "partner_name": "ネットリンク通信株式会社",
526
+ "details": [
527
+ {
528
+ "account_item_name": "通信費",
529
+ "tax_code": 34,
530
+ "amount": 15000,
531
+ "description": "オフィス通信費 8月分"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "issue_date": "2025-09-10",
537
+ "type": "income",
538
+ "partner_name": "株式会社アルファシステム",
539
+ "details": [
540
+ {
541
+ "account_item_name": "売上高",
542
+ "tax_code": 21,
543
+ "amount": 440000,
544
+ "description": "システム開発 9月分(大型案件一時停止)"
545
+ }
546
+ ]
547
+ },
548
+ {
549
+ "issue_date": "2025-09-15",
550
+ "type": "income",
551
+ "partner_name": "ベータ工業株式会社",
552
+ "details": [
553
+ {
554
+ "account_item_name": "売上高",
555
+ "tax_code": 21,
556
+ "amount": 330000,
557
+ "description": "基幹システム保守 9月分"
558
+ }
559
+ ]
560
+ },
561
+ {
562
+ "issue_date": "2025-09-05",
563
+ "type": "expense",
564
+ "partner_name": "フリーランスエンジニア 木村",
565
+ "details": [
566
+ {
567
+ "account_item_name": "外注費",
568
+ "tax_code": 34,
569
+ "amount": 330000,
570
+ "description": "開発委託費 9月分"
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "issue_date": "2025-09-25",
576
+ "type": "expense",
577
+ "partner_name": "代表取締役 山田 義明",
578
+ "details": [
579
+ {
580
+ "account_item_name": "役員報酬",
581
+ "tax_code": 0,
582
+ "amount": 500000,
583
+ "description": "9月度 役員報酬"
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "issue_date": "2025-09-25",
589
+ "type": "expense",
590
+ "partner_name": "給与(社員3名)",
591
+ "details": [
592
+ {
593
+ "account_item_name": "給料手当",
594
+ "tax_code": 0,
595
+ "amount": 950000,
596
+ "description": "9月度 給与"
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "issue_date": "2025-09-07",
602
+ "type": "expense",
603
+ "partner_name": "株式会社クラウドサービス",
604
+ "details": [
605
+ {
606
+ "account_item_name": "支払手数料",
607
+ "tax_code": 34,
608
+ "amount": 110000,
609
+ "description": "クラウドサービス利用料 9月分"
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "issue_date": "2025-09-12",
615
+ "type": "expense",
616
+ "partner_name": "ネットリンク通信株式会社",
617
+ "details": [
618
+ {
619
+ "account_item_name": "通信費",
620
+ "tax_code": 34,
621
+ "amount": 15000,
622
+ "description": "オフィス通信費 9月分"
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "issue_date": "2025-09-28",
628
+ "type": "expense",
629
+ "partner_name": "株式会社オフィスリンク",
630
+ "details": [
631
+ {
632
+ "account_item_name": "消耗品費",
633
+ "tax_code": 34,
634
+ "amount": 18000,
635
+ "description": "文房具・コピー用紙 9月分"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "issue_date": "2025-10-10",
641
+ "type": "income",
642
+ "partner_name": "株式会社アルファシステム",
643
+ "details": [
644
+ {
645
+ "account_item_name": "売上高",
646
+ "tax_code": 21,
647
+ "amount": 880000,
648
+ "description": "Webシステム開発 10月分"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "issue_date": "2025-10-15",
654
+ "type": "income",
655
+ "partner_name": "ベータ工業株式会社",
656
+ "details": [
657
+ {
658
+ "account_item_name": "売上高",
659
+ "tax_code": 21,
660
+ "amount": 660000,
661
+ "description": "基幹システム保守 10月分"
662
+ }
663
+ ]
664
+ },
665
+ {
666
+ "issue_date": "2025-10-05",
667
+ "type": "expense",
668
+ "partner_name": "フリーランスエンジニア 木村",
669
+ "details": [
670
+ {
671
+ "account_item_name": "外注費",
672
+ "tax_code": 34,
673
+ "amount": 330000,
674
+ "description": "開発委託費 10月分"
675
+ }
676
+ ]
677
+ },
678
+ {
679
+ "issue_date": "2025-10-25",
680
+ "type": "expense",
681
+ "partner_name": "代表取締役 山田 義明",
682
+ "details": [
683
+ {
684
+ "account_item_name": "役員報酬",
685
+ "tax_code": 0,
686
+ "amount": 500000,
687
+ "description": "10月度 役員報酬"
688
+ }
689
+ ]
690
+ },
691
+ {
692
+ "issue_date": "2025-10-25",
693
+ "type": "expense",
694
+ "partner_name": "給与(社員3名)",
695
+ "details": [
696
+ {
697
+ "account_item_name": "給料手当",
698
+ "tax_code": 0,
699
+ "amount": 950000,
700
+ "description": "10月度 給与"
701
+ }
702
+ ]
703
+ },
704
+ {
705
+ "issue_date": "2025-10-07",
706
+ "type": "expense",
707
+ "partner_name": "株式会社クラウドサービス",
708
+ "details": [
709
+ {
710
+ "account_item_name": "支払手数料",
711
+ "tax_code": 34,
712
+ "amount": 110000,
713
+ "description": "クラウドサービス利用料 10月分"
714
+ }
715
+ ]
716
+ },
717
+ {
718
+ "issue_date": "2025-10-12",
719
+ "type": "expense",
720
+ "partner_name": "ネットリンク通信株式会社",
721
+ "details": [
722
+ {
723
+ "account_item_name": "通信費",
724
+ "tax_code": 34,
725
+ "amount": 15000,
726
+ "description": "オフィス通信費 10月分"
727
+ }
728
+ ]
729
+ },
730
+ {
731
+ "issue_date": "2025-11-10",
732
+ "type": "income",
733
+ "partner_name": "株式会社アルファシステム",
734
+ "details": [
735
+ {
736
+ "account_item_name": "売上高",
737
+ "tax_code": 21,
738
+ "amount": 990000,
739
+ "description": "Webシステム開発 11月分"
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "issue_date": "2025-11-15",
745
+ "type": "income",
746
+ "partner_name": "ベータ工業株式会社",
747
+ "details": [
748
+ {
749
+ "account_item_name": "売上高",
750
+ "tax_code": 21,
751
+ "amount": 770000,
752
+ "description": "基幹システム保守 11月分"
753
+ }
754
+ ]
755
+ },
756
+ {
757
+ "issue_date": "2025-11-20",
758
+ "type": "income",
759
+ "partner_name": "ガンマ商事株式会社",
760
+ "details": [
761
+ {
762
+ "account_item_name": "売上高",
763
+ "tax_code": 21,
764
+ "amount": 550000,
765
+ "description": "コンサルティング 11月分"
766
+ }
767
+ ]
768
+ },
769
+ {
770
+ "issue_date": "2025-11-05",
771
+ "type": "expense",
772
+ "partner_name": "フリーランスエンジニア 木村",
773
+ "details": [
774
+ {
775
+ "account_item_name": "外注費",
776
+ "tax_code": 34,
777
+ "amount": 660000,
778
+ "description": "開発委託費 11月(年末繁忙期増員)"
779
+ }
780
+ ]
781
+ },
782
+ {
783
+ "issue_date": "2025-11-05",
784
+ "type": "expense",
785
+ "partner_name": "フリーランスエンジニア 佐々木",
786
+ "details": [
787
+ {
788
+ "account_item_name": "外注費",
789
+ "tax_code": 34,
790
+ "amount": 440000,
791
+ "description": "開発委託費 11月(臨時増員)"
792
+ }
793
+ ]
794
+ },
795
+ {
796
+ "issue_date": "2025-11-25",
797
+ "type": "expense",
798
+ "partner_name": "代表取締役 山田 義明",
799
+ "details": [
800
+ {
801
+ "account_item_name": "役員報酬",
802
+ "tax_code": 0,
803
+ "amount": 500000,
804
+ "description": "11月度 役員報酬"
805
+ }
806
+ ]
807
+ },
808
+ {
809
+ "issue_date": "2025-11-25",
810
+ "type": "expense",
811
+ "partner_name": "給与(社員3名)",
812
+ "details": [
813
+ {
814
+ "account_item_name": "給料手当",
815
+ "tax_code": 0,
816
+ "amount": 950000,
817
+ "description": "11月度 給与"
818
+ }
819
+ ]
820
+ },
821
+ {
822
+ "issue_date": "2025-11-07",
823
+ "type": "expense",
824
+ "partner_name": "株式会社クラウドサービス",
825
+ "details": [
826
+ {
827
+ "account_item_name": "支払手数料",
828
+ "tax_code": 34,
829
+ "amount": 110000,
830
+ "description": "クラウドサービス利用料 11月分"
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "issue_date": "2025-11-12",
836
+ "type": "expense",
837
+ "partner_name": "ネットリンク通信株式会社",
838
+ "details": [
839
+ {
840
+ "account_item_name": "通信費",
841
+ "tax_code": 34,
842
+ "amount": 15000,
843
+ "description": "オフィス通信費 11月分"
844
+ }
845
+ ]
846
+ },
847
+ {
848
+ "issue_date": "2025-11-28",
849
+ "type": "expense",
850
+ "partner_name": "株式会社オフィスリンク",
851
+ "details": [
852
+ {
853
+ "account_item_name": "消耗品費",
854
+ "tax_code": 34,
855
+ "amount": 20000,
856
+ "description": "文房具・コピー用紙 11月分"
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ "issue_date": "2025-12-10",
862
+ "type": "income",
863
+ "partner_name": "株式会社アルファシステム",
864
+ "details": [
865
+ {
866
+ "account_item_name": "売上高",
867
+ "tax_code": 21,
868
+ "amount": 880000,
869
+ "description": "Webシステム開発 12月分"
870
+ }
871
+ ]
872
+ },
873
+ {
874
+ "issue_date": "2025-12-15",
875
+ "type": "income",
876
+ "partner_name": "ベータ工業株式会社",
877
+ "details": [
878
+ {
879
+ "account_item_name": "売上高",
880
+ "tax_code": 21,
881
+ "amount": 660000,
882
+ "description": "基幹システム保守 12月分"
883
+ }
884
+ ]
885
+ },
886
+ {
887
+ "issue_date": "2025-12-05",
888
+ "type": "expense",
889
+ "partner_name": "フリーランスエンジニア 木村",
890
+ "details": [
891
+ {
892
+ "account_item_name": "外注費",
893
+ "tax_code": 34,
894
+ "amount": 330000,
895
+ "description": "開発委託費 12月分"
896
+ }
897
+ ]
898
+ },
899
+ {
900
+ "issue_date": "2025-12-25",
901
+ "type": "expense",
902
+ "partner_name": "代表取締役 山田 義明",
903
+ "details": [
904
+ {
905
+ "account_item_name": "役員報酬",
906
+ "tax_code": 0,
907
+ "amount": 500000,
908
+ "description": "12月度 役員報酬"
909
+ }
910
+ ]
911
+ },
912
+ {
913
+ "issue_date": "2025-12-25",
914
+ "type": "expense",
915
+ "partner_name": "給与(社員3名)",
916
+ "details": [
917
+ {
918
+ "account_item_name": "給料手当",
919
+ "tax_code": 0,
920
+ "amount": 950000,
921
+ "description": "12月度 給与"
922
+ }
923
+ ]
924
+ },
925
+ {
926
+ "issue_date": "2025-12-07",
927
+ "type": "expense",
928
+ "partner_name": "株式会社クラウドサービス",
929
+ "details": [
930
+ {
931
+ "account_item_name": "支払手数料",
932
+ "tax_code": 34,
933
+ "amount": 110000,
934
+ "description": "クラウドサービス利用料 12月分"
935
+ }
936
+ ]
937
+ },
938
+ {
939
+ "issue_date": "2025-12-12",
940
+ "type": "expense",
941
+ "partner_name": "ネットリンク通信株式会社",
942
+ "details": [
943
+ {
944
+ "account_item_name": "通信費",
945
+ "tax_code": 34,
946
+ "amount": 15000,
947
+ "description": "オフィス通信費 12月分"
948
+ }
949
+ ]
950
+ },
951
+ {
952
+ "issue_date": "2026-01-10",
953
+ "type": "income",
954
+ "partner_name": "株式会社アルファシステム",
955
+ "details": [
956
+ {
957
+ "account_item_name": "売上高",
958
+ "tax_code": 21,
959
+ "amount": 880000,
960
+ "description": "Webシステム開発 1月分"
961
+ }
962
+ ]
963
+ },
964
+ {
965
+ "issue_date": "2026-01-15",
966
+ "type": "income",
967
+ "partner_name": "ベータ工業株式会社",
968
+ "details": [
969
+ {
970
+ "account_item_name": "売上高",
971
+ "tax_code": 21,
972
+ "amount": 700000,
973
+ "description": "基幹システム保守 1月分"
974
+ }
975
+ ]
976
+ },
977
+ {
978
+ "issue_date": "2026-01-20",
979
+ "type": "income",
980
+ "partner_name": "ガンマ商事株式会社",
981
+ "details": [
982
+ {
983
+ "account_item_name": "売上高",
984
+ "tax_code": 21,
985
+ "amount": 550000,
986
+ "description": "コンサルティング 1月分"
987
+ }
988
+ ]
989
+ },
990
+ {
991
+ "issue_date": "2026-01-05",
992
+ "type": "expense",
993
+ "partner_name": "フリーランスエンジニア 木村",
994
+ "details": [
995
+ {
996
+ "account_item_name": "外注費",
997
+ "tax_code": 34,
998
+ "amount": 330000,
999
+ "description": "開発委託費 1月分"
1000
+ }
1001
+ ]
1002
+ },
1003
+ {
1004
+ "issue_date": "2026-01-25",
1005
+ "type": "expense",
1006
+ "partner_name": "代表取締役 山田 義明",
1007
+ "details": [
1008
+ {
1009
+ "account_item_name": "役員報酬",
1010
+ "tax_code": 0,
1011
+ "amount": 500000,
1012
+ "description": "1月度 役員報酬"
1013
+ }
1014
+ ]
1015
+ },
1016
+ {
1017
+ "issue_date": "2026-01-25",
1018
+ "type": "expense",
1019
+ "partner_name": "給与(社員3名)",
1020
+ "details": [
1021
+ {
1022
+ "account_item_name": "給料手当",
1023
+ "tax_code": 0,
1024
+ "amount": 950000,
1025
+ "description": "1月度 給与"
1026
+ }
1027
+ ]
1028
+ },
1029
+ {
1030
+ "issue_date": "2026-01-07",
1031
+ "type": "expense",
1032
+ "partner_name": "株式会社クラウドサービス",
1033
+ "details": [
1034
+ {
1035
+ "account_item_name": "支払手数料",
1036
+ "tax_code": 34,
1037
+ "amount": 110000,
1038
+ "description": "クラウドサービス利用料 1月分"
1039
+ }
1040
+ ]
1041
+ },
1042
+ {
1043
+ "issue_date": "2026-01-12",
1044
+ "type": "expense",
1045
+ "partner_name": "ネットリンク通信株式会社",
1046
+ "details": [
1047
+ {
1048
+ "account_item_name": "通信費",
1049
+ "tax_code": 34,
1050
+ "amount": 15000,
1051
+ "description": "オフィス通信費 1月分"
1052
+ }
1053
+ ]
1054
+ },
1055
+ {
1056
+ "issue_date": "2026-01-28",
1057
+ "type": "expense",
1058
+ "partner_name": "株式会社オフィスリンク",
1059
+ "details": [
1060
+ {
1061
+ "account_item_name": "消耗品費",
1062
+ "tax_code": 34,
1063
+ "amount": 19000,
1064
+ "description": "文房具・コピー用紙 1月分"
1065
+ }
1066
+ ]
1067
+ },
1068
+ {
1069
+ "issue_date": "2026-02-10",
1070
+ "type": "income",
1071
+ "partner_name": "株式会社アルファシステム",
1072
+ "details": [
1073
+ {
1074
+ "account_item_name": "売上高",
1075
+ "tax_code": 21,
1076
+ "amount": 880000,
1077
+ "description": "Webシステム開発 2月分"
1078
+ }
1079
+ ]
1080
+ },
1081
+ {
1082
+ "issue_date": "2026-02-15",
1083
+ "type": "income",
1084
+ "partner_name": "ベータ工業株式会社",
1085
+ "details": [
1086
+ {
1087
+ "account_item_name": "売上高",
1088
+ "tax_code": 21,
1089
+ "amount": 660000,
1090
+ "description": "基幹システム保守 2月分"
1091
+ }
1092
+ ]
1093
+ },
1094
+ {
1095
+ "issue_date": "2026-02-20",
1096
+ "type": "income",
1097
+ "partner_name": "ガンマ商事株式会社",
1098
+ "details": [
1099
+ {
1100
+ "account_item_name": "売上高",
1101
+ "tax_code": 21,
1102
+ "amount": 550000,
1103
+ "description": "業務改善コンサルティング 2月"
1104
+ }
1105
+ ]
1106
+ },
1107
+ {
1108
+ "issue_date": "2026-02-20",
1109
+ "type": "income",
1110
+ "partner_name": "ガンマ商事株式会社",
1111
+ "details": [
1112
+ {
1113
+ "account_item_name": "売上高",
1114
+ "tax_code": 21,
1115
+ "amount": 550000,
1116
+ "description": "業務改善コンサルティング 2月(重複計上 ※削除が必要)"
1117
+ }
1118
+ ]
1119
+ },
1120
+ {
1121
+ "issue_date": "2026-02-05",
1122
+ "type": "expense",
1123
+ "partner_name": "フリーランスエンジニア 木村",
1124
+ "details": [
1125
+ {
1126
+ "account_item_name": "外注費",
1127
+ "tax_code": 34,
1128
+ "amount": 330000,
1129
+ "description": "開発委託費 2月分"
1130
+ }
1131
+ ]
1132
+ },
1133
+ {
1134
+ "issue_date": "2026-02-25",
1135
+ "type": "expense",
1136
+ "partner_name": "代表取締役 山田 義明",
1137
+ "details": [
1138
+ {
1139
+ "account_item_name": "役員報酬",
1140
+ "tax_code": 0,
1141
+ "amount": 500000,
1142
+ "description": "2月度 役員報酬"
1143
+ }
1144
+ ]
1145
+ },
1146
+ {
1147
+ "issue_date": "2026-02-25",
1148
+ "type": "expense",
1149
+ "partner_name": "給与(社員3名)",
1150
+ "details": [
1151
+ {
1152
+ "account_item_name": "給料手当",
1153
+ "tax_code": 0,
1154
+ "amount": 950000,
1155
+ "description": "2月度 給与"
1156
+ }
1157
+ ]
1158
+ },
1159
+ {
1160
+ "issue_date": "2026-02-07",
1161
+ "type": "expense",
1162
+ "partner_name": "株式会社クラウドサービス",
1163
+ "details": [
1164
+ {
1165
+ "account_item_name": "支払手数料",
1166
+ "tax_code": 34,
1167
+ "amount": 110000,
1168
+ "description": "クラウドサービス利用料 2月分"
1169
+ }
1170
+ ]
1171
+ },
1172
+ {
1173
+ "issue_date": "2026-02-12",
1174
+ "type": "expense",
1175
+ "partner_name": "ネットリンク通信株式会社",
1176
+ "details": [
1177
+ {
1178
+ "account_item_name": "通信費",
1179
+ "tax_code": 34,
1180
+ "amount": 15000,
1181
+ "description": "オフィス通信費 2月分"
1182
+ }
1183
+ ]
1184
+ },
1185
+ {
1186
+ "issue_date": "2026-03-10",
1187
+ "type": "income",
1188
+ "partner_name": "株式会社アルファシステム",
1189
+ "details": [
1190
+ {
1191
+ "account_item_name": "売上高",
1192
+ "tax_code": 21,
1193
+ "amount": 880000,
1194
+ "description": "Webシステム開発 3月分"
1195
+ }
1196
+ ]
1197
+ },
1198
+ {
1199
+ "issue_date": "2026-03-15",
1200
+ "type": "income",
1201
+ "partner_name": "ベータ工業株式会社",
1202
+ "details": [
1203
+ {
1204
+ "account_item_name": "売上高",
1205
+ "tax_code": 21,
1206
+ "amount": 660000,
1207
+ "description": "基幹システム保守 3月分"
1208
+ }
1209
+ ]
1210
+ },
1211
+ {
1212
+ "issue_date": "2026-03-20",
1213
+ "type": "income",
1214
+ "partner_name": "ガンマ商事株式会社",
1215
+ "details": [
1216
+ {
1217
+ "account_item_name": "売上高",
1218
+ "tax_code": 21,
1219
+ "amount": 550000,
1220
+ "description": "コンサルティング 3月分"
1221
+ }
1222
+ ]
1223
+ },
1224
+ {
1225
+ "issue_date": "2026-03-05",
1226
+ "type": "expense",
1227
+ "partner_name": "フリーランスエンジニア 木村",
1228
+ "details": [
1229
+ {
1230
+ "account_item_name": "外注費",
1231
+ "tax_code": 34,
1232
+ "amount": 330000,
1233
+ "description": "開発委託費 3月分"
1234
+ }
1235
+ ]
1236
+ },
1237
+ {
1238
+ "issue_date": "2026-03-25",
1239
+ "type": "expense",
1240
+ "partner_name": "代表取締役 山田 義明",
1241
+ "details": [
1242
+ {
1243
+ "account_item_name": "役員報酬",
1244
+ "tax_code": 0,
1245
+ "amount": 500000,
1246
+ "description": "3月度 役員報酬"
1247
+ }
1248
+ ]
1249
+ },
1250
+ {
1251
+ "issue_date": "2026-03-25",
1252
+ "type": "expense",
1253
+ "partner_name": "給与(社員3名)",
1254
+ "details": [
1255
+ {
1256
+ "account_item_name": "給料手当",
1257
+ "tax_code": 0,
1258
+ "amount": 950000,
1259
+ "description": "3月度 給与"
1260
+ }
1261
+ ]
1262
+ },
1263
+ {
1264
+ "issue_date": "2026-03-07",
1265
+ "type": "expense",
1266
+ "partner_name": "株式会社クラウドサービス",
1267
+ "details": [
1268
+ {
1269
+ "account_item_name": "支払手数料",
1270
+ "tax_code": 34,
1271
+ "amount": 110000,
1272
+ "description": "クラウドサービス利用料 3月分"
1273
+ }
1274
+ ]
1275
+ },
1276
+ {
1277
+ "issue_date": "2026-03-12",
1278
+ "type": "expense",
1279
+ "partner_name": "ネットリンク通信株式会社",
1280
+ "details": [
1281
+ {
1282
+ "account_item_name": "通信費",
1283
+ "tax_code": 34,
1284
+ "amount": 15000,
1285
+ "description": "オフィス通信費 3月分"
1286
+ }
1287
+ ]
1288
+ },
1289
+ {
1290
+ "issue_date": "2026-03-28",
1291
+ "type": "expense",
1292
+ "partner_name": "株式会社オフィスリンク",
1293
+ "details": [
1294
+ {
1295
+ "account_item_name": "消耗品費",
1296
+ "tax_code": 34,
1297
+ "amount": 21000,
1298
+ "description": "文房具・コピー用紙 3月分"
1299
+ }
1300
+ ]
1301
+ }
1302
+ ],
1303
+ "manualJournals": [
1304
+ {
1305
+ "issue_date": "2025-04-30",
1306
+ "details": [
1307
+ {
1308
+ "entry_side": "debit",
1309
+ "account_item_name": "外注費",
1310
+ "tax_code": 0,
1311
+ "amount": 132000,
1312
+ "description": "4月末 外注費未払計上"
1313
+ },
1314
+ {
1315
+ "entry_side": "credit",
1316
+ "account_item_name": "未払費用",
1317
+ "tax_code": 0,
1318
+ "amount": 132000,
1319
+ "description": "4月末 外注費未払"
1320
+ }
1321
+ ]
1322
+ },
1323
+ {
1324
+ "issue_date": "2025-05-31",
1325
+ "details": [
1326
+ {
1327
+ "entry_side": "debit",
1328
+ "account_item_name": "外注費",
1329
+ "tax_code": 0,
1330
+ "amount": 132000,
1331
+ "description": "5月末 外注費未払計上"
1332
+ },
1333
+ {
1334
+ "entry_side": "credit",
1335
+ "account_item_name": "未払費用",
1336
+ "tax_code": 0,
1337
+ "amount": 132000,
1338
+ "description": "5月末 外注費未払"
1339
+ }
1340
+ ]
1341
+ },
1342
+ {
1343
+ "issue_date": "2025-06-30",
1344
+ "details": [
1345
+ {
1346
+ "entry_side": "debit",
1347
+ "account_item_name": "外注費",
1348
+ "tax_code": 0,
1349
+ "amount": 132000,
1350
+ "description": "6月末 外注費未払計上"
1351
+ },
1352
+ {
1353
+ "entry_side": "credit",
1354
+ "account_item_name": "未払費用",
1355
+ "tax_code": 0,
1356
+ "amount": 132000,
1357
+ "description": "6月末 外注費未払"
1358
+ }
1359
+ ]
1360
+ },
1361
+ {
1362
+ "issue_date": "2025-07-31",
1363
+ "details": [
1364
+ {
1365
+ "entry_side": "debit",
1366
+ "account_item_name": "外注費",
1367
+ "tax_code": 0,
1368
+ "amount": 132000,
1369
+ "description": "7月末 外注費未払計上"
1370
+ },
1371
+ {
1372
+ "entry_side": "credit",
1373
+ "account_item_name": "未払費用",
1374
+ "tax_code": 0,
1375
+ "amount": 132000,
1376
+ "description": "7月末 外注費未払"
1377
+ }
1378
+ ]
1379
+ },
1380
+ {
1381
+ "issue_date": "2025-08-31",
1382
+ "details": [
1383
+ {
1384
+ "entry_side": "debit",
1385
+ "account_item_name": "外注費",
1386
+ "tax_code": 0,
1387
+ "amount": 132000,
1388
+ "description": "8月末 外注費未払計上"
1389
+ },
1390
+ {
1391
+ "entry_side": "credit",
1392
+ "account_item_name": "未払費用",
1393
+ "tax_code": 0,
1394
+ "amount": 132000,
1395
+ "description": "8月末 外注費未払"
1396
+ }
1397
+ ]
1398
+ },
1399
+ {
1400
+ "issue_date": "2025-09-30",
1401
+ "details": [
1402
+ {
1403
+ "entry_side": "debit",
1404
+ "account_item_name": "外注費",
1405
+ "tax_code": 0,
1406
+ "amount": 132000,
1407
+ "description": "9月末 外注費未払計上"
1408
+ },
1409
+ {
1410
+ "entry_side": "credit",
1411
+ "account_item_name": "未払費用",
1412
+ "tax_code": 0,
1413
+ "amount": 132000,
1414
+ "description": "9月末 外注費未払"
1415
+ }
1416
+ ]
1417
+ },
1418
+ {
1419
+ "issue_date": "2025-10-31",
1420
+ "details": [
1421
+ {
1422
+ "entry_side": "debit",
1423
+ "account_item_name": "外注費",
1424
+ "tax_code": 0,
1425
+ "amount": 132000,
1426
+ "description": "10月末 外注費未払計上"
1427
+ },
1428
+ {
1429
+ "entry_side": "credit",
1430
+ "account_item_name": "未払費用",
1431
+ "tax_code": 0,
1432
+ "amount": 132000,
1433
+ "description": "10月末 外注費未払"
1434
+ }
1435
+ ]
1436
+ },
1437
+ {
1438
+ "issue_date": "2025-11-30",
1439
+ "details": [
1440
+ {
1441
+ "entry_side": "debit",
1442
+ "account_item_name": "外注費",
1443
+ "tax_code": 0,
1444
+ "amount": 220000,
1445
+ "description": "11月末 外注費未払計上(繁忙期増員分)"
1446
+ },
1447
+ {
1448
+ "entry_side": "credit",
1449
+ "account_item_name": "未払費用",
1450
+ "tax_code": 0,
1451
+ "amount": 220000,
1452
+ "description": "11月末 外注費未払"
1453
+ }
1454
+ ]
1455
+ },
1456
+ {
1457
+ "issue_date": "2025-12-31",
1458
+ "details": [
1459
+ {
1460
+ "entry_side": "debit",
1461
+ "account_item_name": "外注費",
1462
+ "tax_code": 0,
1463
+ "amount": 132000,
1464
+ "description": "12月末 外注費未払計上"
1465
+ },
1466
+ {
1467
+ "entry_side": "credit",
1468
+ "account_item_name": "未払費用",
1469
+ "tax_code": 0,
1470
+ "amount": 132000,
1471
+ "description": "12月末 外注費未払"
1472
+ }
1473
+ ]
1474
+ },
1475
+ {
1476
+ "issue_date": "2026-01-31",
1477
+ "details": [
1478
+ {
1479
+ "entry_side": "debit",
1480
+ "account_item_name": "外注費",
1481
+ "tax_code": 0,
1482
+ "amount": 132000,
1483
+ "description": "1月末 外注費未払計上"
1484
+ },
1485
+ {
1486
+ "entry_side": "credit",
1487
+ "account_item_name": "未払費用",
1488
+ "tax_code": 0,
1489
+ "amount": 132000,
1490
+ "description": "1月末 外注費未払"
1491
+ }
1492
+ ]
1493
+ },
1494
+ {
1495
+ "issue_date": "2026-02-28",
1496
+ "details": [
1497
+ {
1498
+ "entry_side": "debit",
1499
+ "account_item_name": "外注費",
1500
+ "tax_code": 0,
1501
+ "amount": 132000,
1502
+ "description": "2月末 外注費未払計上"
1503
+ },
1504
+ {
1505
+ "entry_side": "credit",
1506
+ "account_item_name": "未払費用",
1507
+ "tax_code": 0,
1508
+ "amount": 132000,
1509
+ "description": "2月末 外注費未払"
1510
+ }
1511
+ ]
1512
+ },
1513
+ {
1514
+ "issue_date": "2026-03-31",
1515
+ "details": [
1516
+ {
1517
+ "entry_side": "debit",
1518
+ "account_item_name": "外注費",
1519
+ "tax_code": 0,
1520
+ "amount": 132000,
1521
+ "description": "3月末 外注費未払計上"
1522
+ },
1523
+ {
1524
+ "entry_side": "credit",
1525
+ "account_item_name": "未払費用",
1526
+ "tax_code": 0,
1527
+ "amount": 132000,
1528
+ "description": "3月末 外注費未払"
1529
+ }
1530
+ ]
1531
+ }
1532
+ ]
1533
+ }
1534
+ }