@neutron.co.id/operasional-interfaces 1.8.3 → 1.8.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/build/index.cjs +390 -154
- package/build/index.mjs +390 -154
- package/build/style.css +13 -5
- package/build/types/components/attendance/attendance.types.d.ts +1 -1
- package/build/types/components/index.d.ts +1 -0
- package/build/types/components/progress/progress.types.d.ts +1 -1
- package/build/types/components/progressAccess/index.d.ts +2 -0
- package/build/types/components/progressAccess/progressAccess.types.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessCollection.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessSingle.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/ProgressAccessSupervisor.vue.d.ts +2 -0
- package/build/types/components/progressAccess/sheets/index.d.ts +3 -0
- package/build/types/components/responsibility/responsibility.types.d.ts +1 -1
- package/build/types/gql/graphql.d.ts +258 -2
- package/build/types/providers/operasional/operasional.types.d.ts +3 -1
- package/build/types/providers/operasional/useOperasional.d.ts +2 -0
- package/package.json +4 -4
package/build/index.cjs
CHANGED
|
@@ -33,7 +33,7 @@ const mitt = require("mitt");
|
|
|
33
33
|
const personaliaModels = require("@neutron.co.id/personalia-models");
|
|
34
34
|
const catatInterfaces = require("@neon.id/catat-interfaces");
|
|
35
35
|
const _hoisted_1$m = { class: "xxx-button" };
|
|
36
|
-
const _sfc_main$
|
|
36
|
+
const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
37
37
|
...{ name: "XxxButton" },
|
|
38
38
|
__name: "XxxButton",
|
|
39
39
|
props: {
|
|
@@ -55,7 +55,7 @@ const _hoisted_2$g = {
|
|
|
55
55
|
key: 2,
|
|
56
56
|
class: "section"
|
|
57
57
|
};
|
|
58
|
-
const _sfc_main$
|
|
58
|
+
const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
|
|
59
59
|
...{ name: "OperasionalIdentitas" },
|
|
60
60
|
__name: "OperasionalIdentitas",
|
|
61
61
|
props: {
|
|
@@ -411,7 +411,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
411
411
|
}
|
|
412
412
|
return target;
|
|
413
413
|
};
|
|
414
|
-
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
414
|
+
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-355c8370"]]);
|
|
415
415
|
dayjs.extend(durationPlugin);
|
|
416
416
|
dayjs.extend(relativeTimePlugin);
|
|
417
417
|
dayjs.extend(advancedFormat);
|
|
@@ -437,7 +437,7 @@ const _hoisted_2$f = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ vue.cr
|
|
|
437
437
|
const _hoisted_3$7 = [
|
|
438
438
|
_hoisted_2$f
|
|
439
439
|
];
|
|
440
|
-
const _sfc_main$
|
|
440
|
+
const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
|
|
441
441
|
__name: "NeonTime",
|
|
442
442
|
props: {
|
|
443
443
|
modelValue: {
|
|
@@ -498,14 +498,16 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
498
498
|
});
|
|
499
499
|
const NeonTime_vue_vue_type_style_index_0_scoped_805321b9_lang = "";
|
|
500
500
|
const NeonTime_vue_vue_type_style_index_1_lang = "";
|
|
501
|
-
const NeonTime = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
501
|
+
const NeonTime = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-805321b9"]]);
|
|
502
502
|
const CheckInModel = tempatModels.models.CheckInModel;
|
|
503
503
|
const useOperasionalStore = pinia.defineStore("neu:operasional", () => {
|
|
504
504
|
const isLoading = vue.ref(false);
|
|
505
505
|
const staff = vue.ref(null);
|
|
506
|
+
const accesses = vue.ref([]);
|
|
506
507
|
return {
|
|
507
508
|
isLoading,
|
|
508
509
|
staff,
|
|
510
|
+
accesses,
|
|
509
511
|
setStaff
|
|
510
512
|
};
|
|
511
513
|
function setStaff(data) {
|
|
@@ -577,11 +579,21 @@ function withOperasional() {
|
|
|
577
579
|
const authStore = identitasInterfaces.useAuthStore();
|
|
578
580
|
const { userId } = pinia.storeToRefs(authStore);
|
|
579
581
|
const store = useOperasionalStore();
|
|
580
|
-
const { isLoading, staff } = pinia.storeToRefs(store);
|
|
582
|
+
const { isLoading, staff, accesses } = pinia.storeToRefs(store);
|
|
583
|
+
const supervisedStaffIds = vue.computed(() => {
|
|
584
|
+
return accesses.value.reduce(
|
|
585
|
+
(ids, access) => {
|
|
586
|
+
return ids.concat(access.supervisedStaffIds || []);
|
|
587
|
+
},
|
|
588
|
+
[]
|
|
589
|
+
);
|
|
590
|
+
});
|
|
581
591
|
const { client: client2 } = vue$1.useClientHandle();
|
|
582
592
|
const context$1 = {
|
|
583
593
|
isLoading,
|
|
584
594
|
staff,
|
|
595
|
+
accesses,
|
|
596
|
+
supervisedStaffIds,
|
|
585
597
|
setStaff: store.setStaff,
|
|
586
598
|
getStaff,
|
|
587
599
|
init
|
|
@@ -608,7 +620,11 @@ function withOperasional() {
|
|
|
608
620
|
userId: 1,
|
|
609
621
|
branch: { id: 1, name: 1 },
|
|
610
622
|
branches: { id: 1, name: 1 },
|
|
611
|
-
note: 1
|
|
623
|
+
note: 1,
|
|
624
|
+
superviseStaffProgressAccesses: {
|
|
625
|
+
id: 1,
|
|
626
|
+
supervisedStaffIds: 1
|
|
627
|
+
}
|
|
612
628
|
}),
|
|
613
629
|
{
|
|
614
630
|
filter: { userId: userId.value },
|
|
@@ -619,7 +635,9 @@ function withOperasional() {
|
|
|
619
635
|
).toPromise();
|
|
620
636
|
const wrapper = (_a = resp.data) == null ? void 0 : _a[StaffModel$1.plural];
|
|
621
637
|
const items = (wrapper == null ? void 0 : wrapper.items) || [];
|
|
622
|
-
|
|
638
|
+
const _staff = items[0];
|
|
639
|
+
staff.value = _staff;
|
|
640
|
+
accesses.value = _staff.superviseStaffProgressAccesses || [];
|
|
623
641
|
}
|
|
624
642
|
}
|
|
625
643
|
const bus = mitt();
|
|
@@ -639,7 +657,7 @@ const _hoisted_5$3 = /* @__PURE__ */ _withScopeId$2(() => /* @__PURE__ */ vue.cr
|
|
|
639
657
|
/* HOISTED */
|
|
640
658
|
));
|
|
641
659
|
const _hoisted_6$2 = { class: "end" };
|
|
642
|
-
const _sfc_main$
|
|
660
|
+
const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
643
661
|
...{
|
|
644
662
|
name: "CheckInPresenceCollection"
|
|
645
663
|
},
|
|
@@ -992,9 +1010,9 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
992
1010
|
}
|
|
993
1011
|
});
|
|
994
1012
|
const CheckInPresenceCollection_vue_vue_type_style_index_0_scoped_ee60c24a_lang = "";
|
|
995
|
-
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1013
|
+
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-ee60c24a"]]);
|
|
996
1014
|
const _hoisted_1$i = { class: "grid gap-4 sm:grid-cols-2" };
|
|
997
|
-
const _sfc_main$
|
|
1015
|
+
const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
998
1016
|
__name: "CheckInSingle",
|
|
999
1017
|
setup(__props) {
|
|
1000
1018
|
const {
|
|
@@ -1092,9 +1110,9 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
1092
1110
|
}
|
|
1093
1111
|
});
|
|
1094
1112
|
const CheckInSingle_vue_vue_type_style_index_0_scoped_2e2803fb_lang = "";
|
|
1095
|
-
const CheckInSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1113
|
+
const CheckInSingle = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-2e2803fb"]]);
|
|
1096
1114
|
const _hoisted_1$h = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1097
|
-
const _sfc_main$
|
|
1115
|
+
const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
1098
1116
|
__name: "CheckInExternal",
|
|
1099
1117
|
setup(__props) {
|
|
1100
1118
|
const {
|
|
@@ -1207,7 +1225,7 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
1207
1225
|
}
|
|
1208
1226
|
});
|
|
1209
1227
|
const CheckInExternal_vue_vue_type_style_index_0_scoped_dcdbc71a_lang = "";
|
|
1210
|
-
const CheckInExternal = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1228
|
+
const CheckInExternal = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-dcdbc71a"]]);
|
|
1211
1229
|
const _withScopeId$1 = (n) => (vue.pushScopeId("data-v-d23b6de5"), n = n(), vue.popScopeId(), n);
|
|
1212
1230
|
const _hoisted_1$g = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode(
|
|
1213
1231
|
"h4",
|
|
@@ -1227,7 +1245,7 @@ const _hoisted_2$d = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.cr
|
|
|
1227
1245
|
-1
|
|
1228
1246
|
/* HOISTED */
|
|
1229
1247
|
));
|
|
1230
|
-
const _sfc_main$
|
|
1248
|
+
const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
1231
1249
|
__name: "CheckInAccess",
|
|
1232
1250
|
emits: ["close"],
|
|
1233
1251
|
setup(__props) {
|
|
@@ -1280,9 +1298,9 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
1280
1298
|
}
|
|
1281
1299
|
});
|
|
1282
1300
|
const CheckInAccess_vue_vue_type_style_index_0_scoped_d23b6de5_lang = "";
|
|
1283
|
-
const CheckInAccess = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1301
|
+
const CheckInAccess = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-d23b6de5"]]);
|
|
1284
1302
|
const _hoisted_1$f = { class: "buttons" };
|
|
1285
|
-
const _sfc_main$
|
|
1303
|
+
const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
1286
1304
|
__name: "CheckInScanError",
|
|
1287
1305
|
setup(__props) {
|
|
1288
1306
|
const attendanceStore = useAttendanceStore();
|
|
@@ -1346,7 +1364,7 @@ const _hoisted_2$c = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.crea
|
|
|
1346
1364
|
));
|
|
1347
1365
|
const _hoisted_3$5 = ["onClick"];
|
|
1348
1366
|
const _hoisted_4$3 = { class: "mr-2 text-sm" };
|
|
1349
|
-
const _sfc_main$
|
|
1367
|
+
const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
1350
1368
|
__name: "CheckInScanner",
|
|
1351
1369
|
emits: ["start", "stop", "scanned", "close"],
|
|
1352
1370
|
setup(__props, { emit }) {
|
|
@@ -1528,7 +1546,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
1528
1546
|
}
|
|
1529
1547
|
});
|
|
1530
1548
|
const CheckInScanner_vue_vue_type_style_index_0_scoped_ef426ef3_lang = "";
|
|
1531
|
-
const CheckInScanner = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1549
|
+
const CheckInScanner = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-ef426ef3"]]);
|
|
1532
1550
|
const _hoisted_1$d = /* @__PURE__ */ vue.createElementVNode(
|
|
1533
1551
|
"h3",
|
|
1534
1552
|
{ align: "center" },
|
|
@@ -1536,7 +1554,7 @@ const _hoisted_1$d = /* @__PURE__ */ vue.createElementVNode(
|
|
|
1536
1554
|
-1
|
|
1537
1555
|
/* HOISTED */
|
|
1538
1556
|
);
|
|
1539
|
-
const _sfc_main$
|
|
1557
|
+
const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
1540
1558
|
__name: "CheckInScanSuccess",
|
|
1541
1559
|
emits: ["close"],
|
|
1542
1560
|
setup(__props) {
|
|
@@ -1568,7 +1586,7 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
1568
1586
|
};
|
|
1569
1587
|
}
|
|
1570
1588
|
});
|
|
1571
|
-
const _sfc_main$
|
|
1589
|
+
const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
1572
1590
|
...{
|
|
1573
1591
|
name: "CheckInCollection"
|
|
1574
1592
|
},
|
|
@@ -1587,7 +1605,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
1587
1605
|
}
|
|
1588
1606
|
});
|
|
1589
1607
|
const StaffModel = personaliaModels.models.StaffModel;
|
|
1590
|
-
const _sfc_main$
|
|
1608
|
+
const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
1591
1609
|
...{
|
|
1592
1610
|
name: "StaffCollection"
|
|
1593
1611
|
},
|
|
@@ -1607,7 +1625,7 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
1607
1625
|
});
|
|
1608
1626
|
const _hoisted_1$c = { class: "grid gap-4 sm:grid-cols-[3fr_1fr]" };
|
|
1609
1627
|
const _hoisted_2$b = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1610
|
-
const _sfc_main$
|
|
1628
|
+
const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
1611
1629
|
__name: "StaffSingle",
|
|
1612
1630
|
setup(__props) {
|
|
1613
1631
|
const {
|
|
@@ -1687,7 +1705,7 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
1687
1705
|
title: "Identitas"
|
|
1688
1706
|
}, {
|
|
1689
1707
|
default: vue.withCtx(() => [
|
|
1690
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
1708
|
+
vue.createVNode(vue.unref(_sfc_main$J))
|
|
1691
1709
|
]),
|
|
1692
1710
|
_: 1
|
|
1693
1711
|
/* STABLE */
|
|
@@ -1758,10 +1776,10 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
1758
1776
|
}
|
|
1759
1777
|
});
|
|
1760
1778
|
const StaffSingle_vue_vue_type_style_index_0_scoped_0cf4cd99_lang = "";
|
|
1761
|
-
const StaffSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1779
|
+
const StaffSingle = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-0cf4cd99"]]);
|
|
1762
1780
|
const _hoisted_1$b = { class: "grid gap-4 sm:grid-cols-[3fr_1fr]" };
|
|
1763
1781
|
const _hoisted_2$a = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1764
|
-
const _sfc_main$
|
|
1782
|
+
const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
1765
1783
|
__name: "StaffOperasional",
|
|
1766
1784
|
setup(__props) {
|
|
1767
1785
|
const {
|
|
@@ -1841,7 +1859,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
1841
1859
|
title: "Identitas"
|
|
1842
1860
|
}, {
|
|
1843
1861
|
default: vue.withCtx(() => [
|
|
1844
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
1862
|
+
vue.createVNode(vue.unref(_sfc_main$J))
|
|
1845
1863
|
]),
|
|
1846
1864
|
_: 1
|
|
1847
1865
|
/* STABLE */
|
|
@@ -1919,8 +1937,8 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
1919
1937
|
}
|
|
1920
1938
|
});
|
|
1921
1939
|
const StaffOperasional_vue_vue_type_style_index_0_scoped_c62cf70a_lang = "";
|
|
1922
|
-
const StaffOperasional = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1923
|
-
const _sfc_main$
|
|
1940
|
+
const StaffOperasional = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-c62cf70a"]]);
|
|
1941
|
+
const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
1924
1942
|
__name: "StaffIdentity",
|
|
1925
1943
|
setup(__props) {
|
|
1926
1944
|
const { values, saveOne, executeOne, syncOne } = context.useSingle();
|
|
@@ -2005,6 +2023,24 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
2005
2023
|
{ id: "6309c3c2e64a1324b8663dab", name: "Karyawan" },
|
|
2006
2024
|
{ id: "646a42976af710fe3618af9a", name: "Pengawas Pengajuan" },
|
|
2007
2025
|
{ id: "646a43106af710fe3618afca", name: "Pengambil Keputusan" },
|
|
2026
|
+
// OPERASIONAL
|
|
2027
|
+
{
|
|
2028
|
+
id: "64a686ba3fe0bb481faa0f8b",
|
|
2029
|
+
name: "Pengelola Tanggungjawab"
|
|
2030
|
+
},
|
|
2031
|
+
{
|
|
2032
|
+
id: "64a687823fe0bb481faa0fba",
|
|
2033
|
+
name: "Penanggungjawab Cabang"
|
|
2034
|
+
},
|
|
2035
|
+
{
|
|
2036
|
+
id: "64a687b93fe0bb481faa0fd6",
|
|
2037
|
+
name: "Pengawas Progress"
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
id: "64a687ed3fe0bb481faa0ff2",
|
|
2041
|
+
name: "Pengelola Absensi"
|
|
2042
|
+
},
|
|
2043
|
+
// END OPERASIONAL
|
|
2008
2044
|
{ id: "63e1734b78ae4f8388b1b313", name: "Cabang Pendidikan" },
|
|
2009
2045
|
// { id: '6309c2aae64a1324b8663d96', name: 'Admin Pendidikan' },
|
|
2010
2046
|
{ id: "643f6c0bd760fc7b529d4a5d", name: "Pengelola Pengajar" },
|
|
@@ -2076,7 +2112,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
2076
2112
|
}
|
|
2077
2113
|
});
|
|
2078
2114
|
const SituationModel = personaliaModels.models.SituationModel;
|
|
2079
|
-
const _sfc_main$
|
|
2115
|
+
const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
2080
2116
|
...{ name: "SituationCollection" },
|
|
2081
2117
|
__name: "SituationCollection",
|
|
2082
2118
|
setup(__props) {
|
|
@@ -2092,7 +2128,7 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
2092
2128
|
};
|
|
2093
2129
|
}
|
|
2094
2130
|
});
|
|
2095
|
-
const _sfc_main$
|
|
2131
|
+
const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
2096
2132
|
__name: "SituationSingle",
|
|
2097
2133
|
setup(__props) {
|
|
2098
2134
|
const {
|
|
@@ -2230,7 +2266,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
2230
2266
|
};
|
|
2231
2267
|
}
|
|
2232
2268
|
});
|
|
2233
|
-
const _sfc_main$
|
|
2269
|
+
const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
2234
2270
|
__name: "SituationWork",
|
|
2235
2271
|
setup(__props) {
|
|
2236
2272
|
const {
|
|
@@ -2411,7 +2447,7 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
2411
2447
|
};
|
|
2412
2448
|
}
|
|
2413
2449
|
});
|
|
2414
|
-
const _sfc_main$
|
|
2450
|
+
const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
2415
2451
|
...{ name: "SituationSupportive" },
|
|
2416
2452
|
__name: "SituationSupportive",
|
|
2417
2453
|
setup(__props) {
|
|
@@ -2550,7 +2586,7 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
2550
2586
|
}
|
|
2551
2587
|
});
|
|
2552
2588
|
const SituationTypeModel = personaliaModels.models.SituationTypeModel;
|
|
2553
|
-
const _sfc_main$
|
|
2589
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
2554
2590
|
...{ name: "SituationTypeCollection" },
|
|
2555
2591
|
__name: "SituationTypeCollection",
|
|
2556
2592
|
setup(__props) {
|
|
@@ -2566,7 +2602,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
2566
2602
|
};
|
|
2567
2603
|
}
|
|
2568
2604
|
});
|
|
2569
|
-
const _sfc_main$
|
|
2605
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
2570
2606
|
__name: "SituationTypeSingle",
|
|
2571
2607
|
setup(__props) {
|
|
2572
2608
|
const {
|
|
@@ -2641,7 +2677,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
2641
2677
|
const TaskModel = personaliaModels.models.TaskModel;
|
|
2642
2678
|
const _hoisted_1$a = { key: 0 };
|
|
2643
2679
|
const _hoisted_2$9 = { key: 1 };
|
|
2644
|
-
const _sfc_main$
|
|
2680
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
2645
2681
|
...{ name: "TaskWorkButton" },
|
|
2646
2682
|
__name: "TaskWorkButton",
|
|
2647
2683
|
setup(__props) {
|
|
@@ -2762,7 +2798,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
2762
2798
|
};
|
|
2763
2799
|
}
|
|
2764
2800
|
});
|
|
2765
|
-
const _sfc_main$
|
|
2801
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
2766
2802
|
...{ name: "TaskCollection" },
|
|
2767
2803
|
__name: "TaskCollection",
|
|
2768
2804
|
setup(__props) {
|
|
@@ -2778,7 +2814,7 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
2778
2814
|
};
|
|
2779
2815
|
}
|
|
2780
2816
|
});
|
|
2781
|
-
const _sfc_main$
|
|
2817
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
2782
2818
|
__name: "TaskSingle",
|
|
2783
2819
|
setup(__props) {
|
|
2784
2820
|
const {
|
|
@@ -3001,7 +3037,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
3001
3037
|
};
|
|
3002
3038
|
}
|
|
3003
3039
|
});
|
|
3004
|
-
const _sfc_main$
|
|
3040
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
3005
3041
|
__name: "TaskWork",
|
|
3006
3042
|
setup(__props) {
|
|
3007
3043
|
const {
|
|
@@ -3224,7 +3260,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
3224
3260
|
}
|
|
3225
3261
|
});
|
|
3226
3262
|
const SubmissionModel = personaliaModels.models.SubmissionModel;
|
|
3227
|
-
const _sfc_main$
|
|
3263
|
+
const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
3228
3264
|
...{
|
|
3229
3265
|
name: "SubmissionCollection"
|
|
3230
3266
|
},
|
|
@@ -3242,7 +3278,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
3242
3278
|
};
|
|
3243
3279
|
}
|
|
3244
3280
|
});
|
|
3245
|
-
const _sfc_main$
|
|
3281
|
+
const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
3246
3282
|
__name: "SubmissionSingle",
|
|
3247
3283
|
setup(__props) {
|
|
3248
3284
|
const {
|
|
@@ -3440,8 +3476,8 @@ const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
|
3440
3476
|
}
|
|
3441
3477
|
});
|
|
3442
3478
|
const SubmissionSingle_vue_vue_type_style_index_0_scoped_db121b49_lang = "";
|
|
3443
|
-
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3444
|
-
const _sfc_main$
|
|
3479
|
+
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-db121b49"]]);
|
|
3480
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
3445
3481
|
__name: "SubmissionStaff",
|
|
3446
3482
|
setup(__props) {
|
|
3447
3483
|
var _a;
|
|
@@ -3725,8 +3761,8 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
3725
3761
|
}
|
|
3726
3762
|
});
|
|
3727
3763
|
const SubmissionStaff_vue_vue_type_style_index_0_scoped_c971a3c0_lang = "";
|
|
3728
|
-
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3729
|
-
const _sfc_main$
|
|
3764
|
+
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-c971a3c0"]]);
|
|
3765
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
3730
3766
|
__name: "SubmissionFollowUp",
|
|
3731
3767
|
setup(__props) {
|
|
3732
3768
|
const {
|
|
@@ -3918,13 +3954,13 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
3918
3954
|
}
|
|
3919
3955
|
});
|
|
3920
3956
|
const SubmissionFollowUp_vue_vue_type_style_index_0_scoped_890dfdf2_lang = "";
|
|
3921
|
-
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3957
|
+
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-890dfdf2"]]);
|
|
3922
3958
|
const _hoisted_1$9 = { class: "flex flex-wrap" };
|
|
3923
3959
|
const _hoisted_2$8 = { class: "mt-2" };
|
|
3924
3960
|
const _hoisted_3$4 = { class: "mt-2" };
|
|
3925
3961
|
const _hoisted_4$2 = { class: "mt-2" };
|
|
3926
3962
|
const _hoisted_5$2 = { class: "mt-2" };
|
|
3927
|
-
const _sfc_main$
|
|
3963
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
3928
3964
|
__name: "SubmissionAudit",
|
|
3929
3965
|
setup(__props) {
|
|
3930
3966
|
var _a;
|
|
@@ -4296,7 +4332,14 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
4296
4332
|
}
|
|
4297
4333
|
}),
|
|
4298
4334
|
"is-ready": vue.unref(isReady),
|
|
4299
|
-
columns: [
|
|
4335
|
+
columns: [
|
|
4336
|
+
"startedAt",
|
|
4337
|
+
"endedAt",
|
|
4338
|
+
"detail",
|
|
4339
|
+
"staffs",
|
|
4340
|
+
"virtualIsNotes",
|
|
4341
|
+
"accessStaffs"
|
|
4342
|
+
],
|
|
4300
4343
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4301
4344
|
filters: ["staff"],
|
|
4302
4345
|
"initial-values": {
|
|
@@ -4320,12 +4363,12 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
4320
4363
|
};
|
|
4321
4364
|
}
|
|
4322
4365
|
});
|
|
4323
|
-
const
|
|
4324
|
-
const SubmissionAudit = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4366
|
+
const SubmissionAudit_vue_vue_type_style_index_0_scoped_0478202c_lang = "";
|
|
4367
|
+
const SubmissionAudit = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-0478202c"]]);
|
|
4325
4368
|
const _hoisted_1$8 = { class: "flex flex-wrap" };
|
|
4326
4369
|
const _hoisted_2$7 = { class: "mt-2" };
|
|
4327
4370
|
const _hoisted_3$3 = { class: "mt-2" };
|
|
4328
|
-
const _sfc_main$
|
|
4371
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
4329
4372
|
__name: "SubmissionDecision",
|
|
4330
4373
|
setup(__props) {
|
|
4331
4374
|
var _a;
|
|
@@ -4661,7 +4704,14 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
4661
4704
|
}
|
|
4662
4705
|
}),
|
|
4663
4706
|
"is-ready": vue.unref(isReady),
|
|
4664
|
-
columns: [
|
|
4707
|
+
columns: [
|
|
4708
|
+
"startedAt",
|
|
4709
|
+
"endedAt",
|
|
4710
|
+
"detail",
|
|
4711
|
+
"staffs",
|
|
4712
|
+
"virtualIsNotes",
|
|
4713
|
+
"accessStaffs"
|
|
4714
|
+
],
|
|
4665
4715
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4666
4716
|
filters: ["staff"],
|
|
4667
4717
|
"initial-values": {
|
|
@@ -4685,12 +4735,12 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
4685
4735
|
};
|
|
4686
4736
|
}
|
|
4687
4737
|
});
|
|
4688
|
-
const
|
|
4689
|
-
const SubmissionDecision = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4738
|
+
const SubmissionDecision_vue_vue_type_style_index_0_scoped_59b0701c_lang = "";
|
|
4739
|
+
const SubmissionDecision = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-59b0701c"]]);
|
|
4690
4740
|
const _hoisted_1$7 = { class: "flex flex-wrap" };
|
|
4691
4741
|
const _hoisted_2$6 = { class: "mt-2" };
|
|
4692
4742
|
const _hoisted_3$2 = { class: "mt-2" };
|
|
4693
|
-
const _sfc_main$
|
|
4743
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
4694
4744
|
__name: "SubmissionWaitingDecision",
|
|
4695
4745
|
setup(__props) {
|
|
4696
4746
|
var _a;
|
|
@@ -5016,9 +5066,9 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
5016
5066
|
}
|
|
5017
5067
|
});
|
|
5018
5068
|
const SubmissionWaitingDecision_vue_vue_type_style_index_0_scoped_1f81ee74_lang = "";
|
|
5019
|
-
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5069
|
+
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-1f81ee74"]]);
|
|
5020
5070
|
const SubmissionTypeModel = personaliaModels.models.SubmissionTypeModel;
|
|
5021
|
-
const _sfc_main$
|
|
5071
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
5022
5072
|
...{
|
|
5023
5073
|
name: "SubmissionTypeCollection"
|
|
5024
5074
|
},
|
|
@@ -5036,7 +5086,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
5036
5086
|
};
|
|
5037
5087
|
}
|
|
5038
5088
|
});
|
|
5039
|
-
const _sfc_main$
|
|
5089
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
5040
5090
|
__name: "SubmissionTypeSingle",
|
|
5041
5091
|
setup(__props) {
|
|
5042
5092
|
const {
|
|
@@ -5102,9 +5152,9 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
5102
5152
|
}
|
|
5103
5153
|
});
|
|
5104
5154
|
const SubmissionTypeSingle_vue_vue_type_style_index_0_scoped_2b7e18ba_lang = "";
|
|
5105
|
-
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5155
|
+
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-2b7e18ba"]]);
|
|
5106
5156
|
const ResponsibilityTypeModel = personaliaModels.models.ResponsibilityTypeModel;
|
|
5107
|
-
const _sfc_main$
|
|
5157
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
5108
5158
|
...{
|
|
5109
5159
|
name: "ResponsibilityTypeCollection"
|
|
5110
5160
|
},
|
|
@@ -5122,7 +5172,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
5122
5172
|
};
|
|
5123
5173
|
}
|
|
5124
5174
|
});
|
|
5125
|
-
const _sfc_main$
|
|
5175
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
5126
5176
|
__name: "ResponsibilityTypeSingle",
|
|
5127
5177
|
setup(__props) {
|
|
5128
5178
|
const {
|
|
@@ -5188,9 +5238,9 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
5188
5238
|
}
|
|
5189
5239
|
});
|
|
5190
5240
|
const ResponsibilityTypeSingle_vue_vue_type_style_index_0_scoped_3df9fac1_lang = "";
|
|
5191
|
-
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5241
|
+
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-3df9fac1"]]);
|
|
5192
5242
|
const ResponsibilityModel = personaliaModels.models.ResponsibilityModel;
|
|
5193
|
-
const _sfc_main$
|
|
5243
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
5194
5244
|
...{
|
|
5195
5245
|
name: "ResponsibilityCollection"
|
|
5196
5246
|
},
|
|
@@ -5208,7 +5258,7 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
5208
5258
|
};
|
|
5209
5259
|
}
|
|
5210
5260
|
});
|
|
5211
|
-
const _sfc_main$
|
|
5261
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
5212
5262
|
__name: "ResponsibilitySingle",
|
|
5213
5263
|
setup(__props) {
|
|
5214
5264
|
const {
|
|
@@ -5346,7 +5396,14 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
5346
5396
|
}
|
|
5347
5397
|
}),
|
|
5348
5398
|
"is-ready": vue.unref(isReady),
|
|
5349
|
-
columns: [
|
|
5399
|
+
columns: [
|
|
5400
|
+
"startedAt",
|
|
5401
|
+
"endedAt",
|
|
5402
|
+
"detail",
|
|
5403
|
+
"staffs",
|
|
5404
|
+
"virtualIsNotes",
|
|
5405
|
+
"accessStaffs"
|
|
5406
|
+
],
|
|
5350
5407
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5351
5408
|
"initial-values": {
|
|
5352
5409
|
responsibilityIds: vue.unref(id),
|
|
@@ -5371,9 +5428,9 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
5371
5428
|
};
|
|
5372
5429
|
}
|
|
5373
5430
|
});
|
|
5374
|
-
const
|
|
5375
|
-
const ResponsibilitySingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5376
|
-
const _sfc_main$
|
|
5431
|
+
const ResponsibilitySingle_vue_vue_type_style_index_0_scoped_3ec4a018_lang = "";
|
|
5432
|
+
const ResponsibilitySingle = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-3ec4a018"]]);
|
|
5433
|
+
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
5377
5434
|
__name: "ResponsibilityStaff",
|
|
5378
5435
|
setup(__props) {
|
|
5379
5436
|
const {
|
|
@@ -5503,7 +5560,14 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5503
5560
|
}
|
|
5504
5561
|
}),
|
|
5505
5562
|
"is-ready": vue.unref(isReady),
|
|
5506
|
-
columns: [
|
|
5563
|
+
columns: [
|
|
5564
|
+
"startedAt",
|
|
5565
|
+
"endedAt",
|
|
5566
|
+
"detail",
|
|
5567
|
+
"staffs",
|
|
5568
|
+
"virtualIsNotes",
|
|
5569
|
+
"accessStaffs"
|
|
5570
|
+
],
|
|
5507
5571
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5508
5572
|
"initial-values": {
|
|
5509
5573
|
responsibilityIds: vue.unref(id),
|
|
@@ -5528,10 +5592,10 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5528
5592
|
};
|
|
5529
5593
|
}
|
|
5530
5594
|
});
|
|
5531
|
-
const
|
|
5532
|
-
const ResponsibilityStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5595
|
+
const ResponsibilityStaff_vue_vue_type_style_index_0_scoped_a1ec66a6_lang = "";
|
|
5596
|
+
const ResponsibilityStaff = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-a1ec66a6"]]);
|
|
5533
5597
|
const TargetModel = personaliaModels.models.TargetModel;
|
|
5534
|
-
const _sfc_main$
|
|
5598
|
+
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
5535
5599
|
...{
|
|
5536
5600
|
name: "TargetCollection"
|
|
5537
5601
|
},
|
|
@@ -5549,7 +5613,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
5549
5613
|
};
|
|
5550
5614
|
}
|
|
5551
5615
|
});
|
|
5552
|
-
const _sfc_main$
|
|
5616
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
5553
5617
|
__name: "TargetSingle",
|
|
5554
5618
|
setup(__props) {
|
|
5555
5619
|
const {
|
|
@@ -5702,8 +5766,8 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
5702
5766
|
}
|
|
5703
5767
|
});
|
|
5704
5768
|
const TargetSingle_vue_vue_type_style_index_0_scoped_c12b8df8_lang = "";
|
|
5705
|
-
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5706
|
-
const _sfc_main$
|
|
5769
|
+
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-c12b8df8"]]);
|
|
5770
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
5707
5771
|
__name: "TargetBranch",
|
|
5708
5772
|
setup(__props) {
|
|
5709
5773
|
const {
|
|
@@ -5856,9 +5920,9 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
5856
5920
|
}
|
|
5857
5921
|
});
|
|
5858
5922
|
const TargetBranch_vue_vue_type_style_index_0_scoped_6a5a6e80_lang = "";
|
|
5859
|
-
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5923
|
+
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6a5a6e80"]]);
|
|
5860
5924
|
const PlanTypeModel = personaliaModels.models.PlanTypeModel;
|
|
5861
|
-
const _sfc_main$
|
|
5925
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
5862
5926
|
...{
|
|
5863
5927
|
name: "PlanTypeCollection"
|
|
5864
5928
|
},
|
|
@@ -5876,7 +5940,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
5876
5940
|
};
|
|
5877
5941
|
}
|
|
5878
5942
|
});
|
|
5879
|
-
const _sfc_main$
|
|
5943
|
+
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
5880
5944
|
__name: "PlanTypeSingle",
|
|
5881
5945
|
setup(__props) {
|
|
5882
5946
|
const {
|
|
@@ -5997,9 +6061,9 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
5997
6061
|
}
|
|
5998
6062
|
});
|
|
5999
6063
|
const PlanTypeSingle_vue_vue_type_style_index_0_scoped_80d2e1d3_lang = "";
|
|
6000
|
-
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6064
|
+
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-80d2e1d3"]]);
|
|
6001
6065
|
const PlanModel = personaliaModels.models.PlanModel;
|
|
6002
|
-
const _sfc_main$
|
|
6066
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
6003
6067
|
...{
|
|
6004
6068
|
name: "PlanCollection"
|
|
6005
6069
|
},
|
|
@@ -6017,7 +6081,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
6017
6081
|
};
|
|
6018
6082
|
}
|
|
6019
6083
|
});
|
|
6020
|
-
const _sfc_main$
|
|
6084
|
+
const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
6021
6085
|
__name: "PlanSingle",
|
|
6022
6086
|
setup(__props) {
|
|
6023
6087
|
const {
|
|
@@ -6169,7 +6233,14 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
6169
6233
|
}
|
|
6170
6234
|
}),
|
|
6171
6235
|
"is-ready": vue.unref(isReady),
|
|
6172
|
-
columns: [
|
|
6236
|
+
columns: [
|
|
6237
|
+
"startedAt",
|
|
6238
|
+
"endedAt",
|
|
6239
|
+
"detail",
|
|
6240
|
+
"staffs",
|
|
6241
|
+
"virtualIsNotes",
|
|
6242
|
+
"accessStaffs"
|
|
6243
|
+
],
|
|
6173
6244
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
6174
6245
|
filters: ["staff"],
|
|
6175
6246
|
"initial-values": {
|
|
@@ -6192,9 +6263,9 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
6192
6263
|
};
|
|
6193
6264
|
}
|
|
6194
6265
|
});
|
|
6195
|
-
const
|
|
6196
|
-
const PlanSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6197
|
-
const _sfc_main$
|
|
6266
|
+
const PlanSingle_vue_vue_type_style_index_0_scoped_a39127c2_lang = "";
|
|
6267
|
+
const PlanSingle = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-a39127c2"]]);
|
|
6268
|
+
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
6198
6269
|
__name: "PlanStaff",
|
|
6199
6270
|
setup(__props) {
|
|
6200
6271
|
const {
|
|
@@ -6346,10 +6417,10 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
6346
6417
|
}
|
|
6347
6418
|
});
|
|
6348
6419
|
const PlanStaff_vue_vue_type_style_index_0_scoped_aa8de6da_lang = "";
|
|
6349
|
-
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6420
|
+
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-aa8de6da"]]);
|
|
6350
6421
|
const ProgressModel = personaliaModels.models.ProgressModel;
|
|
6351
6422
|
const _hoisted_1$6 = { class: "flex flex-wrap" };
|
|
6352
|
-
const _sfc_main$
|
|
6423
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
6353
6424
|
...{ name: "ProgressButton" },
|
|
6354
6425
|
__name: "ProgressButton",
|
|
6355
6426
|
setup(__props) {
|
|
@@ -6395,7 +6466,7 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6395
6466
|
};
|
|
6396
6467
|
}
|
|
6397
6468
|
});
|
|
6398
|
-
const _sfc_main$
|
|
6469
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
6399
6470
|
...{
|
|
6400
6471
|
name: "ProgressCollection"
|
|
6401
6472
|
},
|
|
@@ -6458,10 +6529,10 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6458
6529
|
}
|
|
6459
6530
|
});
|
|
6460
6531
|
const ProgressCollection_vue_vue_type_style_index_0_scoped_2634660f_lang = "";
|
|
6461
|
-
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6532
|
+
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-2634660f"]]);
|
|
6462
6533
|
const _hoisted_1$5 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6463
6534
|
const _hoisted_2$5 = { class: "text-right text-fg-subdued text-sm" };
|
|
6464
|
-
const _sfc_main$
|
|
6535
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
6465
6536
|
__name: "ProgressSingle",
|
|
6466
6537
|
setup(__props) {
|
|
6467
6538
|
var _a;
|
|
@@ -6744,10 +6815,10 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6744
6815
|
}
|
|
6745
6816
|
});
|
|
6746
6817
|
const ProgressSingle_vue_vue_type_style_index_0_scoped_ca99d46c_lang = "";
|
|
6747
|
-
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6818
|
+
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-ca99d46c"]]);
|
|
6748
6819
|
const _hoisted_1$4 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6749
6820
|
const _hoisted_2$4 = { class: "text-right text-fg-subdued text-sm" };
|
|
6750
|
-
const _sfc_main$
|
|
6821
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
6751
6822
|
__name: "ProgressTomorrow",
|
|
6752
6823
|
setup(__props) {
|
|
6753
6824
|
var _a;
|
|
@@ -7030,10 +7101,10 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7030
7101
|
}
|
|
7031
7102
|
});
|
|
7032
7103
|
const ProgressTomorrow_vue_vue_type_style_index_0_scoped_41302f2e_lang = "";
|
|
7033
|
-
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7104
|
+
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-41302f2e"]]);
|
|
7034
7105
|
const _hoisted_1$3 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
7035
7106
|
const _hoisted_2$3 = { class: "text-right text-fg-subdued text-sm" };
|
|
7036
|
-
const _sfc_main$
|
|
7107
|
+
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
7037
7108
|
__name: "ProgressYesterday",
|
|
7038
7109
|
setup(__props) {
|
|
7039
7110
|
var _a;
|
|
@@ -7316,8 +7387,8 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7316
7387
|
}
|
|
7317
7388
|
});
|
|
7318
7389
|
const ProgressYesterday_vue_vue_type_style_index_0_scoped_78de8f41_lang = "";
|
|
7319
|
-
const ProgressYesterday = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7320
|
-
const _sfc_main$
|
|
7390
|
+
const ProgressYesterday = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-78de8f41"]]);
|
|
7391
|
+
const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
7321
7392
|
__name: "ProgressNote",
|
|
7322
7393
|
setup(__props) {
|
|
7323
7394
|
var _a;
|
|
@@ -7476,9 +7547,9 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7476
7547
|
}
|
|
7477
7548
|
});
|
|
7478
7549
|
const ProgressNote_vue_vue_type_style_index_0_scoped_cee18889_lang = "";
|
|
7479
|
-
const ProgressNote = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7550
|
+
const ProgressNote = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-cee18889"]]);
|
|
7480
7551
|
const AttendanceModel = personaliaModels.models.AttendanceModel;
|
|
7481
|
-
const _sfc_main$
|
|
7552
|
+
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
7482
7553
|
...{
|
|
7483
7554
|
name: "AttendanceCollection"
|
|
7484
7555
|
},
|
|
@@ -7498,7 +7569,7 @@ const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7498
7569
|
});
|
|
7499
7570
|
const _hoisted_1$2 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
7500
7571
|
const _hoisted_2$2 = { class: "text-right text-fg-subdued text-sm" };
|
|
7501
|
-
const _sfc_main$
|
|
7572
|
+
const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
7502
7573
|
__name: "AttendanceSingle",
|
|
7503
7574
|
setup(__props) {
|
|
7504
7575
|
const {
|
|
@@ -7680,7 +7751,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7680
7751
|
}
|
|
7681
7752
|
});
|
|
7682
7753
|
const AttendanceSingle_vue_vue_type_style_index_0_scoped_0c3c6187_lang = "";
|
|
7683
|
-
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7754
|
+
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-0c3c6187"]]);
|
|
7684
7755
|
const _hoisted_1$1 = {
|
|
7685
7756
|
key: 1,
|
|
7686
7757
|
class: "flex flex-wrap"
|
|
@@ -7702,7 +7773,7 @@ const _hoisted_8$1 = {
|
|
|
7702
7773
|
class: "grid gap-2 sm:grid-cols-2"
|
|
7703
7774
|
};
|
|
7704
7775
|
const _hoisted_9$1 = { class: "text-right text-fg-subdued text-sm" };
|
|
7705
|
-
const _sfc_main$
|
|
7776
|
+
const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
7706
7777
|
__name: "AttendanceStaff",
|
|
7707
7778
|
setup(__props) {
|
|
7708
7779
|
var _a;
|
|
@@ -8082,7 +8153,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
8082
8153
|
}
|
|
8083
8154
|
});
|
|
8084
8155
|
const AttendanceStaff_vue_vue_type_style_index_0_scoped_724535b0_lang = "";
|
|
8085
|
-
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8156
|
+
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-724535b0"]]);
|
|
8086
8157
|
const _hoisted_1 = { class: "flex flex-wrap" };
|
|
8087
8158
|
const _hoisted_2 = { class: "mt-2" };
|
|
8088
8159
|
const _hoisted_3 = { class: "mt-2" };
|
|
@@ -8101,7 +8172,7 @@ const _hoisted_8 = {
|
|
|
8101
8172
|
class: "grid gap-2 sm:grid-cols-2"
|
|
8102
8173
|
};
|
|
8103
8174
|
const _hoisted_9 = { class: "text-right text-fg-subdued text-sm" };
|
|
8104
|
-
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
8175
|
+
const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
8105
8176
|
__name: "AttendanceManager",
|
|
8106
8177
|
setup(__props) {
|
|
8107
8178
|
var _a;
|
|
@@ -8462,80 +8533,241 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
8462
8533
|
}
|
|
8463
8534
|
});
|
|
8464
8535
|
const AttendanceManager_vue_vue_type_style_index_0_scoped_643cca03_lang = "";
|
|
8465
|
-
const AttendanceManager = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-643cca03"]]);
|
|
8536
|
+
const AttendanceManager = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-643cca03"]]);
|
|
8537
|
+
const ProgressAccessModel = personaliaModels.models.ProgressAccessModel;
|
|
8538
|
+
const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
8539
|
+
...{
|
|
8540
|
+
name: "ProgressAccessCollection"
|
|
8541
|
+
},
|
|
8542
|
+
__name: "ProgressAccessCollection",
|
|
8543
|
+
setup(__props) {
|
|
8544
|
+
context.useCollection();
|
|
8545
|
+
return (_ctx, _cache) => {
|
|
8546
|
+
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonCollection), { class: "neu-progress-access-collection" }, {
|
|
8547
|
+
default: vue.withCtx(() => [
|
|
8548
|
+
vue.createVNode(vue.unref(office.OfficeCollectionTable))
|
|
8549
|
+
]),
|
|
8550
|
+
_: 1
|
|
8551
|
+
/* STABLE */
|
|
8552
|
+
});
|
|
8553
|
+
};
|
|
8554
|
+
}
|
|
8555
|
+
});
|
|
8556
|
+
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
8557
|
+
__name: "ProgressAccessSingle",
|
|
8558
|
+
setup(__props) {
|
|
8559
|
+
const {
|
|
8560
|
+
fields,
|
|
8561
|
+
id,
|
|
8562
|
+
initialValues,
|
|
8563
|
+
values,
|
|
8564
|
+
isLoading,
|
|
8565
|
+
isChanged,
|
|
8566
|
+
isReady,
|
|
8567
|
+
isMain,
|
|
8568
|
+
isNew,
|
|
8569
|
+
saveOne,
|
|
8570
|
+
discardChanges
|
|
8571
|
+
} = context.useSingle();
|
|
8572
|
+
return (_ctx, _cache) => {
|
|
8573
|
+
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-access-single" }, {
|
|
8574
|
+
default: vue.withCtx(() => [
|
|
8575
|
+
vue.createVNode(vue.unref(office.OfficeTabs), { "use-url": vue.unref(isMain) }, {
|
|
8576
|
+
default: vue.withCtx(() => [
|
|
8577
|
+
vue.createVNode(vue.unref(office.OfficeTab), {
|
|
8578
|
+
handle: "info",
|
|
8579
|
+
icon: "circle-info",
|
|
8580
|
+
title: "Info"
|
|
8581
|
+
}, {
|
|
8582
|
+
default: vue.withCtx(() => [
|
|
8583
|
+
vue.createVNode(vue.unref(form.NeonForm), {
|
|
8584
|
+
handle: "info",
|
|
8585
|
+
"initial-values": vue.unref(initialValues),
|
|
8586
|
+
"is-loading": vue.unref(isLoading),
|
|
8587
|
+
"is-changed": vue.unref(isChanged),
|
|
8588
|
+
"use-unsaved": "",
|
|
8589
|
+
onCancel: vue.unref(discardChanges),
|
|
8590
|
+
onSubmit: vue.unref(saveOne)
|
|
8591
|
+
}, {
|
|
8592
|
+
default: vue.withCtx(() => [
|
|
8593
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
8594
|
+
modelValue: vue.unref(values),
|
|
8595
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
8596
|
+
field: vue.unref(fields).superviseStaff
|
|
8597
|
+
}, null, 8, ["modelValue", "field"]),
|
|
8598
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
8599
|
+
modelValue: vue.unref(values),
|
|
8600
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
8601
|
+
field: vue.unref(fields).supervisedStaffs
|
|
8602
|
+
}, null, 8, ["modelValue", "field"])
|
|
8603
|
+
]),
|
|
8604
|
+
_: 1
|
|
8605
|
+
/* STABLE */
|
|
8606
|
+
}, 8, ["initial-values", "is-loading", "is-changed", "onCancel", "onSubmit"])
|
|
8607
|
+
]),
|
|
8608
|
+
_: 1
|
|
8609
|
+
/* STABLE */
|
|
8610
|
+
})
|
|
8611
|
+
]),
|
|
8612
|
+
_: 1
|
|
8613
|
+
/* STABLE */
|
|
8614
|
+
}, 8, ["use-url"])
|
|
8615
|
+
]),
|
|
8616
|
+
_: 1
|
|
8617
|
+
/* STABLE */
|
|
8618
|
+
});
|
|
8619
|
+
};
|
|
8620
|
+
}
|
|
8621
|
+
});
|
|
8622
|
+
const ProgressAccessSingle_vue_vue_type_style_index_0_scoped_60f0e0da_lang = "";
|
|
8623
|
+
const ProgressAccessSingle = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-60f0e0da"]]);
|
|
8624
|
+
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
8625
|
+
__name: "ProgressAccessSupervisor",
|
|
8626
|
+
setup(__props) {
|
|
8627
|
+
const {
|
|
8628
|
+
fields,
|
|
8629
|
+
id,
|
|
8630
|
+
initialValues,
|
|
8631
|
+
values,
|
|
8632
|
+
isLoading,
|
|
8633
|
+
isChanged,
|
|
8634
|
+
isReady,
|
|
8635
|
+
isMain,
|
|
8636
|
+
isNew,
|
|
8637
|
+
saveOne,
|
|
8638
|
+
discardChanges
|
|
8639
|
+
} = context.useSingle();
|
|
8640
|
+
return (_ctx, _cache) => {
|
|
8641
|
+
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-access-single" }, {
|
|
8642
|
+
default: vue.withCtx(() => [
|
|
8643
|
+
vue.createVNode(vue.unref(office.OfficeTabs), { "use-url": vue.unref(isMain) }, {
|
|
8644
|
+
default: vue.withCtx(() => [
|
|
8645
|
+
vue.createVNode(vue.unref(office.OfficeTab), {
|
|
8646
|
+
handle: "info",
|
|
8647
|
+
icon: "circle-info",
|
|
8648
|
+
title: "Info"
|
|
8649
|
+
}, {
|
|
8650
|
+
default: vue.withCtx(() => [
|
|
8651
|
+
vue.createVNode(vue.unref(form.NeonForm), {
|
|
8652
|
+
handle: "info",
|
|
8653
|
+
"initial-values": vue.unref(initialValues),
|
|
8654
|
+
"is-loading": vue.unref(isLoading),
|
|
8655
|
+
"is-changed": vue.unref(isChanged),
|
|
8656
|
+
"use-unsaved": "",
|
|
8657
|
+
onCancel: vue.unref(discardChanges),
|
|
8658
|
+
onSubmit: vue.unref(saveOne)
|
|
8659
|
+
}, {
|
|
8660
|
+
default: vue.withCtx(() => [
|
|
8661
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
8662
|
+
modelValue: vue.unref(values),
|
|
8663
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
8664
|
+
field: vue.unref(fields).superviseStaff,
|
|
8665
|
+
"is-disabled": ""
|
|
8666
|
+
}, null, 8, ["modelValue", "field"]),
|
|
8667
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
8668
|
+
modelValue: vue.unref(values),
|
|
8669
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
8670
|
+
field: vue.unref(fields).supervisedStaffs,
|
|
8671
|
+
"is-disabled": ""
|
|
8672
|
+
}, null, 8, ["modelValue", "field"])
|
|
8673
|
+
]),
|
|
8674
|
+
_: 1
|
|
8675
|
+
/* STABLE */
|
|
8676
|
+
}, 8, ["initial-values", "is-loading", "is-changed", "onCancel", "onSubmit"])
|
|
8677
|
+
]),
|
|
8678
|
+
_: 1
|
|
8679
|
+
/* STABLE */
|
|
8680
|
+
})
|
|
8681
|
+
]),
|
|
8682
|
+
_: 1
|
|
8683
|
+
/* STABLE */
|
|
8684
|
+
}, 8, ["use-url"])
|
|
8685
|
+
]),
|
|
8686
|
+
_: 1
|
|
8687
|
+
/* STABLE */
|
|
8688
|
+
});
|
|
8689
|
+
};
|
|
8690
|
+
}
|
|
8691
|
+
});
|
|
8692
|
+
const ProgressAccessSupervisor_vue_vue_type_style_index_0_scoped_54eff340_lang = "";
|
|
8693
|
+
const ProgressAccessSupervisor = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-54eff340"]]);
|
|
8466
8694
|
const components = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
8467
8695
|
__proto__: null,
|
|
8468
|
-
AttendanceCollection: _sfc_main$
|
|
8696
|
+
AttendanceCollection: _sfc_main$6,
|
|
8469
8697
|
AttendanceManager,
|
|
8470
8698
|
AttendanceModel,
|
|
8471
8699
|
AttendanceSingle,
|
|
8472
8700
|
AttendanceStaff,
|
|
8473
8701
|
CheckInAccess,
|
|
8474
|
-
CheckInCollection: _sfc_main$
|
|
8702
|
+
CheckInCollection: _sfc_main$N,
|
|
8475
8703
|
CheckInExternal,
|
|
8476
8704
|
CheckInModel,
|
|
8477
8705
|
CheckInPresenceCollection,
|
|
8478
|
-
CheckInScanError: _sfc_main$
|
|
8479
|
-
CheckInScanSuccess: _sfc_main$
|
|
8706
|
+
CheckInScanError: _sfc_main$Q,
|
|
8707
|
+
CheckInScanSuccess: _sfc_main$O,
|
|
8480
8708
|
CheckInScanner,
|
|
8481
8709
|
CheckInSingle,
|
|
8482
8710
|
NeonTime,
|
|
8483
8711
|
OperasionalIdentitas,
|
|
8484
|
-
PlanCollection: _sfc_main$
|
|
8712
|
+
PlanCollection: _sfc_main$f,
|
|
8485
8713
|
PlanModel,
|
|
8486
8714
|
PlanSingle,
|
|
8487
8715
|
PlanStaff,
|
|
8488
|
-
PlanTypeCollection: _sfc_main$
|
|
8716
|
+
PlanTypeCollection: _sfc_main$h,
|
|
8489
8717
|
PlanTypeModel,
|
|
8490
8718
|
PlanTypeSingle,
|
|
8491
|
-
|
|
8719
|
+
ProgressAccessCollection: _sfc_main$2,
|
|
8720
|
+
ProgressAccessModel,
|
|
8721
|
+
ProgressAccessSingle,
|
|
8722
|
+
ProgressAccessSupervisor,
|
|
8723
|
+
ProgressButton: _sfc_main$c,
|
|
8492
8724
|
ProgressCollection,
|
|
8493
8725
|
ProgressModel,
|
|
8494
8726
|
ProgressNote,
|
|
8495
8727
|
ProgressSingle,
|
|
8496
8728
|
ProgressTomorrow,
|
|
8497
8729
|
ProgressYesterday,
|
|
8498
|
-
ResponsibilityCollection: _sfc_main$
|
|
8730
|
+
ResponsibilityCollection: _sfc_main$n,
|
|
8499
8731
|
ResponsibilityModel,
|
|
8500
8732
|
ResponsibilitySingle,
|
|
8501
8733
|
ResponsibilityStaff,
|
|
8502
|
-
ResponsibilityTypeCollection: _sfc_main$
|
|
8734
|
+
ResponsibilityTypeCollection: _sfc_main$p,
|
|
8503
8735
|
ResponsibilityTypeModel,
|
|
8504
8736
|
ResponsibilityTypeSingle,
|
|
8505
|
-
SituationCollection: _sfc_main$
|
|
8737
|
+
SituationCollection: _sfc_main$I,
|
|
8506
8738
|
SituationModel,
|
|
8507
|
-
SituationSingle: _sfc_main$
|
|
8508
|
-
SituationSupportive: _sfc_main$
|
|
8509
|
-
SituationTypeCollection: _sfc_main$
|
|
8739
|
+
SituationSingle: _sfc_main$H,
|
|
8740
|
+
SituationSupportive: _sfc_main$F,
|
|
8741
|
+
SituationTypeCollection: _sfc_main$E,
|
|
8510
8742
|
SituationTypeModel,
|
|
8511
|
-
SituationTypeSingle: _sfc_main$
|
|
8512
|
-
SituationWork: _sfc_main$
|
|
8513
|
-
StaffCollection: _sfc_main$
|
|
8514
|
-
StaffIdentity: _sfc_main$
|
|
8743
|
+
SituationTypeSingle: _sfc_main$D,
|
|
8744
|
+
SituationWork: _sfc_main$G,
|
|
8745
|
+
StaffCollection: _sfc_main$M,
|
|
8746
|
+
StaffIdentity: _sfc_main$J,
|
|
8515
8747
|
StaffModel,
|
|
8516
8748
|
StaffOperasional,
|
|
8517
8749
|
StaffSingle,
|
|
8518
8750
|
SubmissionAudit,
|
|
8519
|
-
SubmissionCollection: _sfc_main$
|
|
8751
|
+
SubmissionCollection: _sfc_main$y,
|
|
8520
8752
|
SubmissionDecision,
|
|
8521
8753
|
SubmissionFollowUp,
|
|
8522
8754
|
SubmissionModel,
|
|
8523
8755
|
SubmissionSingle,
|
|
8524
8756
|
SubmissionStaff,
|
|
8525
|
-
SubmissionTypeCollection: _sfc_main$
|
|
8757
|
+
SubmissionTypeCollection: _sfc_main$r,
|
|
8526
8758
|
SubmissionTypeModel,
|
|
8527
8759
|
SubmissionTypeSingle,
|
|
8528
8760
|
SubmissionWaitingDecision,
|
|
8529
8761
|
TargetBranch,
|
|
8530
|
-
TargetCollection: _sfc_main$
|
|
8762
|
+
TargetCollection: _sfc_main$k,
|
|
8531
8763
|
TargetModel,
|
|
8532
8764
|
TargetSingle,
|
|
8533
|
-
TaskCollection: _sfc_main$
|
|
8765
|
+
TaskCollection: _sfc_main$B,
|
|
8534
8766
|
TaskModel,
|
|
8535
|
-
TaskSingle: _sfc_main$
|
|
8536
|
-
TaskWork: _sfc_main$
|
|
8537
|
-
TaskWorkButton: _sfc_main$
|
|
8538
|
-
XxxButton: _sfc_main$
|
|
8767
|
+
TaskSingle: _sfc_main$A,
|
|
8768
|
+
TaskWork: _sfc_main$z,
|
|
8769
|
+
TaskWorkButton: _sfc_main$C,
|
|
8770
|
+
XxxButton: _sfc_main$X
|
|
8539
8771
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
8540
8772
|
function registerComponents(app) {
|
|
8541
8773
|
Object.entries(components).forEach(([name, component2]) => {
|
|
@@ -8550,80 +8782,84 @@ const OperasionalInterfacesPlugin = {
|
|
|
8550
8782
|
registerComponents(app);
|
|
8551
8783
|
}
|
|
8552
8784
|
};
|
|
8553
|
-
exports.AttendanceCollection = _sfc_main$
|
|
8785
|
+
exports.AttendanceCollection = _sfc_main$6;
|
|
8554
8786
|
exports.AttendanceManager = AttendanceManager;
|
|
8555
8787
|
exports.AttendanceModel = AttendanceModel;
|
|
8556
8788
|
exports.AttendanceSingle = AttendanceSingle;
|
|
8557
8789
|
exports.AttendanceStaff = AttendanceStaff;
|
|
8558
8790
|
exports.CheckInAccess = CheckInAccess;
|
|
8559
|
-
exports.CheckInCollection = _sfc_main$
|
|
8791
|
+
exports.CheckInCollection = _sfc_main$N;
|
|
8560
8792
|
exports.CheckInExternal = CheckInExternal;
|
|
8561
8793
|
exports.CheckInModel = CheckInModel;
|
|
8562
8794
|
exports.CheckInPresenceCollection = CheckInPresenceCollection;
|
|
8563
|
-
exports.CheckInScanError = _sfc_main$
|
|
8564
|
-
exports.CheckInScanSuccess = _sfc_main$
|
|
8795
|
+
exports.CheckInScanError = _sfc_main$Q;
|
|
8796
|
+
exports.CheckInScanSuccess = _sfc_main$O;
|
|
8565
8797
|
exports.CheckInScanner = CheckInScanner;
|
|
8566
8798
|
exports.CheckInSingle = CheckInSingle;
|
|
8567
8799
|
exports.NOperasional = operasional_types;
|
|
8568
8800
|
exports.NeonTime = NeonTime;
|
|
8569
8801
|
exports.OperasionalIdentitas = OperasionalIdentitas;
|
|
8570
8802
|
exports.OperasionalInterfacesPlugin = OperasionalInterfacesPlugin;
|
|
8571
|
-
exports.PlanCollection = _sfc_main$
|
|
8803
|
+
exports.PlanCollection = _sfc_main$f;
|
|
8572
8804
|
exports.PlanModel = PlanModel;
|
|
8573
8805
|
exports.PlanSingle = PlanSingle;
|
|
8574
8806
|
exports.PlanStaff = PlanStaff;
|
|
8575
|
-
exports.PlanTypeCollection = _sfc_main$
|
|
8807
|
+
exports.PlanTypeCollection = _sfc_main$h;
|
|
8576
8808
|
exports.PlanTypeModel = PlanTypeModel;
|
|
8577
8809
|
exports.PlanTypeSingle = PlanTypeSingle;
|
|
8578
|
-
exports.
|
|
8810
|
+
exports.ProgressAccessCollection = _sfc_main$2;
|
|
8811
|
+
exports.ProgressAccessModel = ProgressAccessModel;
|
|
8812
|
+
exports.ProgressAccessSingle = ProgressAccessSingle;
|
|
8813
|
+
exports.ProgressAccessSupervisor = ProgressAccessSupervisor;
|
|
8814
|
+
exports.ProgressButton = _sfc_main$c;
|
|
8579
8815
|
exports.ProgressCollection = ProgressCollection;
|
|
8580
8816
|
exports.ProgressModel = ProgressModel;
|
|
8581
8817
|
exports.ProgressNote = ProgressNote;
|
|
8582
8818
|
exports.ProgressSingle = ProgressSingle;
|
|
8583
8819
|
exports.ProgressTomorrow = ProgressTomorrow;
|
|
8584
8820
|
exports.ProgressYesterday = ProgressYesterday;
|
|
8585
|
-
exports.ResponsibilityCollection = _sfc_main$
|
|
8821
|
+
exports.ResponsibilityCollection = _sfc_main$n;
|
|
8586
8822
|
exports.ResponsibilityModel = ResponsibilityModel;
|
|
8587
8823
|
exports.ResponsibilitySingle = ResponsibilitySingle;
|
|
8588
8824
|
exports.ResponsibilityStaff = ResponsibilityStaff;
|
|
8589
|
-
exports.ResponsibilityTypeCollection = _sfc_main$
|
|
8825
|
+
exports.ResponsibilityTypeCollection = _sfc_main$p;
|
|
8590
8826
|
exports.ResponsibilityTypeModel = ResponsibilityTypeModel;
|
|
8591
8827
|
exports.ResponsibilityTypeSingle = ResponsibilityTypeSingle;
|
|
8592
8828
|
exports.Schema = graphql;
|
|
8593
|
-
exports.SituationCollection = _sfc_main$
|
|
8829
|
+
exports.SituationCollection = _sfc_main$I;
|
|
8594
8830
|
exports.SituationModel = SituationModel;
|
|
8595
|
-
exports.SituationSingle = _sfc_main$
|
|
8596
|
-
exports.SituationSupportive = _sfc_main$
|
|
8597
|
-
exports.SituationTypeCollection = _sfc_main$
|
|
8831
|
+
exports.SituationSingle = _sfc_main$H;
|
|
8832
|
+
exports.SituationSupportive = _sfc_main$F;
|
|
8833
|
+
exports.SituationTypeCollection = _sfc_main$E;
|
|
8598
8834
|
exports.SituationTypeModel = SituationTypeModel;
|
|
8599
|
-
exports.SituationTypeSingle = _sfc_main$
|
|
8600
|
-
exports.SituationWork = _sfc_main$
|
|
8601
|
-
exports.StaffCollection = _sfc_main$
|
|
8602
|
-
exports.StaffIdentity = _sfc_main$
|
|
8835
|
+
exports.SituationTypeSingle = _sfc_main$D;
|
|
8836
|
+
exports.SituationWork = _sfc_main$G;
|
|
8837
|
+
exports.StaffCollection = _sfc_main$M;
|
|
8838
|
+
exports.StaffIdentity = _sfc_main$J;
|
|
8603
8839
|
exports.StaffModel = StaffModel;
|
|
8604
8840
|
exports.StaffOperasional = StaffOperasional;
|
|
8605
8841
|
exports.StaffSingle = StaffSingle;
|
|
8606
8842
|
exports.SubmissionAudit = SubmissionAudit;
|
|
8607
|
-
exports.SubmissionCollection = _sfc_main$
|
|
8843
|
+
exports.SubmissionCollection = _sfc_main$y;
|
|
8608
8844
|
exports.SubmissionDecision = SubmissionDecision;
|
|
8609
8845
|
exports.SubmissionFollowUp = SubmissionFollowUp;
|
|
8610
8846
|
exports.SubmissionModel = SubmissionModel;
|
|
8611
8847
|
exports.SubmissionSingle = SubmissionSingle;
|
|
8612
8848
|
exports.SubmissionStaff = SubmissionStaff;
|
|
8613
|
-
exports.SubmissionTypeCollection = _sfc_main$
|
|
8849
|
+
exports.SubmissionTypeCollection = _sfc_main$r;
|
|
8614
8850
|
exports.SubmissionTypeModel = SubmissionTypeModel;
|
|
8615
8851
|
exports.SubmissionTypeSingle = SubmissionTypeSingle;
|
|
8616
8852
|
exports.SubmissionWaitingDecision = SubmissionWaitingDecision;
|
|
8617
8853
|
exports.TargetBranch = TargetBranch;
|
|
8618
|
-
exports.TargetCollection = _sfc_main$
|
|
8854
|
+
exports.TargetCollection = _sfc_main$k;
|
|
8619
8855
|
exports.TargetModel = TargetModel;
|
|
8620
8856
|
exports.TargetSingle = TargetSingle;
|
|
8621
|
-
exports.TaskCollection = _sfc_main$
|
|
8857
|
+
exports.TaskCollection = _sfc_main$B;
|
|
8622
8858
|
exports.TaskModel = TaskModel;
|
|
8623
|
-
exports.TaskSingle = _sfc_main$
|
|
8624
|
-
exports.TaskWork = _sfc_main$
|
|
8625
|
-
exports.TaskWorkButton = _sfc_main$
|
|
8626
|
-
exports.XxxButton = _sfc_main$
|
|
8859
|
+
exports.TaskSingle = _sfc_main$A;
|
|
8860
|
+
exports.TaskWork = _sfc_main$z;
|
|
8861
|
+
exports.TaskWorkButton = _sfc_main$C;
|
|
8862
|
+
exports.XxxButton = _sfc_main$X;
|
|
8627
8863
|
exports.bus = bus;
|
|
8628
8864
|
exports.useAttendanceStore = useAttendanceStore;
|
|
8629
8865
|
exports.useOperasional = useOperasional;
|