@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.45 → 2.3.7-dev.48
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/Employee.js +1 -1
- package/src/Site.js +1 -0
package/package.json
CHANGED
package/src/Employee.js
CHANGED
|
@@ -25,7 +25,7 @@ const classProps = {
|
|
|
25
25
|
address: defField("address", { required: true }),
|
|
26
26
|
building: defField("building"),
|
|
27
27
|
location: defField("location", { hidden: true }),
|
|
28
|
-
mobile: defField("mobile"
|
|
28
|
+
mobile: defField("mobile"),
|
|
29
29
|
email: defField("email", { required: false }),
|
|
30
30
|
dateOfHire: defField("dateOfHire", { required: true }),
|
|
31
31
|
employmentStatus: defField("employmentStatus", { required: true }),
|
package/src/Site.js
CHANGED
|
@@ -121,6 +121,7 @@ export default class Site extends FireModel {
|
|
|
121
121
|
{ title: "取引先名", key: "customer.name", value: "customer.name" },
|
|
122
122
|
];
|
|
123
123
|
|
|
124
|
+
static STATUS = VALUES;
|
|
124
125
|
static STATUS_ACTIVE = VALUES.ACTIVE.value;
|
|
125
126
|
static STATUS_TERMINATED = VALUES.TERMINATED.value;
|
|
126
127
|
|