@shisyamo4131/air-guard-v2-schemas 2.4.2-dev.93 → 2.4.2-dev.95
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/Site.js +2 -2
- package/src/parts/fieldDefinitions/dateAt.js +30 -5
package/package.json
CHANGED
package/src/Site.js
CHANGED
|
@@ -57,10 +57,10 @@ const classProps = {
|
|
|
57
57
|
building: defField("building"),
|
|
58
58
|
securityType: defField("securityType", { required: true }),
|
|
59
59
|
constructionPeriodStartAt: defField("constructionPeriodStartAt", {
|
|
60
|
-
|
|
60
|
+
component: { attrs: { clearable: true } },
|
|
61
61
|
}),
|
|
62
62
|
constructionPeriodEndAt: defField("constructionPeriodEndAt", {
|
|
63
|
-
|
|
63
|
+
component: { attrs: { clearable: true } },
|
|
64
64
|
}),
|
|
65
65
|
location: defField("location"),
|
|
66
66
|
remarks: defField("remarks"),
|
|
@@ -5,67 +5,92 @@ import { generalDefinitions } from "./defaultDefinition.js";
|
|
|
5
5
|
*/
|
|
6
6
|
export const dateAtFields = {
|
|
7
7
|
dateAt: generalDefinitions.dateAt,
|
|
8
|
+
|
|
9
|
+
/** 工期(終了日) */
|
|
8
10
|
constructionPeriodEndAt: {
|
|
9
11
|
...generalDefinitions.dateAt,
|
|
10
12
|
label: "工期(終了日)",
|
|
13
|
+
default: null,
|
|
11
14
|
},
|
|
15
|
+
|
|
16
|
+
/** 工期(開始日) */
|
|
12
17
|
constructionPeriodStartAt: {
|
|
13
18
|
...generalDefinitions.dateAt,
|
|
14
19
|
label: "工期(開始日)",
|
|
20
|
+
default: null,
|
|
15
21
|
},
|
|
22
|
+
|
|
23
|
+
/** 生年月日 */
|
|
16
24
|
dateOfBirth: {
|
|
17
25
|
...generalDefinitions.dateAt,
|
|
18
26
|
label: "生年月日",
|
|
19
|
-
default: null,
|
|
27
|
+
default: null,
|
|
20
28
|
component: {
|
|
21
29
|
...generalDefinitions.dateAt.component,
|
|
22
30
|
attrs: {
|
|
23
|
-
viewMode: "year",
|
|
31
|
+
viewMode: "year",
|
|
24
32
|
},
|
|
25
33
|
},
|
|
26
34
|
},
|
|
35
|
+
|
|
36
|
+
/** 入社日 */
|
|
27
37
|
dateOfHire: {
|
|
28
38
|
...generalDefinitions.dateAt,
|
|
29
39
|
label: "入社日",
|
|
30
40
|
},
|
|
31
|
-
|
|
41
|
+
|
|
42
|
+
/** 警備員登録日 */
|
|
32
43
|
dateOfSecurityGuardRegistration: {
|
|
33
44
|
...generalDefinitions.dateAt,
|
|
34
45
|
label: "警備員登録日",
|
|
35
46
|
default: null,
|
|
36
47
|
},
|
|
48
|
+
|
|
49
|
+
/** 退職日 */
|
|
37
50
|
dateOfTermination: {
|
|
38
51
|
...generalDefinitions.dateAt,
|
|
39
52
|
label: "退職日",
|
|
40
|
-
default: null,
|
|
53
|
+
default: null,
|
|
41
54
|
},
|
|
55
|
+
|
|
56
|
+
/** 資格取得日 */
|
|
42
57
|
enrollmentDateAt: {
|
|
43
58
|
...generalDefinitions.dateAt,
|
|
44
59
|
label: "資格取得日",
|
|
45
60
|
default: null,
|
|
46
61
|
},
|
|
47
|
-
|
|
62
|
+
|
|
63
|
+
/** 有効期限 */
|
|
48
64
|
expirationDateAt: {
|
|
49
65
|
...generalDefinitions.dateAt,
|
|
50
66
|
label: "有効期限",
|
|
51
67
|
default: null,
|
|
52
68
|
},
|
|
69
|
+
|
|
70
|
+
/** 取得日 */
|
|
53
71
|
issueDateAt: {
|
|
54
72
|
...generalDefinitions.dateAt,
|
|
55
73
|
label: "取得日",
|
|
56
74
|
},
|
|
75
|
+
|
|
76
|
+
/** 資格喪失日 */
|
|
57
77
|
lossDateAt: {
|
|
58
78
|
...generalDefinitions.dateAt,
|
|
59
79
|
label: "資格喪失日",
|
|
60
80
|
default: null,
|
|
61
81
|
},
|
|
82
|
+
|
|
83
|
+
/** 通知送信日時 */
|
|
62
84
|
notificationSentAt: {
|
|
63
85
|
...generalDefinitions.dateAt,
|
|
64
86
|
label: "通知送信日時",
|
|
65
87
|
default: null,
|
|
66
88
|
},
|
|
89
|
+
|
|
90
|
+
/** 在留期間満了日 */
|
|
67
91
|
periodOfStay: {
|
|
68
92
|
...generalDefinitions.dateAt,
|
|
69
93
|
label: "在留期間満了日",
|
|
94
|
+
default: null,
|
|
70
95
|
},
|
|
71
96
|
};
|