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,349 @@
1
+ {
2
+ "name": "飲食業クイックスタート",
3
+ "description": "架空の居酒屋(席数20席・月商200万円相当)の3ヶ月分の会計データ。食材仕入・パート人件費・酒税の税区分分岐を含む。",
4
+ "version": "1.0.0",
5
+ "expected": {
6
+ "walletables": 2,
7
+ "deals": 35,
8
+ "manualJournals": 6
9
+ },
10
+ "data": {
11
+ "walletables": [
12
+ {
13
+ "type": "bank_account",
14
+ "name": "ひまわり信用金庫 普通預金",
15
+ "bank_id": 2407
16
+ },
17
+ {
18
+ "type": "wallet",
19
+ "name": "レジ現金"
20
+ }
21
+ ],
22
+ "deals": [
23
+ {
24
+ "issue_date": "2026-01-05",
25
+ "type": "income",
26
+ "partner_name": "売上(現金・クレジット合算)",
27
+ "details": [
28
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 682000, "description": "1月第1週 飲食売上(酒込み)" }
29
+ ]
30
+ },
31
+ {
32
+ "issue_date": "2026-01-12",
33
+ "type": "income",
34
+ "partner_name": "売上(現金・クレジット合算)",
35
+ "details": [
36
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 715000, "description": "1月第2週 飲食売上(酒込み)" }
37
+ ]
38
+ },
39
+ {
40
+ "issue_date": "2026-01-19",
41
+ "type": "income",
42
+ "partner_name": "売上(現金・クレジット合算)",
43
+ "details": [
44
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 748000, "description": "1月第3週 飲食売上(忘年会シーズン余波)" }
45
+ ]
46
+ },
47
+ {
48
+ "issue_date": "2026-01-26",
49
+ "type": "income",
50
+ "partner_name": "売上(現金・クレジット合算)",
51
+ "details": [
52
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 693000, "description": "1月第4週 飲食売上" }
53
+ ]
54
+ },
55
+ {
56
+ "issue_date": "2026-01-08",
57
+ "type": "expense",
58
+ "partner_name": "さんわ食材センター株式会社",
59
+ "details": [
60
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 198000, "description": "食材仕入 1月第1-2週分(野菜・鮮魚・肉類)" }
61
+ ]
62
+ },
63
+ {
64
+ "issue_date": "2026-01-15",
65
+ "type": "expense",
66
+ "partner_name": "さんわ食材センター株式会社",
67
+ "details": [
68
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 176000, "description": "食材仕入 1月第3週分" }
69
+ ]
70
+ },
71
+ {
72
+ "issue_date": "2026-01-22",
73
+ "type": "expense",
74
+ "partner_name": "さんわ食材センター株式会社",
75
+ "details": [
76
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 187000, "description": "食材仕入 1月第4週分" }
77
+ ]
78
+ },
79
+ {
80
+ "issue_date": "2026-01-08",
81
+ "type": "expense",
82
+ "partner_name": "みのり酒販株式会社",
83
+ "details": [
84
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 132000, "description": "酒類仕入 1月前半(ビール・日本酒・焼酎)" }
85
+ ]
86
+ },
87
+ {
88
+ "issue_date": "2026-01-22",
89
+ "type": "expense",
90
+ "partner_name": "みのり酒販株式会社",
91
+ "details": [
92
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 121000, "description": "酒類仕入 1月後半" }
93
+ ]
94
+ },
95
+ {
96
+ "issue_date": "2026-01-25",
97
+ "type": "expense",
98
+ "partner_name": "パート 小川 美咲 他3名",
99
+ "details": [
100
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 198000, "description": "1月 ホールスタッフ パート代(4名合計)" }
101
+ ]
102
+ },
103
+ {
104
+ "issue_date": "2026-01-25",
105
+ "type": "expense",
106
+ "partner_name": "調理スタッフ 吉田 誠",
107
+ "details": [
108
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "1月 料理長 給与" }
109
+ ]
110
+ },
111
+ {
112
+ "issue_date": "2026-01-31",
113
+ "type": "expense",
114
+ "partner_name": "橘不動産管理株式会社",
115
+ "details": [
116
+ { "account_item_name": "地代家賃", "tax_code": 0, "amount": 198000, "description": "店舗賃料 1月分" }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2026-02-02",
121
+ "type": "income",
122
+ "partner_name": "売上(現金・クレジット合算)",
123
+ "details": [
124
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 594000, "description": "2月第1週 飲食売上(節分週)" }
125
+ ]
126
+ },
127
+ {
128
+ "issue_date": "2026-02-09",
129
+ "type": "income",
130
+ "partner_name": "売上(現金・クレジット合算)",
131
+ "details": [
132
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 726000, "description": "2月第2週 飲食売上(バレンタイン需要)" }
133
+ ]
134
+ },
135
+ {
136
+ "issue_date": "2026-02-16",
137
+ "type": "income",
138
+ "partner_name": "売上(現金・クレジット合算)",
139
+ "details": [
140
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 638000, "description": "2月第3週 飲食売上" }
141
+ ]
142
+ },
143
+ {
144
+ "issue_date": "2026-02-23",
145
+ "type": "income",
146
+ "partner_name": "売上(現金・クレジット合算)",
147
+ "details": [
148
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 605000, "description": "2月第4週 飲食売上" }
149
+ ]
150
+ },
151
+ {
152
+ "issue_date": "2026-02-06",
153
+ "type": "expense",
154
+ "partner_name": "さんわ食材センター株式会社",
155
+ "details": [
156
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 165000, "description": "食材仕入 2月第1-2週分" }
157
+ ]
158
+ },
159
+ {
160
+ "issue_date": "2026-02-20",
161
+ "type": "expense",
162
+ "partner_name": "さんわ食材センター株式会社",
163
+ "details": [
164
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 154000, "description": "食材仕入 2月第3-4週分" }
165
+ ]
166
+ },
167
+ {
168
+ "issue_date": "2026-02-06",
169
+ "type": "expense",
170
+ "partner_name": "みのり酒販株式会社",
171
+ "details": [
172
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 110000, "description": "酒類仕入 2月前半" }
173
+ ]
174
+ },
175
+ {
176
+ "issue_date": "2026-02-20",
177
+ "type": "expense",
178
+ "partner_name": "みのり酒販株式会社",
179
+ "details": [
180
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 99000, "description": "酒類仕入 2月後半" }
181
+ ]
182
+ },
183
+ {
184
+ "issue_date": "2026-02-25",
185
+ "type": "expense",
186
+ "partner_name": "パート 小川 美咲 他3名",
187
+ "details": [
188
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 187000, "description": "2月 ホールスタッフ パート代(4名合計)" }
189
+ ]
190
+ },
191
+ {
192
+ "issue_date": "2026-02-25",
193
+ "type": "expense",
194
+ "partner_name": "調理スタッフ 吉田 誠",
195
+ "details": [
196
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "2月 料理長 給与" }
197
+ ]
198
+ },
199
+ {
200
+ "issue_date": "2026-02-28",
201
+ "type": "expense",
202
+ "partner_name": "橘不動産管理株式会社",
203
+ "details": [
204
+ { "account_item_name": "地代家賃", "tax_code": 0, "amount": 198000, "description": "店舗賃料 2月分" }
205
+ ]
206
+ },
207
+ {
208
+ "issue_date": "2026-03-02",
209
+ "type": "income",
210
+ "partner_name": "売上(現金・クレジット合算)",
211
+ "details": [
212
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 616000, "description": "3月第1週 飲食売上" }
213
+ ]
214
+ },
215
+ {
216
+ "issue_date": "2026-03-09",
217
+ "type": "income",
218
+ "partner_name": "売上(現金・クレジット合算)",
219
+ "details": [
220
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 770000, "description": "3月第2週 飲食売上(歓送迎会シーズン開始)" }
221
+ ]
222
+ },
223
+ {
224
+ "issue_date": "2026-03-16",
225
+ "type": "income",
226
+ "partner_name": "売上(現金・クレジット合算)",
227
+ "details": [
228
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 803000, "description": "3月第3週 飲食売上(歓送迎会ピーク)" }
229
+ ]
230
+ },
231
+ {
232
+ "issue_date": "2026-03-23",
233
+ "type": "income",
234
+ "partner_name": "売上(現金・クレジット合算)",
235
+ "details": [
236
+ { "account_item_name": "売上高", "tax_code": 21, "amount": 748000, "description": "3月第4週 飲食売上(歓送迎会)" }
237
+ ]
238
+ },
239
+ {
240
+ "issue_date": "2026-03-06",
241
+ "type": "expense",
242
+ "partner_name": "さんわ食材センター株式会社",
243
+ "details": [
244
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 209000, "description": "食材仕入 3月第1-2週分(歓送迎会対応増量)" }
245
+ ]
246
+ },
247
+ {
248
+ "issue_date": "2026-03-20",
249
+ "type": "expense",
250
+ "partner_name": "さんわ食材センター株式会社",
251
+ "details": [
252
+ { "account_item_name": "仕入高", "tax_code": 13, "amount": 220000, "description": "食材仕入 3月第3-4週分" }
253
+ ]
254
+ },
255
+ {
256
+ "issue_date": "2026-03-06",
257
+ "type": "expense",
258
+ "partner_name": "みのり酒販株式会社",
259
+ "details": [
260
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 143000, "description": "酒類仕入 3月前半(歓送迎会対応)" }
261
+ ]
262
+ },
263
+ {
264
+ "issue_date": "2026-03-20",
265
+ "type": "expense",
266
+ "partner_name": "みのり酒販株式会社",
267
+ "details": [
268
+ { "account_item_name": "仕入高", "tax_code": 34, "amount": 132000, "description": "酒類仕入 3月後半" }
269
+ ]
270
+ },
271
+ {
272
+ "issue_date": "2026-03-25",
273
+ "type": "expense",
274
+ "partner_name": "パート 小川 美咲 他3名",
275
+ "details": [
276
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 231000, "description": "3月 ホールスタッフ パート代(4名・繁忙期増時間)" }
277
+ ]
278
+ },
279
+ {
280
+ "issue_date": "2026-03-25",
281
+ "type": "expense",
282
+ "partner_name": "調理スタッフ 吉田 誠",
283
+ "details": [
284
+ { "account_item_name": "給料手当", "tax_code": 0, "amount": 280000, "description": "3月 料理長 給与" }
285
+ ]
286
+ },
287
+ {
288
+ "issue_date": "2026-03-25",
289
+ "type": "expense",
290
+ "partner_name": "株式会社セントラルエナジー",
291
+ "details": [
292
+ { "account_item_name": "水道光熱費", "tax_code": 34, "amount": 44000, "description": "電気代・ガス代 3月分" }
293
+ ]
294
+ },
295
+ {
296
+ "issue_date": "2026-03-31",
297
+ "type": "expense",
298
+ "partner_name": "橘不動産管理株式会社",
299
+ "details": [
300
+ { "account_item_name": "地代家賃", "tax_code": 0, "amount": 198000, "description": "店舗賃料 3月分" }
301
+ ]
302
+ }
303
+ ],
304
+ "manualJournals": [
305
+ {
306
+ "issue_date": "2026-01-31",
307
+ "details": [
308
+ { "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 55000, "description": "1月末 食材仕入未払計上" },
309
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 55000, "description": "1月末 仕入未払振替" }
310
+ ]
311
+ },
312
+ {
313
+ "issue_date": "2026-01-31",
314
+ "details": [
315
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 72000, "description": "1月 社会保険料 会社負担分" },
316
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 72000, "description": "1月 社会保険料 未払計上" }
317
+ ]
318
+ },
319
+ {
320
+ "issue_date": "2026-02-28",
321
+ "details": [
322
+ { "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 44000, "description": "2月末 食材仕入未払計上" },
323
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 44000, "description": "2月末 仕入未払振替" }
324
+ ]
325
+ },
326
+ {
327
+ "issue_date": "2026-02-28",
328
+ "details": [
329
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 69000, "description": "2月 社会保険料 会社負担分" },
330
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 69000, "description": "2月 社会保険料 未払計上" }
331
+ ]
332
+ },
333
+ {
334
+ "issue_date": "2026-03-31",
335
+ "details": [
336
+ { "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 66000, "description": "3月末 食材仕入未払計上(歓送迎会繁忙期)" },
337
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 66000, "description": "3月末 仕入未払振替" }
338
+ ]
339
+ },
340
+ {
341
+ "issue_date": "2026-03-31",
342
+ "details": [
343
+ { "entry_side": "debit", "account_item_name": "法定福利費", "tax_code": 0, "amount": 77000, "description": "3月 社会保険料 会社負担分(繁忙期増員分含む)" },
344
+ { "entry_side": "credit", "account_item_name": "未払費用", "tax_code": 0, "amount": 77000, "description": "3月 社会保険料 未払計上" }
345
+ ]
346
+ }
347
+ ]
348
+ }
349
+ }