@shisyamo4131/air-guard-v2-schemas 2.4.2-dev.67 → 2.4.2-dev.69
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/package.json +1 -1
- package/src/Billing.js +5 -34
- package/src/Insurance.js +11 -3
- package/src/OperationResult.js +3 -17
- package/src/SiteOperationSchedule.js +2 -6
- package/src/WorkTimeBase.js +2 -8
- package/src/parts/fieldDefinitions/array.js +8 -0
- package/src/parts/fieldDefinitions/check.js +20 -0
- package/src/parts/fieldDefinitions/code.js +8 -0
- package/src/parts/fieldDefinitions/constants.js +9 -0
- package/src/parts/fieldDefinitions/dateAt.js +58 -0
- package/src/parts/fieldDefinitions/dateTimeAt.js +8 -0
- package/src/parts/fieldDefinitions/defaultDefinition.js +118 -0
- package/src/parts/fieldDefinitions/multipleLine.js +12 -0
- package/src/parts/fieldDefinitions/number.js +69 -0
- package/src/parts/fieldDefinitions/object.js +30 -0
- package/src/parts/fieldDefinitions/oneLine.js +306 -0
- package/src/parts/fieldDefinitions/radio.js +8 -0
- package/src/parts/fieldDefinitions/select.js +240 -0
- package/src/parts/fieldDefinitions/time.js +8 -0
- package/src/parts/fieldDefinitions.js +39 -858
- package/src/utils/CutoffDate.js +11 -15
- package/src/utils/index.js +24 -0
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
import { generalDefinitions } from "./defaultDefinition.js";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* ONE LINE型のフィールド定義
|
|
5
|
+
*/
|
|
6
|
+
export const oneLineFields = {
|
|
7
|
+
oneLine: generalDefinitions.oneLine,
|
|
8
|
+
abbreviation: {
|
|
9
|
+
...generalDefinitions.oneLine,
|
|
10
|
+
label: "略称",
|
|
11
|
+
length: 20,
|
|
12
|
+
},
|
|
13
|
+
address: {
|
|
14
|
+
...generalDefinitions.oneLine,
|
|
15
|
+
label: "町域名・番地",
|
|
16
|
+
length: 30,
|
|
17
|
+
},
|
|
18
|
+
branchName: {
|
|
19
|
+
...generalDefinitions.oneLine,
|
|
20
|
+
label: "支店名など",
|
|
21
|
+
length: 20,
|
|
22
|
+
},
|
|
23
|
+
building: {
|
|
24
|
+
...generalDefinitions.oneLine,
|
|
25
|
+
label: "建物名・階数",
|
|
26
|
+
length: 30,
|
|
27
|
+
},
|
|
28
|
+
city: {
|
|
29
|
+
...generalDefinitions.oneLine,
|
|
30
|
+
label: "市区町村",
|
|
31
|
+
length: 20,
|
|
32
|
+
},
|
|
33
|
+
companyName: {
|
|
34
|
+
...generalDefinitions.oneLine,
|
|
35
|
+
label: "会社名",
|
|
36
|
+
length: 20,
|
|
37
|
+
},
|
|
38
|
+
companyNameKana: {
|
|
39
|
+
...generalDefinitions.oneLine,
|
|
40
|
+
label: "会社名(カナ)",
|
|
41
|
+
length: 40,
|
|
42
|
+
component: {
|
|
43
|
+
name: generalDefinitions.oneLine.component.name,
|
|
44
|
+
attrs: {
|
|
45
|
+
inputType: "katakana",
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
customerId: {
|
|
50
|
+
...generalDefinitions.oneLine,
|
|
51
|
+
label: "取引先",
|
|
52
|
+
// アプリ側で `useFetchXxxx` コンポーザブルを使用するため
|
|
53
|
+
// 使用するクラス側で api 関連の設定は不要。
|
|
54
|
+
component: {
|
|
55
|
+
name: "air-autocomplete-api",
|
|
56
|
+
attrs: {
|
|
57
|
+
itemValue: "docId",
|
|
58
|
+
itemTitle: "name",
|
|
59
|
+
noFilter: true,
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
},
|
|
63
|
+
/**
|
|
64
|
+
* 取引先名
|
|
65
|
+
* - 2文字以上最大20文字
|
|
66
|
+
*/
|
|
67
|
+
customerName: {
|
|
68
|
+
...generalDefinitions.oneLine,
|
|
69
|
+
label: "取引先名",
|
|
70
|
+
length: 20,
|
|
71
|
+
component: {
|
|
72
|
+
name: generalDefinitions.oneLine.component.name,
|
|
73
|
+
attrs: { minLength: 2 },
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
displayName: {
|
|
77
|
+
...generalDefinitions.oneLine,
|
|
78
|
+
label: "表示名",
|
|
79
|
+
length: 6,
|
|
80
|
+
},
|
|
81
|
+
domicile: {
|
|
82
|
+
...generalDefinitions.oneLine,
|
|
83
|
+
label: "本籍地",
|
|
84
|
+
length: 50,
|
|
85
|
+
},
|
|
86
|
+
email: {
|
|
87
|
+
...generalDefinitions.oneLine,
|
|
88
|
+
label: "email",
|
|
89
|
+
length: 50,
|
|
90
|
+
component: {
|
|
91
|
+
name: generalDefinitions.oneLine.component.name,
|
|
92
|
+
attrs: {
|
|
93
|
+
inputType: "email",
|
|
94
|
+
inputmode: "email",
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
emergencyContactAddress: {
|
|
99
|
+
...generalDefinitions.oneLine,
|
|
100
|
+
label: "緊急連絡先住所",
|
|
101
|
+
length: 50,
|
|
102
|
+
},
|
|
103
|
+
emergencyContactName: {
|
|
104
|
+
...generalDefinitions.oneLine,
|
|
105
|
+
label: "緊急連絡先氏名",
|
|
106
|
+
length: 20,
|
|
107
|
+
},
|
|
108
|
+
emergencyContactRelationDetail: {
|
|
109
|
+
...generalDefinitions.oneLine,
|
|
110
|
+
label: "緊急連絡先続柄詳細",
|
|
111
|
+
length: 20,
|
|
112
|
+
},
|
|
113
|
+
emergencyContactPhone: {
|
|
114
|
+
...generalDefinitions.oneLine,
|
|
115
|
+
label: "緊急連絡先電話番号",
|
|
116
|
+
length: 13,
|
|
117
|
+
component: {
|
|
118
|
+
name: generalDefinitions.oneLine.component.name,
|
|
119
|
+
attrs: {
|
|
120
|
+
counter: true,
|
|
121
|
+
inputType: "tel",
|
|
122
|
+
inputmode: "tel",
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
fax: {
|
|
127
|
+
...generalDefinitions.oneLine,
|
|
128
|
+
label: "FAX番号",
|
|
129
|
+
length: 13,
|
|
130
|
+
component: {
|
|
131
|
+
name: generalDefinitions.oneLine.component.name,
|
|
132
|
+
attrs: {
|
|
133
|
+
counter: true,
|
|
134
|
+
inputType: "tel",
|
|
135
|
+
inputmode: "tel",
|
|
136
|
+
},
|
|
137
|
+
},
|
|
138
|
+
},
|
|
139
|
+
firstName: {
|
|
140
|
+
...generalDefinitions.oneLine,
|
|
141
|
+
label: "名",
|
|
142
|
+
length: 20,
|
|
143
|
+
},
|
|
144
|
+
firstNameKana: {
|
|
145
|
+
...generalDefinitions.oneLine,
|
|
146
|
+
label: "メイ",
|
|
147
|
+
length: 40,
|
|
148
|
+
component: {
|
|
149
|
+
name: generalDefinitions.oneLine.component.name,
|
|
150
|
+
attrs: {
|
|
151
|
+
inputType: "katakana",
|
|
152
|
+
},
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
foreignName: {
|
|
156
|
+
...generalDefinitions.oneLine,
|
|
157
|
+
label: "本名",
|
|
158
|
+
length: 50,
|
|
159
|
+
component: {
|
|
160
|
+
name: generalDefinitions.oneLine.component.name,
|
|
161
|
+
attrs: {
|
|
162
|
+
hint: "パスポート等の表記をご入力ください。",
|
|
163
|
+
persistentHint: true,
|
|
164
|
+
},
|
|
165
|
+
},
|
|
166
|
+
},
|
|
167
|
+
insuranceNumber: {
|
|
168
|
+
...generalDefinitions.oneLine,
|
|
169
|
+
label: "被保険者番号(整理記号)",
|
|
170
|
+
length: 20,
|
|
171
|
+
},
|
|
172
|
+
// 2025-12-26 Added
|
|
173
|
+
issuedBy: {
|
|
174
|
+
...generalDefinitions.oneLine,
|
|
175
|
+
label: "発行元",
|
|
176
|
+
length: 20,
|
|
177
|
+
},
|
|
178
|
+
lastName: {
|
|
179
|
+
...generalDefinitions.oneLine,
|
|
180
|
+
label: "姓",
|
|
181
|
+
length: 20,
|
|
182
|
+
},
|
|
183
|
+
lastNameKana: {
|
|
184
|
+
...generalDefinitions.oneLine,
|
|
185
|
+
label: "セイ",
|
|
186
|
+
length: 40,
|
|
187
|
+
component: {
|
|
188
|
+
name: generalDefinitions.oneLine.component.name,
|
|
189
|
+
attrs: {
|
|
190
|
+
inputType: "katakana",
|
|
191
|
+
},
|
|
192
|
+
},
|
|
193
|
+
},
|
|
194
|
+
lossReason: {
|
|
195
|
+
...generalDefinitions.oneLine,
|
|
196
|
+
label: "喪失理由",
|
|
197
|
+
length: 40,
|
|
198
|
+
},
|
|
199
|
+
mobile: {
|
|
200
|
+
...generalDefinitions.oneLine,
|
|
201
|
+
label: "携帯電話",
|
|
202
|
+
length: 13,
|
|
203
|
+
component: {
|
|
204
|
+
name: generalDefinitions.oneLine.component.name,
|
|
205
|
+
attrs: {
|
|
206
|
+
counter: true,
|
|
207
|
+
inputType: "tel",
|
|
208
|
+
inputmode: "tel",
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
},
|
|
212
|
+
name: {
|
|
213
|
+
...generalDefinitions.oneLine,
|
|
214
|
+
label: "名前",
|
|
215
|
+
length: 20,
|
|
216
|
+
},
|
|
217
|
+
nameKana: {
|
|
218
|
+
...generalDefinitions.oneLine,
|
|
219
|
+
label: "名前(カナ)",
|
|
220
|
+
length: 40,
|
|
221
|
+
component: {
|
|
222
|
+
name: generalDefinitions.oneLine.component.name,
|
|
223
|
+
attrs: {
|
|
224
|
+
inputType: "katakana",
|
|
225
|
+
},
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
nationality: {
|
|
229
|
+
...generalDefinitions.oneLine,
|
|
230
|
+
label: "国籍",
|
|
231
|
+
length: 50,
|
|
232
|
+
},
|
|
233
|
+
residenceStatus: {
|
|
234
|
+
...generalDefinitions.oneLine,
|
|
235
|
+
label: "在留資格",
|
|
236
|
+
length: 10,
|
|
237
|
+
},
|
|
238
|
+
reasonOfTermination: {
|
|
239
|
+
...generalDefinitions.oneLine,
|
|
240
|
+
label: "退職理由",
|
|
241
|
+
length: 20,
|
|
242
|
+
},
|
|
243
|
+
// 2025-12-26 Added
|
|
244
|
+
serialNumber: {
|
|
245
|
+
...generalDefinitions.oneLine,
|
|
246
|
+
label: "証明書番号",
|
|
247
|
+
length: 20,
|
|
248
|
+
},
|
|
249
|
+
siteId: {
|
|
250
|
+
...generalDefinitions.oneLine,
|
|
251
|
+
label: "現場",
|
|
252
|
+
component: {
|
|
253
|
+
name: "air-autocomplete-api",
|
|
254
|
+
attrs: {
|
|
255
|
+
itemValue: "docId",
|
|
256
|
+
itemTitle: "name",
|
|
257
|
+
noFilter: true,
|
|
258
|
+
},
|
|
259
|
+
},
|
|
260
|
+
},
|
|
261
|
+
tel: {
|
|
262
|
+
...generalDefinitions.oneLine,
|
|
263
|
+
label: "電話番号",
|
|
264
|
+
length: 13,
|
|
265
|
+
component: {
|
|
266
|
+
name: generalDefinitions.oneLine.component.name,
|
|
267
|
+
attrs: {
|
|
268
|
+
counter: true,
|
|
269
|
+
inputType: "tel",
|
|
270
|
+
inputmode: "tel",
|
|
271
|
+
},
|
|
272
|
+
},
|
|
273
|
+
},
|
|
274
|
+
title: {
|
|
275
|
+
...generalDefinitions.oneLine,
|
|
276
|
+
label: "肩書",
|
|
277
|
+
length: 20,
|
|
278
|
+
},
|
|
279
|
+
workDescription: {
|
|
280
|
+
...generalDefinitions.oneLine,
|
|
281
|
+
label: "作業内容",
|
|
282
|
+
length: 20,
|
|
283
|
+
},
|
|
284
|
+
zipcode: {
|
|
285
|
+
...generalDefinitions.oneLine,
|
|
286
|
+
default: null,
|
|
287
|
+
label: "郵便番号",
|
|
288
|
+
component: {
|
|
289
|
+
name: "air-postal-code",
|
|
290
|
+
attrs: {
|
|
291
|
+
counter: true,
|
|
292
|
+
inputType: "zipcode",
|
|
293
|
+
"onUpdate:address": ({ item, updateProperties }) => {
|
|
294
|
+
return (result) => {
|
|
295
|
+
updateProperties({
|
|
296
|
+
prefCode: result.prefcode,
|
|
297
|
+
prefecture: result.address1,
|
|
298
|
+
city: result.address2,
|
|
299
|
+
address: result.address3,
|
|
300
|
+
});
|
|
301
|
+
};
|
|
302
|
+
},
|
|
303
|
+
},
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
};
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import { generalDefinitions } from "./defaultDefinition.js";
|
|
2
|
+
import {
|
|
3
|
+
VALUES as ARRANGEMENT_NOTIFICATION_STATUS_VALUES,
|
|
4
|
+
OPTIONS as ARRANGEMENT_NOTIFICATION_STATUS_OPTIONS,
|
|
5
|
+
} from "../../constants/arrangement-notification-status.js";
|
|
6
|
+
import {
|
|
7
|
+
VALUES as BILLING_UNIT_TYPE_VALUES,
|
|
8
|
+
OPTIONS as BILLING_UNIT_TYPE_OPTIONS,
|
|
9
|
+
} from "../../constants/billing-unit-type.js";
|
|
10
|
+
import {
|
|
11
|
+
VALUES as BLOOD_TYPE_VALUES,
|
|
12
|
+
OPTIONS as BLOOD_TYPE_OPTIONS,
|
|
13
|
+
} from "../../constants/blood-type.js";
|
|
14
|
+
import {
|
|
15
|
+
VALUES as CERTIFICATION_TYPE_VALUES,
|
|
16
|
+
OPTIONS as CERTIFICATION_TYPE_OPTIONS,
|
|
17
|
+
} from "../../constants/certification-type.js";
|
|
18
|
+
import {
|
|
19
|
+
VALUES as CONTRACT_STATUS_VALUES,
|
|
20
|
+
OPTIONS as CONTRACT_STATUS_OPTIONS,
|
|
21
|
+
} from "../../constants/contract-status.js";
|
|
22
|
+
import {
|
|
23
|
+
OPTIONS as DAY_TYPE_OPTIONS,
|
|
24
|
+
VALUES as DAY_TYPE_VALUES,
|
|
25
|
+
} from "../../constants/day-type.js";
|
|
26
|
+
import {
|
|
27
|
+
VALUES as EMERGENCY_CONTACT_RELATION_VALUES,
|
|
28
|
+
OPTIONS as EMERGENCY_CONTACT_RELATION_OPTIONS,
|
|
29
|
+
} from "../../constants/emergency-contact-relation.js";
|
|
30
|
+
import {
|
|
31
|
+
VALUES as EMPLOYMENT_STATUS_VALUES,
|
|
32
|
+
OPTIONS as EMPLOYMENT_STATUS_OPTIONS,
|
|
33
|
+
} from "../../constants/employment-status.js";
|
|
34
|
+
import {
|
|
35
|
+
VALUES as GENDER_VALUES,
|
|
36
|
+
OPTIONS as GENDER_OPTIONS,
|
|
37
|
+
} from "../../constants/gender.js";
|
|
38
|
+
import {
|
|
39
|
+
VALUES as INSURANCE_STATUS_VALUES,
|
|
40
|
+
OPTIONS as INSURANCE_STATUS_OPTIONS,
|
|
41
|
+
} from "../../constants/insurance-status.js";
|
|
42
|
+
import { OPTIONS as PREFECTURES_OPTIONS } from "../../constants/prefectures.js";
|
|
43
|
+
import {
|
|
44
|
+
VALUES as PAYMENT_MONTH_VALUES,
|
|
45
|
+
OPTIONS as PAYMENT_MONTH_OPTIONS,
|
|
46
|
+
} from "../../constants/payment-month.js";
|
|
47
|
+
import {
|
|
48
|
+
VALUES as SHIFT_TYPE_VALUES,
|
|
49
|
+
OPTIONS as SHIFT_TYPE_OPTIONS,
|
|
50
|
+
} from "../../constants/shift-type.js";
|
|
51
|
+
import {
|
|
52
|
+
VALUES as SITE_STATUS_VALUES,
|
|
53
|
+
OPTIONS as SITE_STATUS_OPTIONS,
|
|
54
|
+
} from "../../constants/site-status.js";
|
|
55
|
+
import CutoffDate from "../../utils/CutoffDate.js";
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* SELECT型のフィールド定義
|
|
59
|
+
*/
|
|
60
|
+
export const selectFields = {
|
|
61
|
+
select: generalDefinitions.select,
|
|
62
|
+
arrangementNotificationStatus: {
|
|
63
|
+
...generalDefinitions.select,
|
|
64
|
+
default: ARRANGEMENT_NOTIFICATION_STATUS_VALUES.ARRANGED.value,
|
|
65
|
+
label: "状態",
|
|
66
|
+
component: {
|
|
67
|
+
name: generalDefinitions.select.component.name,
|
|
68
|
+
attrs: {
|
|
69
|
+
items: ARRANGEMENT_NOTIFICATION_STATUS_OPTIONS,
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
/** 請求単位 */
|
|
74
|
+
billingUnitType: {
|
|
75
|
+
...generalDefinitions.select,
|
|
76
|
+
default: BILLING_UNIT_TYPE_VALUES.PER_DAY.value,
|
|
77
|
+
label: "請求単位",
|
|
78
|
+
component: {
|
|
79
|
+
name: generalDefinitions.select.component.name,
|
|
80
|
+
attrs: {
|
|
81
|
+
items: BILLING_UNIT_TYPE_OPTIONS,
|
|
82
|
+
},
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
bloodType: {
|
|
86
|
+
...generalDefinitions.select,
|
|
87
|
+
label: "血液型",
|
|
88
|
+
default: BLOOD_TYPE_VALUES.A.value,
|
|
89
|
+
component: {
|
|
90
|
+
name: generalDefinitions.select.component.name,
|
|
91
|
+
attrs: {
|
|
92
|
+
items: BLOOD_TYPE_OPTIONS,
|
|
93
|
+
},
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
certificationType: {
|
|
97
|
+
...generalDefinitions.select,
|
|
98
|
+
label: "資格種別",
|
|
99
|
+
default: null,
|
|
100
|
+
component: {
|
|
101
|
+
name: generalDefinitions.select.component.name,
|
|
102
|
+
attrs: {
|
|
103
|
+
items: CERTIFICATION_TYPE_OPTIONS,
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
},
|
|
107
|
+
// contractStatus -> Used in Customer.js and Outsourcer.js
|
|
108
|
+
contractStatus: {
|
|
109
|
+
...generalDefinitions.select,
|
|
110
|
+
default: CONTRACT_STATUS_VALUES.ACTIVE.value,
|
|
111
|
+
label: "契約状態",
|
|
112
|
+
component: {
|
|
113
|
+
name: generalDefinitions.select.component.name,
|
|
114
|
+
attrs: {
|
|
115
|
+
items: CONTRACT_STATUS_OPTIONS,
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
cutoffDate: {
|
|
120
|
+
...generalDefinitions.select,
|
|
121
|
+
default: CutoffDate.VALUES[0].value,
|
|
122
|
+
label: "締日",
|
|
123
|
+
component: {
|
|
124
|
+
name: generalDefinitions.select.component.name,
|
|
125
|
+
attrs: {
|
|
126
|
+
items: CutoffDate.OPTIONS,
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
},
|
|
130
|
+
dayType: {
|
|
131
|
+
...generalDefinitions.select,
|
|
132
|
+
default: DAY_TYPE_VALUES.WEEKDAY.value,
|
|
133
|
+
label: "曜日区分",
|
|
134
|
+
component: {
|
|
135
|
+
name: generalDefinitions.select.component.name,
|
|
136
|
+
attrs: {
|
|
137
|
+
items: DAY_TYPE_OPTIONS,
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
},
|
|
141
|
+
emergencyContactRelation: {
|
|
142
|
+
...generalDefinitions.select,
|
|
143
|
+
default: EMERGENCY_CONTACT_RELATION_VALUES.PARENT.value,
|
|
144
|
+
label: "緊急連絡先続柄",
|
|
145
|
+
component: {
|
|
146
|
+
name: generalDefinitions.select.component.name,
|
|
147
|
+
attrs: {
|
|
148
|
+
items: EMERGENCY_CONTACT_RELATION_OPTIONS,
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
},
|
|
152
|
+
employmentStatus: {
|
|
153
|
+
...generalDefinitions.select,
|
|
154
|
+
default: EMPLOYMENT_STATUS_VALUES.ACTIVE.value,
|
|
155
|
+
label: "雇用状態",
|
|
156
|
+
component: {
|
|
157
|
+
name: generalDefinitions.select.component.name,
|
|
158
|
+
attrs: {
|
|
159
|
+
items: EMPLOYMENT_STATUS_OPTIONS,
|
|
160
|
+
},
|
|
161
|
+
},
|
|
162
|
+
},
|
|
163
|
+
gender: {
|
|
164
|
+
...generalDefinitions.select,
|
|
165
|
+
default: GENDER_VALUES.MALE.value,
|
|
166
|
+
label: "性別",
|
|
167
|
+
component: {
|
|
168
|
+
name: generalDefinitions.select.component.name,
|
|
169
|
+
attrs: {
|
|
170
|
+
items: GENDER_OPTIONS,
|
|
171
|
+
},
|
|
172
|
+
},
|
|
173
|
+
},
|
|
174
|
+
insuranceStatus: {
|
|
175
|
+
...generalDefinitions.select,
|
|
176
|
+
default: INSURANCE_STATUS_VALUES.NOT_ENROLLED.value,
|
|
177
|
+
label: "保険状態",
|
|
178
|
+
component: {
|
|
179
|
+
name: generalDefinitions.select.component.name,
|
|
180
|
+
attrs: {
|
|
181
|
+
items: INSURANCE_STATUS_OPTIONS,
|
|
182
|
+
},
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
paymentDate: {
|
|
186
|
+
...generalDefinitions.select,
|
|
187
|
+
default: CutoffDate.VALUES[0].value,
|
|
188
|
+
label: "入金サイト(日)",
|
|
189
|
+
component: {
|
|
190
|
+
name: generalDefinitions.select.component.name,
|
|
191
|
+
attrs: {
|
|
192
|
+
items: CutoffDate.OPTIONS,
|
|
193
|
+
},
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
paymentMonth: {
|
|
197
|
+
...generalDefinitions.select,
|
|
198
|
+
default: PAYMENT_MONTH_VALUES[1].value,
|
|
199
|
+
label: "入金サイト(月数)",
|
|
200
|
+
component: {
|
|
201
|
+
name: generalDefinitions.select.component.name,
|
|
202
|
+
attrs: {
|
|
203
|
+
items: PAYMENT_MONTH_OPTIONS,
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
},
|
|
207
|
+
prefCode: {
|
|
208
|
+
...generalDefinitions.select,
|
|
209
|
+
label: "都道府県",
|
|
210
|
+
length: 2,
|
|
211
|
+
component: {
|
|
212
|
+
name: generalDefinitions.select.component.name,
|
|
213
|
+
attrs: {
|
|
214
|
+
items: PREFECTURES_OPTIONS,
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
shiftType: {
|
|
219
|
+
...generalDefinitions.select,
|
|
220
|
+
default: SHIFT_TYPE_VALUES.DAY.value,
|
|
221
|
+
label: "勤務区分",
|
|
222
|
+
component: {
|
|
223
|
+
name: generalDefinitions.select.component.name,
|
|
224
|
+
attrs: {
|
|
225
|
+
items: SHIFT_TYPE_OPTIONS,
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
siteStatus: {
|
|
230
|
+
...generalDefinitions.select,
|
|
231
|
+
default: SITE_STATUS_VALUES.ACTIVE.value,
|
|
232
|
+
label: "状態",
|
|
233
|
+
component: {
|
|
234
|
+
name: generalDefinitions.select.component.name,
|
|
235
|
+
attrs: {
|
|
236
|
+
items: SITE_STATUS_OPTIONS,
|
|
237
|
+
},
|
|
238
|
+
},
|
|
239
|
+
},
|
|
240
|
+
};
|