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.
- package/LICENSE +21 -0
- package/README.md +280 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +35 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/auth.d.ts +3 -0
- package/dist/commands/auth.d.ts.map +1 -0
- package/dist/commands/auth.js +57 -0
- package/dist/commands/auth.js.map +1 -0
- package/dist/commands/corrupt.d.ts +3 -0
- package/dist/commands/corrupt.d.ts.map +1 -0
- package/dist/commands/corrupt.js +72 -0
- package/dist/commands/corrupt.js.map +1 -0
- package/dist/commands/dry-run.d.ts +3 -0
- package/dist/commands/dry-run.d.ts.map +1 -0
- package/dist/commands/dry-run.js +59 -0
- package/dist/commands/dry-run.js.map +1 -0
- package/dist/commands/list.d.ts +3 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +58 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/load-all.d.ts +3 -0
- package/dist/commands/load-all.d.ts.map +1 -0
- package/dist/commands/load-all.js +69 -0
- package/dist/commands/load-all.js.map +1 -0
- package/dist/commands/load.d.ts +25 -0
- package/dist/commands/load.d.ts.map +1 -0
- package/dist/commands/load.js +197 -0
- package/dist/commands/load.js.map +1 -0
- package/dist/commands/reset.d.ts +3 -0
- package/dist/commands/reset.d.ts.map +1 -0
- package/dist/commands/reset.js +117 -0
- package/dist/commands/reset.js.map +1 -0
- package/dist/commands/setup.d.ts +4 -0
- package/dist/commands/setup.d.ts.map +1 -0
- package/dist/commands/setup.js +190 -0
- package/dist/commands/setup.js.map +1 -0
- package/dist/commands/status.d.ts +3 -0
- package/dist/commands/status.d.ts.map +1 -0
- package/dist/commands/status.js +25 -0
- package/dist/commands/status.js.map +1 -0
- package/dist/commands/validate.d.ts +5 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +132 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/commands/verify.d.ts +3 -0
- package/dist/commands/verify.d.ts.map +1 -0
- package/dist/commands/verify.js +87 -0
- package/dist/commands/verify.js.map +1 -0
- package/dist/commands/whoami.d.ts +3 -0
- package/dist/commands/whoami.d.ts.map +1 -0
- package/dist/commands/whoami.js +31 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/types/freee.d.ts +112 -0
- package/dist/types/freee.d.ts.map +1 -0
- package/dist/types/freee.js +3 -0
- package/dist/types/freee.js.map +1 -0
- package/dist/types/preset.d.ts +14 -0
- package/dist/types/preset.d.ts.map +1 -0
- package/dist/types/preset.js +2 -0
- package/dist/types/preset.js.map +1 -0
- package/dist/utils/accounting-validator.d.ts +13 -0
- package/dist/utils/accounting-validator.d.ts.map +1 -0
- package/dist/utils/accounting-validator.js +95 -0
- package/dist/utils/accounting-validator.js.map +1 -0
- package/dist/utils/auth-flow.d.ts +17 -0
- package/dist/utils/auth-flow.d.ts.map +1 -0
- package/dist/utils/auth-flow.js +137 -0
- package/dist/utils/auth-flow.js.map +1 -0
- package/dist/utils/config.d.ts +11 -0
- package/dist/utils/config.d.ts.map +1 -0
- package/dist/utils/config.js +13 -0
- package/dist/utils/config.js.map +1 -0
- package/dist/utils/confirm-company.d.ts +7 -0
- package/dist/utils/confirm-company.d.ts.map +1 -0
- package/dist/utils/confirm-company.js +20 -0
- package/dist/utils/confirm-company.js.map +1 -0
- package/dist/utils/corrupt-injector.d.ts +17 -0
- package/dist/utils/corrupt-injector.d.ts.map +1 -0
- package/dist/utils/corrupt-injector.js +123 -0
- package/dist/utils/corrupt-injector.js.map +1 -0
- package/dist/utils/env-loader.d.ts +9 -0
- package/dist/utils/env-loader.d.ts.map +1 -0
- package/dist/utils/env-loader.js +12 -0
- package/dist/utils/env-loader.js.map +1 -0
- package/dist/utils/env-writer.d.ts +10 -0
- package/dist/utils/env-writer.d.ts.map +1 -0
- package/dist/utils/env-writer.js +40 -0
- package/dist/utils/env-writer.js.map +1 -0
- package/dist/utils/freee-api.d.ts +24 -0
- package/dist/utils/freee-api.d.ts.map +1 -0
- package/dist/utils/freee-api.js +175 -0
- package/dist/utils/freee-api.js.map +1 -0
- package/dist/utils/logger.d.ts +6 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +22 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/pkce.d.ts +12 -0
- package/dist/utils/pkce.d.ts.map +1 -0
- package/dist/utils/pkce.js +18 -0
- package/dist/utils/pkce.js.map +1 -0
- package/dist/utils/preset-loader.d.ts +3 -0
- package/dist/utils/preset-loader.d.ts.map +1 -0
- package/dist/utils/preset-loader.js +47 -0
- package/dist/utils/preset-loader.js.map +1 -0
- package/dist/utils/preset-validator.d.ts +10 -0
- package/dist/utils/preset-validator.d.ts.map +1 -0
- package/dist/utils/preset-validator.js +23 -0
- package/dist/utils/preset-validator.js.map +1 -0
- package/dist/utils/state-store.d.ts +6 -0
- package/dist/utils/state-store.d.ts.map +1 -0
- package/dist/utils/state-store.js +37 -0
- package/dist/utils/state-store.js.map +1 -0
- package/dist/utils/token-store.d.ts +6 -0
- package/dist/utils/token-store.d.ts.map +1 -0
- package/dist/utils/token-store.js +30 -0
- package/dist/utils/token-store.js.map +1 -0
- package/package.json +58 -0
- package/presets/README.md +182 -0
- package/presets/accounting/README.md +3 -0
- package/presets/accounting/construction/preset.json +309 -0
- package/presets/accounting/freelance-invoice/preset.json +261 -0
- package/presets/accounting/full-year/preset.json +1534 -0
- package/presets/accounting/it-startup/preset.json +472 -0
- package/presets/accounting/manufacturing/preset.json +333 -0
- package/presets/accounting/medical/preset.json +453 -0
- package/presets/accounting/non-profit/preset.json +375 -0
- package/presets/accounting/npo-subsidy/preset.json +454 -0
- package/presets/accounting/payroll-agency/preset.json +286 -0
- package/presets/accounting/quickstart/preset.json +917 -0
- package/presets/accounting/real-estate/preset.json +453 -0
- package/presets/accounting/restaurant/preset.json +349 -0
- package/presets/accounting/retail/preset.json +536 -0
- package/presets/accounting/sole-proprietor/preset.json +408 -0
- package/presets/advanced/multi-company/README.md +3 -0
- package/presets/advanced/multi-company/preset.json +640 -0
- package/presets/advanced/multi-period/README.md +3 -0
- package/presets/advanced/multi-period/preset.json +633 -0
- package/presets/common/depreciation/preset.json +433 -0
- package/presets/errors/consumption-tax/preset.json +136 -0
- package/presets/errors/depreciation-method/preset.json +133 -0
- package/presets/errors/duplicate-journal/preset.json +181 -0
- package/presets/errors/entertainment/preset.json +108 -0
- package/presets/errors/mixed/preset.json +171 -0
- package/presets/errors/officer-pay/preset.json +100 -0
- package/presets/errors/overdue-receivable/preset.json +157 -0
- package/presets/errors/tax-code/preset.json +140 -0
- package/presets/errors/year-end-closing/preset.json +163 -0
- package/presets/expenses/README.md +3 -0
- package/presets/expenses/quickstart/preset.json +240 -0
- package/presets/hr/README.md +3 -0
- package/presets/hr/quickstart/preset.json +443 -0
- package/presets/invoices/README.md +3 -0
- package/presets/invoices/quickstart/preset.json +246 -0
- package/presets/invoices/subscription/preset.json +263 -0
- package/presets/unclassified/quickstart/preset.json +182 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "製造業・原価計算",
|
|
3
|
+
"description": "製造業の原価計算を含む会計データ。材料費・労務費・製造間接費の三分法、仕掛品・製品勘定の動き、製造原価報告書の基礎となるデータ構造を網羅。中小製造業・メーカーのデモ・研修用。",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"expected": {
|
|
6
|
+
"walletables": 2,
|
|
7
|
+
"deals": 30,
|
|
8
|
+
"manualJournals": 9
|
|
9
|
+
},
|
|
10
|
+
"data": {
|
|
11
|
+
"walletables": [
|
|
12
|
+
{
|
|
13
|
+
"type": "bank_account",
|
|
14
|
+
"name": "さくら銀行 普通預金(製造事業用)",
|
|
15
|
+
"bank_id": 2407
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "wallet",
|
|
19
|
+
"name": "工場用クレジットカード"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"deals": [
|
|
23
|
+
{
|
|
24
|
+
"issue_date": "2026-01-10",
|
|
25
|
+
"type": "expense",
|
|
26
|
+
"partner_name": "東洋素材株式会社",
|
|
27
|
+
"details": [
|
|
28
|
+
{ "account_item_name": "仕入高", "tax_code": 34, "amount": 385000, "description": "原材料 アルミ板材 仕入 1月(製造用材料)" }
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"issue_date": "2026-02-10",
|
|
33
|
+
"type": "expense",
|
|
34
|
+
"partner_name": "東洋素材株式会社",
|
|
35
|
+
"details": [
|
|
36
|
+
{ "account_item_name": "仕入高", "tax_code": 34, "amount": 440000, "description": "原材料 アルミ板材 仕入 2月(製造用材料)" }
|
|
37
|
+
]
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"issue_date": "2026-03-10",
|
|
41
|
+
"type": "expense",
|
|
42
|
+
"partner_name": "東洋素材株式会社",
|
|
43
|
+
"details": [
|
|
44
|
+
{ "account_item_name": "仕入高", "tax_code": 34, "amount": 330000, "description": "原材料 アルミ板材 仕入 3月(製造用材料)" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"issue_date": "2026-01-12",
|
|
49
|
+
"type": "expense",
|
|
50
|
+
"partner_name": "ケミカルサプライ株式会社",
|
|
51
|
+
"details": [
|
|
52
|
+
{ "account_item_name": "消耗品費", "tax_code": 34, "amount": 44000, "description": "補助材料 塗料・切削油 仕入 1月" }
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"issue_date": "2026-02-12",
|
|
57
|
+
"type": "expense",
|
|
58
|
+
"partner_name": "ケミカルサプライ株式会社",
|
|
59
|
+
"details": [
|
|
60
|
+
{ "account_item_name": "消耗品費", "tax_code": 34, "amount": 38500, "description": "補助材料 塗料・切削油 仕入 2月" }
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"issue_date": "2026-03-12",
|
|
65
|
+
"type": "expense",
|
|
66
|
+
"partner_name": "ケミカルサプライ株式会社",
|
|
67
|
+
"details": [
|
|
68
|
+
{ "account_item_name": "消耗品費", "tax_code": 34, "amount": 41800, "description": "補助材料 塗料・切削油 仕入 3月" }
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"issue_date": "2026-01-25",
|
|
73
|
+
"type": "expense",
|
|
74
|
+
"partner_name": "給与計算",
|
|
75
|
+
"details": [
|
|
76
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 650000, "description": "製造部門 人件費 1月(直接労務費: 製造原価に算入)" }
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"issue_date": "2026-02-25",
|
|
81
|
+
"type": "expense",
|
|
82
|
+
"partner_name": "給与計算",
|
|
83
|
+
"details": [
|
|
84
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 650000, "description": "製造部門 人件費 2月" }
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"issue_date": "2026-03-25",
|
|
89
|
+
"type": "expense",
|
|
90
|
+
"partner_name": "給与計算",
|
|
91
|
+
"details": [
|
|
92
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 650000, "description": "製造部門 人件費 3月" }
|
|
93
|
+
]
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"issue_date": "2026-01-15",
|
|
97
|
+
"type": "expense",
|
|
98
|
+
"partner_name": "電力会社",
|
|
99
|
+
"details": [
|
|
100
|
+
{ "account_item_name": "水道光熱費", "tax_code": 34, "amount": 88000, "description": "工場電力費 1月(製造間接費)" }
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"issue_date": "2026-02-15",
|
|
105
|
+
"type": "expense",
|
|
106
|
+
"partner_name": "電力会社",
|
|
107
|
+
"details": [
|
|
108
|
+
{ "account_item_name": "水道光熱費", "tax_code": 34, "amount": 92400, "description": "工場電力費 2月(製造間接費)" }
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"issue_date": "2026-03-15",
|
|
113
|
+
"type": "expense",
|
|
114
|
+
"partner_name": "電力会社",
|
|
115
|
+
"details": [
|
|
116
|
+
{ "account_item_name": "水道光熱費", "tax_code": 34, "amount": 79200, "description": "工場電力費 3月(製造間接費)" }
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"issue_date": "2026-01-20",
|
|
121
|
+
"type": "expense",
|
|
122
|
+
"partner_name": "機械メンテナンス株式会社",
|
|
123
|
+
"details": [
|
|
124
|
+
{ "account_item_name": "修繕費", "tax_code": 34, "amount": 55000, "description": "製造設備 定期メンテナンス 1月(製造間接費)" }
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"issue_date": "2026-03-20",
|
|
129
|
+
"type": "expense",
|
|
130
|
+
"partner_name": "機械メンテナンス株式会社",
|
|
131
|
+
"details": [
|
|
132
|
+
{ "account_item_name": "修繕費", "tax_code": 34, "amount": 33000, "description": "製造設備 定期メンテナンス 3月(製造間接費)" }
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"issue_date": "2026-01-05",
|
|
137
|
+
"type": "expense",
|
|
138
|
+
"partner_name": "工場リース株式会社",
|
|
139
|
+
"details": [
|
|
140
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 220000, "description": "工場賃料 1月(製造間接費)" }
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"issue_date": "2026-02-05",
|
|
145
|
+
"type": "expense",
|
|
146
|
+
"partner_name": "工場リース株式会社",
|
|
147
|
+
"details": [
|
|
148
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 220000, "description": "工場賃料 2月(製造間接費)" }
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"issue_date": "2026-03-05",
|
|
153
|
+
"type": "expense",
|
|
154
|
+
"partner_name": "工場リース株式会社",
|
|
155
|
+
"details": [
|
|
156
|
+
{ "account_item_name": "地代家賃", "tax_code": 34, "amount": 220000, "description": "工場賃料 3月(製造間接費)" }
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"issue_date": "2026-01-31",
|
|
161
|
+
"type": "income",
|
|
162
|
+
"partner_name": "株式会社テクノパーツ",
|
|
163
|
+
"details": [
|
|
164
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 880000, "description": "精密部品 A-200型 50個納品 1月" }
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"issue_date": "2026-02-28",
|
|
169
|
+
"type": "income",
|
|
170
|
+
"partner_name": "株式会社テクノパーツ",
|
|
171
|
+
"details": [
|
|
172
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 1100000, "description": "精密部品 A-200型 60個・B-100型 20個納品 2月" }
|
|
173
|
+
]
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"issue_date": "2026-03-31",
|
|
177
|
+
"type": "income",
|
|
178
|
+
"partner_name": "株式会社テクノパーツ",
|
|
179
|
+
"details": [
|
|
180
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 990000, "description": "精密部品 A-200型 45個納品 3月" }
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"issue_date": "2026-01-31",
|
|
185
|
+
"type": "income",
|
|
186
|
+
"partner_name": "合同会社イノベーションマニュファクチャリング",
|
|
187
|
+
"details": [
|
|
188
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 440000, "description": "プレス部品 C-50型 受注生産 1月納品" }
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"issue_date": "2026-03-20",
|
|
193
|
+
"type": "income",
|
|
194
|
+
"partner_name": "合同会社イノベーションマニュファクチャリング",
|
|
195
|
+
"details": [
|
|
196
|
+
{ "account_item_name": "売上高", "tax_code": 21, "amount": 550000, "description": "プレス部品 C-50型・D-30型 受注生産 3月納品" }
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"issue_date": "2026-01-10",
|
|
201
|
+
"type": "expense",
|
|
202
|
+
"partner_name": "精密機器リース株式会社",
|
|
203
|
+
"details": [
|
|
204
|
+
{ "account_item_name": "賃借料", "tax_code": 34, "amount": 110000, "description": "CNC旋盤 リース料 1月(製造間接費)" }
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"issue_date": "2026-02-10",
|
|
209
|
+
"type": "expense",
|
|
210
|
+
"partner_name": "精密機器リース株式会社",
|
|
211
|
+
"details": [
|
|
212
|
+
{ "account_item_name": "賃借料", "tax_code": 34, "amount": 110000, "description": "CNC旋盤 リース料 2月(製造間接費)" }
|
|
213
|
+
]
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"issue_date": "2026-03-10",
|
|
217
|
+
"type": "expense",
|
|
218
|
+
"partner_name": "精密機器リース株式会社",
|
|
219
|
+
"details": [
|
|
220
|
+
{ "account_item_name": "賃借料", "tax_code": 34, "amount": 110000, "description": "CNC旋盤 リース料 3月(製造間接費)" }
|
|
221
|
+
]
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"issue_date": "2026-01-25",
|
|
225
|
+
"type": "expense",
|
|
226
|
+
"partner_name": "給与計算",
|
|
227
|
+
"details": [
|
|
228
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "管理部門 人件費 1月(販管費)" }
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"issue_date": "2026-02-25",
|
|
233
|
+
"type": "expense",
|
|
234
|
+
"partner_name": "給与計算",
|
|
235
|
+
"details": [
|
|
236
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "管理部門 人件費 2月(販管費)" }
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"issue_date": "2026-03-25",
|
|
241
|
+
"type": "expense",
|
|
242
|
+
"partner_name": "給与計算",
|
|
243
|
+
"details": [
|
|
244
|
+
{ "account_item_name": "給料手当", "tax_code": 0, "amount": 250000, "description": "管理部門 人件費 3月(販管費)" }
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"issue_date": "2026-01-31",
|
|
249
|
+
"type": "expense",
|
|
250
|
+
"partner_name": "物流サービス株式会社",
|
|
251
|
+
"details": [
|
|
252
|
+
{ "account_item_name": "荷造運賃", "tax_code": 34, "amount": 33000, "description": "製品出荷 運送費 1月" }
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"issue_date": "2026-03-31",
|
|
257
|
+
"type": "expense",
|
|
258
|
+
"partner_name": "物流サービス株式会社",
|
|
259
|
+
"details": [
|
|
260
|
+
{ "account_item_name": "荷造運賃", "tax_code": 34, "amount": 44000, "description": "製品出荷 運送費 3月" }
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"manualJournals": [
|
|
265
|
+
{
|
|
266
|
+
"issue_date": "2026-01-31",
|
|
267
|
+
"details": [
|
|
268
|
+
{ "entry_side": "debit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 280000, "description": "1月末 仕掛品計上(材料費+労務費+間接費の月末未完成分)" },
|
|
269
|
+
{ "entry_side": "credit", "account_item_name": "仕入高", "tax_code": 0, "amount": 180000, "description": "1月末 仕掛品振替: 材料費分" },
|
|
270
|
+
{ "entry_side": "credit", "account_item_name": "給料手当", "tax_code": 0, "amount": 100000, "description": "1月末 仕掛品振替: 労務費分" }
|
|
271
|
+
]
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"issue_date": "2026-02-28",
|
|
275
|
+
"details": [
|
|
276
|
+
{ "entry_side": "debit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 320000, "description": "2月末 仕掛品計上(月末未完成分)" },
|
|
277
|
+
{ "entry_side": "credit", "account_item_name": "仕入高", "tax_code": 0, "amount": 200000, "description": "2月末 仕掛品振替: 材料費分" },
|
|
278
|
+
{ "entry_side": "credit", "account_item_name": "給料手当", "tax_code": 0, "amount": 120000, "description": "2月末 仕掛品振替: 労務費分" }
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"issue_date": "2026-03-31",
|
|
283
|
+
"details": [
|
|
284
|
+
{ "entry_side": "debit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 240000, "description": "3月末 仕掛品計上(期末未完成分)" },
|
|
285
|
+
{ "entry_side": "credit", "account_item_name": "仕入高", "tax_code": 0, "amount": 150000, "description": "3月末 仕掛品振替: 材料費分" },
|
|
286
|
+
{ "entry_side": "credit", "account_item_name": "給料手当", "tax_code": 0, "amount": 90000, "description": "3月末 仕掛品振替: 労務費分" }
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"issue_date": "2026-01-31",
|
|
291
|
+
"details": [
|
|
292
|
+
{ "entry_side": "debit", "account_item_name": "製品", "tax_code": 0, "amount": 620000, "description": "1月 製品完成計上(製造原価振替)" },
|
|
293
|
+
{ "entry_side": "credit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 620000, "description": "1月 仕掛品→製品振替" }
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"issue_date": "2026-02-28",
|
|
298
|
+
"details": [
|
|
299
|
+
{ "entry_side": "debit", "account_item_name": "製品", "tax_code": 0, "amount": 780000, "description": "2月 製品完成計上(製造原価振替)" },
|
|
300
|
+
{ "entry_side": "credit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 780000, "description": "2月 仕掛品→製品振替" }
|
|
301
|
+
]
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"issue_date": "2026-03-31",
|
|
305
|
+
"details": [
|
|
306
|
+
{ "entry_side": "debit", "account_item_name": "製品", "tax_code": 0, "amount": 690000, "description": "3月 製品完成計上(製造原価振替)" },
|
|
307
|
+
{ "entry_side": "credit", "account_item_name": "仕掛品", "tax_code": 0, "amount": 690000, "description": "3月 仕掛品→製品振替" }
|
|
308
|
+
]
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"issue_date": "2026-01-31",
|
|
312
|
+
"details": [
|
|
313
|
+
{ "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 580000, "description": "1月 売上原価計上(製品出庫分)" },
|
|
314
|
+
{ "entry_side": "credit", "account_item_name": "製品", "tax_code": 0, "amount": 580000, "description": "1月 製品→売上原価振替" }
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"issue_date": "2026-02-28",
|
|
319
|
+
"details": [
|
|
320
|
+
{ "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 740000, "description": "2月 売上原価計上(製品出庫分)" },
|
|
321
|
+
{ "entry_side": "credit", "account_item_name": "製品", "tax_code": 0, "amount": 740000, "description": "2月 製品→売上原価振替" }
|
|
322
|
+
]
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"issue_date": "2026-03-31",
|
|
326
|
+
"details": [
|
|
327
|
+
{ "entry_side": "debit", "account_item_name": "仕入高", "tax_code": 0, "amount": 650000, "description": "3月 売上原価計上(製品出庫分)" },
|
|
328
|
+
{ "entry_side": "credit", "account_item_name": "製品", "tax_code": 0, "amount": 650000, "description": "3月 製品→売上原価振替" }
|
|
329
|
+
]
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
}
|
|
333
|
+
}
|