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,536 @@
1
+ {
2
+ "name": "小売業クイックスタート",
3
+ "description": "架空の雑貨小売店(実店舗+EC)の3ヶ月分デモデータ。商品仕入・POSレジ売上・棚卸・月次在庫調整を含む。仕入→売上原価の流れを確認できる。",
4
+ "version": "1.0.0",
5
+ "expected": {
6
+ "walletables": 3,
7
+ "deals": 30,
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": "POSレジ現金"
20
+ },
21
+ {
22
+ "type": "credit_card",
23
+ "name": "仕入用クレジットカード",
24
+ "bank_id": 1442
25
+ }
26
+ ],
27
+ "deals": [
28
+ {
29
+ "issue_date": "2026-01-10",
30
+ "type": "income",
31
+ "partner_name": "店頭・EC 売上集計",
32
+ "details": [
33
+ {
34
+ "account_item_name": "売上高",
35
+ "tax_code": 21,
36
+ "amount": 1320000,
37
+ "description": "1月上旬 小売売上(店頭680,000 + EC640,000)"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "issue_date": "2026-01-20",
43
+ "type": "income",
44
+ "partner_name": "店頭・EC 売上集計",
45
+ "details": [
46
+ {
47
+ "account_item_name": "売上高",
48
+ "tax_code": 21,
49
+ "amount": 1540000,
50
+ "description": "1月下旬 小売売上(冬セール期間)"
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "issue_date": "2026-01-05",
56
+ "type": "expense",
57
+ "partner_name": "雑貨卸売 北辰商事株式会社",
58
+ "details": [
59
+ {
60
+ "account_item_name": "仕入高",
61
+ "tax_code": 34,
62
+ "amount": 660000,
63
+ "description": "雑貨・インテリア商品 仕入(1月前半)"
64
+ }
65
+ ]
66
+ },
67
+ {
68
+ "issue_date": "2026-01-15",
69
+ "type": "expense",
70
+ "partner_name": "雑貨卸売 北辰商事株式会社",
71
+ "details": [
72
+ {
73
+ "account_item_name": "仕入高",
74
+ "tax_code": 34,
75
+ "amount": 880000,
76
+ "description": "雑貨・インテリア商品 仕入(1月後半・セール補充)"
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "issue_date": "2026-01-10",
82
+ "type": "expense",
83
+ "partner_name": "梅田印刷株式会社",
84
+ "details": [
85
+ {
86
+ "account_item_name": "広告宣伝費",
87
+ "tax_code": 34,
88
+ "amount": 55000,
89
+ "description": "チラシ・ポップ印刷 1月分"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "issue_date": "2026-01-25",
95
+ "type": "expense",
96
+ "partner_name": "代表取締役 石橋 明子",
97
+ "details": [
98
+ {
99
+ "account_item_name": "役員報酬",
100
+ "tax_code": 0,
101
+ "amount": 400000,
102
+ "description": "1月度 役員報酬"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "issue_date": "2026-01-25",
108
+ "type": "expense",
109
+ "partner_name": "スタッフ 久保 真里 他1名",
110
+ "details": [
111
+ {
112
+ "account_item_name": "給料手当",
113
+ "tax_code": 0,
114
+ "amount": 360000,
115
+ "description": "1月 パートタイム給与 2名分"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2026-01-31",
121
+ "type": "expense",
122
+ "partner_name": "モールエステート株式会社",
123
+ "details": [
124
+ {
125
+ "account_item_name": "地代家賃",
126
+ "tax_code": 0,
127
+ "amount": 220000,
128
+ "description": "ショッピングモール店舗賃料 1月分"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "issue_date": "2026-01-31",
134
+ "type": "expense",
135
+ "partner_name": "クラウド決済サービス株式会社",
136
+ "details": [
137
+ {
138
+ "account_item_name": "支払手数料",
139
+ "tax_code": 34,
140
+ "amount": 38500,
141
+ "description": "クレジット決済手数料 1月分(売上の2.5%)"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "issue_date": "2026-01-31",
147
+ "type": "expense",
148
+ "partner_name": "仕入用クレジットカード",
149
+ "details": [
150
+ {
151
+ "account_item_name": "消耗品費",
152
+ "tax_code": 34,
153
+ "amount": 16500,
154
+ "description": "包装資材・タグ・ハンガー 1月分"
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "issue_date": "2026-02-10",
160
+ "type": "income",
161
+ "partner_name": "店頭・EC 売上集計",
162
+ "details": [
163
+ {
164
+ "account_item_name": "売上高",
165
+ "tax_code": 21,
166
+ "amount": 1210000,
167
+ "description": "2月上旬 小売売上(バレンタイン関連商品好調)"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "issue_date": "2026-02-20",
173
+ "type": "income",
174
+ "partner_name": "店頭・EC 売上集計",
175
+ "details": [
176
+ {
177
+ "account_item_name": "売上高",
178
+ "tax_code": 21,
179
+ "amount": 1430000,
180
+ "description": "2月下旬 小売売上"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "issue_date": "2026-02-05",
186
+ "type": "expense",
187
+ "partner_name": "雑貨卸売 北辰商事株式会社",
188
+ "details": [
189
+ {
190
+ "account_item_name": "仕入高",
191
+ "tax_code": 34,
192
+ "amount": 594000,
193
+ "description": "春夏商品 先行仕入(2月前半)"
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "issue_date": "2026-02-18",
199
+ "type": "expense",
200
+ "partner_name": "海外雑貨インポート 翠華",
201
+ "details": [
202
+ {
203
+ "account_item_name": "仕入高",
204
+ "tax_code": 34,
205
+ "amount": 726000,
206
+ "description": "輸入雑貨 仕入(2月後半)"
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ "issue_date": "2026-02-10",
212
+ "type": "expense",
213
+ "partner_name": "梅田印刷株式会社",
214
+ "details": [
215
+ {
216
+ "account_item_name": "広告宣伝費",
217
+ "tax_code": 34,
218
+ "amount": 44000,
219
+ "description": "春季新商品チラシ 2月分"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "issue_date": "2026-02-25",
225
+ "type": "expense",
226
+ "partner_name": "代表取締役 石橋 明子",
227
+ "details": [
228
+ {
229
+ "account_item_name": "役員報酬",
230
+ "tax_code": 0,
231
+ "amount": 400000,
232
+ "description": "2月度 役員報酬"
233
+ }
234
+ ]
235
+ },
236
+ {
237
+ "issue_date": "2026-02-25",
238
+ "type": "expense",
239
+ "partner_name": "スタッフ 久保 真里 他1名",
240
+ "details": [
241
+ {
242
+ "account_item_name": "給料手当",
243
+ "tax_code": 0,
244
+ "amount": 360000,
245
+ "description": "2月 パートタイム給与 2名分"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "issue_date": "2026-02-28",
251
+ "type": "expense",
252
+ "partner_name": "モールエステート株式会社",
253
+ "details": [
254
+ {
255
+ "account_item_name": "地代家賃",
256
+ "tax_code": 0,
257
+ "amount": 220000,
258
+ "description": "店舗賃料 2月分"
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "issue_date": "2026-02-28",
264
+ "type": "expense",
265
+ "partner_name": "クラウド決済サービス株式会社",
266
+ "details": [
267
+ {
268
+ "account_item_name": "支払手数料",
269
+ "tax_code": 34,
270
+ "amount": 33000,
271
+ "description": "クレジット決済手数料 2月分"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "issue_date": "2026-02-28",
277
+ "type": "expense",
278
+ "partner_name": "仕入用クレジットカード",
279
+ "details": [
280
+ {
281
+ "account_item_name": "消耗品費",
282
+ "tax_code": 34,
283
+ "amount": 13200,
284
+ "description": "包装資材・備品 2月分"
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "issue_date": "2026-03-10",
290
+ "type": "income",
291
+ "partner_name": "店頭・EC 売上集計",
292
+ "details": [
293
+ {
294
+ "account_item_name": "売上高",
295
+ "tax_code": 21,
296
+ "amount": 1650000,
297
+ "description": "3月上旬 小売売上(春新商品・年度末好調)"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "issue_date": "2026-03-25",
303
+ "type": "income",
304
+ "partner_name": "店頭・EC 売上集計",
305
+ "details": [
306
+ {
307
+ "account_item_name": "売上高",
308
+ "tax_code": 21,
309
+ "amount": 1870000,
310
+ "description": "3月下旬 小売売上(年度末ピーク)"
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "issue_date": "2026-03-05",
316
+ "type": "expense",
317
+ "partner_name": "雑貨卸売 北辰商事株式会社",
318
+ "details": [
319
+ {
320
+ "account_item_name": "仕入高",
321
+ "tax_code": 34,
322
+ "amount": 770000,
323
+ "description": "春夏商品 本格仕入(3月前半)"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "issue_date": "2026-03-20",
329
+ "type": "expense",
330
+ "partner_name": "海外雑貨インポート 翠華",
331
+ "details": [
332
+ {
333
+ "account_item_name": "仕入高",
334
+ "tax_code": 34,
335
+ "amount": 858000,
336
+ "description": "夏物輸入雑貨 仕入(3月後半)"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "issue_date": "2026-03-10",
342
+ "type": "expense",
343
+ "partner_name": "梅田印刷株式会社",
344
+ "details": [
345
+ {
346
+ "account_item_name": "広告宣伝費",
347
+ "tax_code": 34,
348
+ "amount": 66000,
349
+ "description": "年度末セールチラシ 3月分"
350
+ }
351
+ ]
352
+ },
353
+ {
354
+ "issue_date": "2026-03-25",
355
+ "type": "expense",
356
+ "partner_name": "代表取締役 石橋 明子",
357
+ "details": [
358
+ {
359
+ "account_item_name": "役員報酬",
360
+ "tax_code": 0,
361
+ "amount": 400000,
362
+ "description": "3月度 役員報酬"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "issue_date": "2026-03-25",
368
+ "type": "expense",
369
+ "partner_name": "スタッフ 久保 真里 他1名",
370
+ "details": [
371
+ {
372
+ "account_item_name": "給料手当",
373
+ "tax_code": 0,
374
+ "amount": 360000,
375
+ "description": "3月 パートタイム給与 2名分"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "issue_date": "2026-03-31",
381
+ "type": "expense",
382
+ "partner_name": "モールエステート株式会社",
383
+ "details": [
384
+ {
385
+ "account_item_name": "地代家賃",
386
+ "tax_code": 0,
387
+ "amount": 220000,
388
+ "description": "店舗賃料 3月分"
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "issue_date": "2026-03-31",
394
+ "type": "expense",
395
+ "partner_name": "クラウド決済サービス株式会社",
396
+ "details": [
397
+ {
398
+ "account_item_name": "支払手数料",
399
+ "tax_code": 34,
400
+ "amount": 40700,
401
+ "description": "クレジット決済手数料 3月分"
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "issue_date": "2026-03-31",
407
+ "type": "expense",
408
+ "partner_name": "仕入用クレジットカード",
409
+ "details": [
410
+ {
411
+ "account_item_name": "消耗品費",
412
+ "tax_code": 34,
413
+ "amount": 19800,
414
+ "description": "包装資材・春季備品 3月分"
415
+ }
416
+ ]
417
+ }
418
+ ],
419
+ "manualJournals": [
420
+ {
421
+ "issue_date": "2026-01-31",
422
+ "details": [
423
+ {
424
+ "entry_side": "debit",
425
+ "account_item_name": "期末商品棚卸高",
426
+ "tax_code": 0,
427
+ "amount": 1320000,
428
+ "description": "1月末 期末棚卸による売上原価計上(仕入高→売上原価振替)"
429
+ },
430
+ {
431
+ "entry_side": "credit",
432
+ "account_item_name": "仕入高",
433
+ "tax_code": 0,
434
+ "amount": 1320000,
435
+ "description": "1月末 売上原価対応分 仕入高振替"
436
+ }
437
+ ]
438
+ },
439
+ {
440
+ "issue_date": "2026-01-31",
441
+ "details": [
442
+ {
443
+ "entry_side": "debit",
444
+ "account_item_name": "商品",
445
+ "tax_code": 0,
446
+ "amount": 220000,
447
+ "description": "1月末 棚卸資産計上(期末在庫評価)"
448
+ },
449
+ {
450
+ "entry_side": "credit",
451
+ "account_item_name": "期末商品棚卸高",
452
+ "tax_code": 0,
453
+ "amount": 220000,
454
+ "description": "1月末 期末棚卸高(売上原価から控除)"
455
+ }
456
+ ]
457
+ },
458
+ {
459
+ "issue_date": "2026-02-28",
460
+ "details": [
461
+ {
462
+ "entry_side": "debit",
463
+ "account_item_name": "期末商品棚卸高",
464
+ "tax_code": 0,
465
+ "amount": 1100000,
466
+ "description": "2月末 売上原価計上"
467
+ },
468
+ {
469
+ "entry_side": "credit",
470
+ "account_item_name": "仕入高",
471
+ "tax_code": 0,
472
+ "amount": 1100000,
473
+ "description": "2月末 売上原価対応分 仕入高振替"
474
+ }
475
+ ]
476
+ },
477
+ {
478
+ "issue_date": "2026-02-28",
479
+ "details": [
480
+ {
481
+ "entry_side": "debit",
482
+ "account_item_name": "商品",
483
+ "tax_code": 0,
484
+ "amount": 220000,
485
+ "description": "2月末 棚卸資産計上"
486
+ },
487
+ {
488
+ "entry_side": "credit",
489
+ "account_item_name": "期末商品棚卸高",
490
+ "tax_code": 0,
491
+ "amount": 220000,
492
+ "description": "2月末 期末棚卸高"
493
+ }
494
+ ]
495
+ },
496
+ {
497
+ "issue_date": "2026-03-31",
498
+ "details": [
499
+ {
500
+ "entry_side": "debit",
501
+ "account_item_name": "期末商品棚卸高",
502
+ "tax_code": 0,
503
+ "amount": 1430000,
504
+ "description": "3月末 売上原価計上"
505
+ },
506
+ {
507
+ "entry_side": "credit",
508
+ "account_item_name": "仕入高",
509
+ "tax_code": 0,
510
+ "amount": 1430000,
511
+ "description": "3月末 売上原価対応分 仕入高振替"
512
+ }
513
+ ]
514
+ },
515
+ {
516
+ "issue_date": "2026-03-31",
517
+ "details": [
518
+ {
519
+ "entry_side": "debit",
520
+ "account_item_name": "商品",
521
+ "tax_code": 0,
522
+ "amount": 198000,
523
+ "description": "3月末 棚卸資産計上(3月末在庫評価)"
524
+ },
525
+ {
526
+ "entry_side": "credit",
527
+ "account_item_name": "期末商品棚卸高",
528
+ "tax_code": 0,
529
+ "amount": 198000,
530
+ "description": "3月末 期末棚卸高"
531
+ }
532
+ ]
533
+ }
534
+ ]
535
+ }
536
+ }