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,443 @@
1
+ {
2
+ "name": "給与・人事クイックスタート",
3
+ "description": "架空の中小企業(正社員4名+役員1名)の6ヶ月分の給与・人事デモデータ。基本給・残業代・夏季賞与・社会保険料・源泉所得税の仕訳を含む。",
4
+ "version": "1.1.0",
5
+ "expected": {
6
+ "walletables": 1,
7
+ "deals": 34,
8
+ "manualJournals": 20
9
+ },
10
+ "data": {
11
+ "walletables": [
12
+ {
13
+ "type": "bank_account",
14
+ "name": "やよい銀行 普通預金(給与振込口座)",
15
+ "bank_id": 2407
16
+ }
17
+ ],
18
+ "deals": [
19
+ {
20
+ "issue_date": "2026-01-25",
21
+ "type": "expense",
22
+ "partner_name": "社員 青木 一郎",
23
+ "details": [
24
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "1月度 基本給" },
25
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 28000, "description": "1月度 残業代" }
26
+ ]
27
+ },
28
+ {
29
+ "issue_date": "2026-01-25",
30
+ "type": "expense",
31
+ "partner_name": "社員 松本 花子",
32
+ "details": [
33
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "1月度 基本給" }
34
+ ]
35
+ },
36
+ {
37
+ "issue_date": "2026-01-25",
38
+ "type": "expense",
39
+ "partner_name": "社員 森田 健太",
40
+ "details": [
41
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "1月度 基本給" },
42
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 45000, "description": "1月度 残業代" }
43
+ ]
44
+ },
45
+ {
46
+ "issue_date": "2026-01-25",
47
+ "type": "expense",
48
+ "partner_name": "社員 川田 誠",
49
+ "details": [
50
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "1月度 基本給" }
51
+ ]
52
+ },
53
+ {
54
+ "issue_date": "2026-01-25",
55
+ "type": "expense",
56
+ "partner_name": "代表取締役 佐藤 義雄",
57
+ "details": [
58
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "1月度 役員報酬" }
59
+ ]
60
+ },
61
+ {
62
+ "issue_date": "2026-02-25",
63
+ "type": "expense",
64
+ "partner_name": "社員 青木 一郎",
65
+ "details": [
66
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "2月度 基本給" }
67
+ ]
68
+ },
69
+ {
70
+ "issue_date": "2026-02-25",
71
+ "type": "expense",
72
+ "partner_name": "社員 松本 花子",
73
+ "details": [
74
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "2月度 基本給" }
75
+ ]
76
+ },
77
+ {
78
+ "issue_date": "2026-02-25",
79
+ "type": "expense",
80
+ "partner_name": "社員 森田 健太",
81
+ "details": [
82
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "2月度 基本給" },
83
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 32000, "description": "2月度 残業代" }
84
+ ]
85
+ },
86
+ {
87
+ "issue_date": "2026-02-25",
88
+ "type": "expense",
89
+ "partner_name": "社員 川田 誠",
90
+ "details": [
91
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "2月度 基本給" }
92
+ ]
93
+ },
94
+ {
95
+ "issue_date": "2026-02-25",
96
+ "type": "expense",
97
+ "partner_name": "代表取締役 佐藤 義雄",
98
+ "details": [
99
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "2月度 役員報酬" }
100
+ ]
101
+ },
102
+ {
103
+ "issue_date": "2026-03-25",
104
+ "type": "expense",
105
+ "partner_name": "社員 青木 一郎",
106
+ "details": [
107
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "3月度 基本給" },
108
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 21000, "description": "3月度 残業代" }
109
+ ]
110
+ },
111
+ {
112
+ "issue_date": "2026-03-25",
113
+ "type": "expense",
114
+ "partner_name": "社員 松本 花子",
115
+ "details": [
116
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "3月度 基本給" }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2026-03-25",
121
+ "type": "expense",
122
+ "partner_name": "社員 森田 健太",
123
+ "details": [
124
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "3月度 基本給" }
125
+ ]
126
+ },
127
+ {
128
+ "issue_date": "2026-03-25",
129
+ "type": "expense",
130
+ "partner_name": "社員 川田 誠",
131
+ "details": [
132
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "3月度 基本給" }
133
+ ]
134
+ },
135
+ {
136
+ "issue_date": "2026-03-25",
137
+ "type": "expense",
138
+ "partner_name": "代表取締役 佐藤 義雄",
139
+ "details": [
140
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "3月度 役員報酬" }
141
+ ]
142
+ },
143
+ {
144
+ "issue_date": "2026-04-25",
145
+ "type": "expense",
146
+ "partner_name": "社員 青木 一郎",
147
+ "details": [
148
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "4月度 基本給" },
149
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 35000, "description": "4月度 残業代" }
150
+ ]
151
+ },
152
+ {
153
+ "issue_date": "2026-04-25",
154
+ "type": "expense",
155
+ "partner_name": "社員 松本 花子",
156
+ "details": [
157
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "4月度 基本給" }
158
+ ]
159
+ },
160
+ {
161
+ "issue_date": "2026-04-25",
162
+ "type": "expense",
163
+ "partner_name": "社員 森田 健太",
164
+ "details": [
165
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "4月度 基本給" },
166
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 28000, "description": "4月度 残業代" }
167
+ ]
168
+ },
169
+ {
170
+ "issue_date": "2026-04-25",
171
+ "type": "expense",
172
+ "partner_name": "社員 川田 誠",
173
+ "details": [
174
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "4月度 基本給" }
175
+ ]
176
+ },
177
+ {
178
+ "issue_date": "2026-04-25",
179
+ "type": "expense",
180
+ "partner_name": "代表取締役 佐藤 義雄",
181
+ "details": [
182
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "4月度 役員報酬" }
183
+ ]
184
+ },
185
+ {
186
+ "issue_date": "2026-05-25",
187
+ "type": "expense",
188
+ "partner_name": "社員 青木 一郎",
189
+ "details": [
190
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "5月度 基本給" }
191
+ ]
192
+ },
193
+ {
194
+ "issue_date": "2026-05-25",
195
+ "type": "expense",
196
+ "partner_name": "社員 松本 花子",
197
+ "details": [
198
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "5月度 基本給" }
199
+ ]
200
+ },
201
+ {
202
+ "issue_date": "2026-05-25",
203
+ "type": "expense",
204
+ "partner_name": "社員 森田 健太",
205
+ "details": [
206
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "5月度 基本給" },
207
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 41000, "description": "5月度 残業代" }
208
+ ]
209
+ },
210
+ {
211
+ "issue_date": "2026-05-25",
212
+ "type": "expense",
213
+ "partner_name": "社員 川田 誠",
214
+ "details": [
215
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "5月度 基本給" }
216
+ ]
217
+ },
218
+ {
219
+ "issue_date": "2026-05-25",
220
+ "type": "expense",
221
+ "partner_name": "代表取締役 佐藤 義雄",
222
+ "details": [
223
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "5月度 役員報酬" }
224
+ ]
225
+ },
226
+ {
227
+ "issue_date": "2026-06-25",
228
+ "type": "expense",
229
+ "partner_name": "社員 青木 一郎",
230
+ "details": [
231
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "6月度 基本給" },
232
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 14000, "description": "6月度 残業代" }
233
+ ]
234
+ },
235
+ {
236
+ "issue_date": "2026-06-25",
237
+ "type": "expense",
238
+ "partner_name": "社員 松本 花子",
239
+ "details": [
240
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "6月度 基本給" }
241
+ ]
242
+ },
243
+ {
244
+ "issue_date": "2026-06-25",
245
+ "type": "expense",
246
+ "partner_name": "社員 森田 健太",
247
+ "details": [
248
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 320000, "description": "6月度 基本給" }
249
+ ]
250
+ },
251
+ {
252
+ "issue_date": "2026-06-25",
253
+ "type": "expense",
254
+ "partner_name": "社員 川田 誠",
255
+ "details": [
256
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 260000, "description": "6月度 基本給" }
257
+ ]
258
+ },
259
+ {
260
+ "issue_date": "2026-06-25",
261
+ "type": "expense",
262
+ "partner_name": "代表取締役 佐藤 義雄",
263
+ "details": [
264
+ { "account_item_name": "役員報酬", "tax_code": 0, "amount": 600000, "description": "6月度 役員報酬" }
265
+ ]
266
+ },
267
+ {
268
+ "issue_date": "2026-06-30",
269
+ "type": "expense",
270
+ "partner_name": "社員 青木 一郎",
271
+ "details": [
272
+ { "account_item_name": "賞与", "tax_code": 0, "amount": 560000, "description": "夏季賞与(基本給2ヶ月分)" }
273
+ ]
274
+ },
275
+ {
276
+ "issue_date": "2026-06-30",
277
+ "type": "expense",
278
+ "partner_name": "社員 松本 花子",
279
+ "details": [
280
+ { "account_item_name": "賞与", "tax_code": 0, "amount": 500000, "description": "夏季賞与(基本給2ヶ月分)" }
281
+ ]
282
+ },
283
+ {
284
+ "issue_date": "2026-06-30",
285
+ "type": "expense",
286
+ "partner_name": "社員 森田 健太",
287
+ "details": [
288
+ { "account_item_name": "賞与", "tax_code": 0, "amount": 640000, "description": "夏季賞与(基本給2ヶ月分)" }
289
+ ]
290
+ },
291
+ {
292
+ "issue_date": "2026-06-30",
293
+ "type": "expense",
294
+ "partner_name": "社員 川田 誠",
295
+ "details": [
296
+ { "account_item_name": "賞与", "tax_code": 0, "amount": 520000, "description": "夏季賞与(基本給2ヶ月分)" }
297
+ ]
298
+ }
299
+ ],
300
+ "manualJournals": [
301
+ {
302
+ "issue_date": "2026-01-25",
303
+ "details": [
304
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 145000, "description": "1月 社会保険料 会社負担分" },
305
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 145000, "description": "1月 社会保険料 未払計上" }
306
+ ]
307
+ },
308
+ {
309
+ "issue_date": "2026-01-25",
310
+ "details": [
311
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 128000, "description": "1月 源泉所得税 預り金計上" },
312
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 128000, "description": "1月 源泉徴収税 未払計上" }
313
+ ]
314
+ },
315
+ {
316
+ "issue_date": "2026-01-31",
317
+ "details": [
318
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 273000, "description": "1月 給与 差引支給額 未払計上" },
319
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 273000, "description": "1月 給与振込" }
320
+ ]
321
+ },
322
+ {
323
+ "issue_date": "2026-02-25",
324
+ "details": [
325
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 138000, "description": "2月 社会保険料 会社負担分" },
326
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 138000, "description": "2月 社会保険料 未払計上" }
327
+ ]
328
+ },
329
+ {
330
+ "issue_date": "2026-02-25",
331
+ "details": [
332
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 122000, "description": "2月 源泉所得税 預り金計上" },
333
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 122000, "description": "2月 源泉徴収税 未払計上" }
334
+ ]
335
+ },
336
+ {
337
+ "issue_date": "2026-02-28",
338
+ "details": [
339
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 260000, "description": "2月 給与 差引支給額 未払計上" },
340
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 260000, "description": "2月 給与振込" }
341
+ ]
342
+ },
343
+ {
344
+ "issue_date": "2026-03-25",
345
+ "details": [
346
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 141000, "description": "3月 社会保険料 会社負担分" },
347
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 141000, "description": "3月 社会保険料 未払計上" }
348
+ ]
349
+ },
350
+ {
351
+ "issue_date": "2026-03-25",
352
+ "details": [
353
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 125000, "description": "3月 源泉所得税 預り金計上" },
354
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 125000, "description": "3月 源泉徴収税 未払計上" }
355
+ ]
356
+ },
357
+ {
358
+ "issue_date": "2026-03-31",
359
+ "details": [
360
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 265000, "description": "3月 給与 差引支給額 未払計上" },
361
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 265000, "description": "3月 給与振込" }
362
+ ]
363
+ },
364
+ {
365
+ "issue_date": "2026-04-25",
366
+ "details": [
367
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 143000, "description": "4月 社会保険料 会社負担分" },
368
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 143000, "description": "4月 社会保険料 未払計上" }
369
+ ]
370
+ },
371
+ {
372
+ "issue_date": "2026-04-25",
373
+ "details": [
374
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 127000, "description": "4月 源泉所得税 預り金計上" },
375
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 127000, "description": "4月 源泉徴収税 未払計上" }
376
+ ]
377
+ },
378
+ {
379
+ "issue_date": "2026-04-30",
380
+ "details": [
381
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 268000, "description": "4月 給与 差引支給額 未払計上" },
382
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 268000, "description": "4月 給与振込" }
383
+ ]
384
+ },
385
+ {
386
+ "issue_date": "2026-05-25",
387
+ "details": [
388
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 142000, "description": "5月 社会保険料 会社負担分" },
389
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 142000, "description": "5月 社会保険料 未払計上" }
390
+ ]
391
+ },
392
+ {
393
+ "issue_date": "2026-05-25",
394
+ "details": [
395
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 125000, "description": "5月 源泉所得税 預り金計上" },
396
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 125000, "description": "5月 源泉徴収税 未払計上" }
397
+ ]
398
+ },
399
+ {
400
+ "issue_date": "2026-05-31",
401
+ "details": [
402
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 264000, "description": "5月 給与 差引支給額 未払計上" },
403
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 264000, "description": "5月 給与振込" }
404
+ ]
405
+ },
406
+ {
407
+ "issue_date": "2026-06-25",
408
+ "details": [
409
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 141000, "description": "6月 社会保険料 会社負担分(通常給与分)" },
410
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 141000, "description": "6月 社会保険料 未払計上" }
411
+ ]
412
+ },
413
+ {
414
+ "issue_date": "2026-06-25",
415
+ "details": [
416
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 123000, "description": "6月 源泉所得税 預り金計上(通常給与分)" },
417
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 123000, "description": "6月 源泉徴収税 未払計上" }
418
+ ]
419
+ },
420
+ {
421
+ "issue_date": "2026-06-30",
422
+ "details": [
423
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 259000, "description": "6月 給与 差引支給額 未払計上(通常分)" },
424
+ { "entry_side": "credit", "account_item_name": "やよい銀行 普通預金(給与振込口座)", "tax_code": 0, "amount": 259000, "description": "6月 給与振込(通常分)" }
425
+ ]
426
+ },
427
+ {
428
+ "issue_date": "2026-06-30",
429
+ "details": [
430
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 178000, "description": "6月 夏季賞与 社会保険料 会社負担分" },
431
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 178000, "description": "6月 夏季賞与 社会保険料 未払計上" }
432
+ ]
433
+ },
434
+ {
435
+ "issue_date": "2026-06-30",
436
+ "details": [
437
+ { "entry_side": "debit", "account_item_name": "未払費用", "tax_code": 0, "amount": 222000, "description": "6月 夏季賞与 源泉所得税 預り金計上" },
438
+ { "entry_side": "credit", "account_item_name": "預り金", "tax_code": 0, "amount": 222000, "description": "6月 夏季賞与 源泉徴収税 未払計上" }
439
+ ]
440
+ }
441
+ ]
442
+ }
443
+ }
@@ -0,0 +1,3 @@
1
+ # invoices Preset
2
+
3
+ freee invoices デモデータのプリセット。将来実装予定。