@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.mjs
CHANGED
|
@@ -31,7 +31,7 @@ import mitt from "mitt";
|
|
|
31
31
|
import { models as models$2 } from "@neutron.co.id/personalia-models";
|
|
32
32
|
import { CatatSketchPad, CatatPaperPad } from "@neon.id/catat-interfaces";
|
|
33
33
|
const _hoisted_1$m = { class: "xxx-button" };
|
|
34
|
-
const _sfc_main$
|
|
34
|
+
const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
35
35
|
...{ name: "XxxButton" },
|
|
36
36
|
__name: "XxxButton",
|
|
37
37
|
props: {
|
|
@@ -53,7 +53,7 @@ const _hoisted_2$g = {
|
|
|
53
53
|
key: 2,
|
|
54
54
|
class: "section"
|
|
55
55
|
};
|
|
56
|
-
const _sfc_main$
|
|
56
|
+
const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
57
57
|
...{ name: "OperasionalIdentitas" },
|
|
58
58
|
__name: "OperasionalIdentitas",
|
|
59
59
|
props: {
|
|
@@ -409,7 +409,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
409
409
|
}
|
|
410
410
|
return target;
|
|
411
411
|
};
|
|
412
|
-
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
412
|
+
const OperasionalIdentitas = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-355c8370"]]);
|
|
413
413
|
dayjs.extend(durationPlugin);
|
|
414
414
|
dayjs.extend(relativeTimePlugin);
|
|
415
415
|
dayjs.extend(advancedFormat);
|
|
@@ -435,7 +435,7 @@ const _hoisted_2$f = /* @__PURE__ */ _withScopeId$3(() => /* @__PURE__ */ create
|
|
|
435
435
|
const _hoisted_3$7 = [
|
|
436
436
|
_hoisted_2$f
|
|
437
437
|
];
|
|
438
|
-
const _sfc_main$
|
|
438
|
+
const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
439
439
|
__name: "NeonTime",
|
|
440
440
|
props: {
|
|
441
441
|
modelValue: {
|
|
@@ -496,14 +496,16 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
496
496
|
});
|
|
497
497
|
const NeonTime_vue_vue_type_style_index_0_scoped_805321b9_lang = "";
|
|
498
498
|
const NeonTime_vue_vue_type_style_index_1_lang = "";
|
|
499
|
-
const NeonTime = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
499
|
+
const NeonTime = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-805321b9"]]);
|
|
500
500
|
const CheckInModel = models$1.CheckInModel;
|
|
501
501
|
const useOperasionalStore = defineStore("neu:operasional", () => {
|
|
502
502
|
const isLoading = ref(false);
|
|
503
503
|
const staff = ref(null);
|
|
504
|
+
const accesses = ref([]);
|
|
504
505
|
return {
|
|
505
506
|
isLoading,
|
|
506
507
|
staff,
|
|
508
|
+
accesses,
|
|
507
509
|
setStaff
|
|
508
510
|
};
|
|
509
511
|
function setStaff(data) {
|
|
@@ -575,11 +577,21 @@ function withOperasional() {
|
|
|
575
577
|
const authStore = useAuthStore();
|
|
576
578
|
const { userId } = storeToRefs(authStore);
|
|
577
579
|
const store = useOperasionalStore();
|
|
578
|
-
const { isLoading, staff } = storeToRefs(store);
|
|
580
|
+
const { isLoading, staff, accesses } = storeToRefs(store);
|
|
581
|
+
const supervisedStaffIds = computed(() => {
|
|
582
|
+
return accesses.value.reduce(
|
|
583
|
+
(ids, access) => {
|
|
584
|
+
return ids.concat(access.supervisedStaffIds || []);
|
|
585
|
+
},
|
|
586
|
+
[]
|
|
587
|
+
);
|
|
588
|
+
});
|
|
579
589
|
const { client } = useClientHandle();
|
|
580
590
|
const context = {
|
|
581
591
|
isLoading,
|
|
582
592
|
staff,
|
|
593
|
+
accesses,
|
|
594
|
+
supervisedStaffIds,
|
|
583
595
|
setStaff: store.setStaff,
|
|
584
596
|
getStaff,
|
|
585
597
|
init
|
|
@@ -606,7 +618,11 @@ function withOperasional() {
|
|
|
606
618
|
userId: 1,
|
|
607
619
|
branch: { id: 1, name: 1 },
|
|
608
620
|
branches: { id: 1, name: 1 },
|
|
609
|
-
note: 1
|
|
621
|
+
note: 1,
|
|
622
|
+
superviseStaffProgressAccesses: {
|
|
623
|
+
id: 1,
|
|
624
|
+
supervisedStaffIds: 1
|
|
625
|
+
}
|
|
610
626
|
}),
|
|
611
627
|
{
|
|
612
628
|
filter: { userId: userId.value },
|
|
@@ -617,7 +633,9 @@ function withOperasional() {
|
|
|
617
633
|
).toPromise();
|
|
618
634
|
const wrapper = (_a = resp.data) == null ? void 0 : _a[StaffModel$1.plural];
|
|
619
635
|
const items = (wrapper == null ? void 0 : wrapper.items) || [];
|
|
620
|
-
|
|
636
|
+
const _staff = items[0];
|
|
637
|
+
staff.value = _staff;
|
|
638
|
+
accesses.value = _staff.superviseStaffProgressAccesses || [];
|
|
621
639
|
}
|
|
622
640
|
}
|
|
623
641
|
const bus = mitt();
|
|
@@ -637,7 +655,7 @@ const _hoisted_5$3 = /* @__PURE__ */ _withScopeId$2(() => /* @__PURE__ */ create
|
|
|
637
655
|
/* HOISTED */
|
|
638
656
|
));
|
|
639
657
|
const _hoisted_6$2 = { class: "end" };
|
|
640
|
-
const _sfc_main$
|
|
658
|
+
const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
641
659
|
...{
|
|
642
660
|
name: "CheckInPresenceCollection"
|
|
643
661
|
},
|
|
@@ -990,9 +1008,9 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
990
1008
|
}
|
|
991
1009
|
});
|
|
992
1010
|
const CheckInPresenceCollection_vue_vue_type_style_index_0_scoped_ee60c24a_lang = "";
|
|
993
|
-
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1011
|
+
const CheckInPresenceCollection = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-ee60c24a"]]);
|
|
994
1012
|
const _hoisted_1$i = { class: "grid gap-4 sm:grid-cols-2" };
|
|
995
|
-
const _sfc_main$
|
|
1013
|
+
const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
996
1014
|
__name: "CheckInSingle",
|
|
997
1015
|
setup(__props) {
|
|
998
1016
|
const {
|
|
@@ -1090,9 +1108,9 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
|
1090
1108
|
}
|
|
1091
1109
|
});
|
|
1092
1110
|
const CheckInSingle_vue_vue_type_style_index_0_scoped_2e2803fb_lang = "";
|
|
1093
|
-
const CheckInSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1111
|
+
const CheckInSingle = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-2e2803fb"]]);
|
|
1094
1112
|
const _hoisted_1$h = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1095
|
-
const _sfc_main$
|
|
1113
|
+
const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
1096
1114
|
__name: "CheckInExternal",
|
|
1097
1115
|
setup(__props) {
|
|
1098
1116
|
const {
|
|
@@ -1205,7 +1223,7 @@ const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
|
1205
1223
|
}
|
|
1206
1224
|
});
|
|
1207
1225
|
const CheckInExternal_vue_vue_type_style_index_0_scoped_dcdbc71a_lang = "";
|
|
1208
|
-
const CheckInExternal = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1226
|
+
const CheckInExternal = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-dcdbc71a"]]);
|
|
1209
1227
|
const _withScopeId$1 = (n) => (pushScopeId("data-v-d23b6de5"), n = n(), popScopeId(), n);
|
|
1210
1228
|
const _hoisted_1$g = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ createElementVNode(
|
|
1211
1229
|
"h4",
|
|
@@ -1225,7 +1243,7 @@ const _hoisted_2$d = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ create
|
|
|
1225
1243
|
-1
|
|
1226
1244
|
/* HOISTED */
|
|
1227
1245
|
));
|
|
1228
|
-
const _sfc_main$
|
|
1246
|
+
const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
1229
1247
|
__name: "CheckInAccess",
|
|
1230
1248
|
emits: ["close"],
|
|
1231
1249
|
setup(__props) {
|
|
@@ -1278,9 +1296,9 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
1278
1296
|
}
|
|
1279
1297
|
});
|
|
1280
1298
|
const CheckInAccess_vue_vue_type_style_index_0_scoped_d23b6de5_lang = "";
|
|
1281
|
-
const CheckInAccess = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1299
|
+
const CheckInAccess = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["__scopeId", "data-v-d23b6de5"]]);
|
|
1282
1300
|
const _hoisted_1$f = { class: "buttons" };
|
|
1283
|
-
const _sfc_main$
|
|
1301
|
+
const _sfc_main$Q = /* @__PURE__ */ defineComponent({
|
|
1284
1302
|
__name: "CheckInScanError",
|
|
1285
1303
|
setup(__props) {
|
|
1286
1304
|
const attendanceStore = useAttendanceStore();
|
|
@@ -1344,7 +1362,7 @@ const _hoisted_2$c = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ createEl
|
|
|
1344
1362
|
));
|
|
1345
1363
|
const _hoisted_3$5 = ["onClick"];
|
|
1346
1364
|
const _hoisted_4$3 = { class: "mr-2 text-sm" };
|
|
1347
|
-
const _sfc_main$
|
|
1365
|
+
const _sfc_main$P = /* @__PURE__ */ defineComponent({
|
|
1348
1366
|
__name: "CheckInScanner",
|
|
1349
1367
|
emits: ["start", "stop", "scanned", "close"],
|
|
1350
1368
|
setup(__props, { emit }) {
|
|
@@ -1526,7 +1544,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
1526
1544
|
}
|
|
1527
1545
|
});
|
|
1528
1546
|
const CheckInScanner_vue_vue_type_style_index_0_scoped_ef426ef3_lang = "";
|
|
1529
|
-
const CheckInScanner = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1547
|
+
const CheckInScanner = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-ef426ef3"]]);
|
|
1530
1548
|
const _hoisted_1$d = /* @__PURE__ */ createElementVNode(
|
|
1531
1549
|
"h3",
|
|
1532
1550
|
{ align: "center" },
|
|
@@ -1534,7 +1552,7 @@ const _hoisted_1$d = /* @__PURE__ */ createElementVNode(
|
|
|
1534
1552
|
-1
|
|
1535
1553
|
/* HOISTED */
|
|
1536
1554
|
);
|
|
1537
|
-
const _sfc_main$
|
|
1555
|
+
const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
1538
1556
|
__name: "CheckInScanSuccess",
|
|
1539
1557
|
emits: ["close"],
|
|
1540
1558
|
setup(__props) {
|
|
@@ -1566,7 +1584,7 @@ const _sfc_main$L = /* @__PURE__ */ defineComponent({
|
|
|
1566
1584
|
};
|
|
1567
1585
|
}
|
|
1568
1586
|
});
|
|
1569
|
-
const _sfc_main$
|
|
1587
|
+
const _sfc_main$N = /* @__PURE__ */ defineComponent({
|
|
1570
1588
|
...{
|
|
1571
1589
|
name: "CheckInCollection"
|
|
1572
1590
|
},
|
|
@@ -1585,7 +1603,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
1585
1603
|
}
|
|
1586
1604
|
});
|
|
1587
1605
|
const StaffModel = models$2.StaffModel;
|
|
1588
|
-
const _sfc_main$
|
|
1606
|
+
const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
1589
1607
|
...{
|
|
1590
1608
|
name: "StaffCollection"
|
|
1591
1609
|
},
|
|
@@ -1605,7 +1623,7 @@ const _sfc_main$J = /* @__PURE__ */ defineComponent({
|
|
|
1605
1623
|
});
|
|
1606
1624
|
const _hoisted_1$c = { class: "grid gap-4 sm:grid-cols-[3fr_1fr]" };
|
|
1607
1625
|
const _hoisted_2$b = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1608
|
-
const _sfc_main$
|
|
1626
|
+
const _sfc_main$L = /* @__PURE__ */ defineComponent({
|
|
1609
1627
|
__name: "StaffSingle",
|
|
1610
1628
|
setup(__props) {
|
|
1611
1629
|
const {
|
|
@@ -1685,7 +1703,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
1685
1703
|
title: "Identitas"
|
|
1686
1704
|
}, {
|
|
1687
1705
|
default: withCtx(() => [
|
|
1688
|
-
createVNode(unref(_sfc_main$
|
|
1706
|
+
createVNode(unref(_sfc_main$J))
|
|
1689
1707
|
]),
|
|
1690
1708
|
_: 1
|
|
1691
1709
|
/* STABLE */
|
|
@@ -1756,10 +1774,10 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
1756
1774
|
}
|
|
1757
1775
|
});
|
|
1758
1776
|
const StaffSingle_vue_vue_type_style_index_0_scoped_0cf4cd99_lang = "";
|
|
1759
|
-
const StaffSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1777
|
+
const StaffSingle = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["__scopeId", "data-v-0cf4cd99"]]);
|
|
1760
1778
|
const _hoisted_1$b = { class: "grid gap-4 sm:grid-cols-[3fr_1fr]" };
|
|
1761
1779
|
const _hoisted_2$a = { class: "grid gap-4 sm:grid-cols-2" };
|
|
1762
|
-
const _sfc_main$
|
|
1780
|
+
const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
1763
1781
|
__name: "StaffOperasional",
|
|
1764
1782
|
setup(__props) {
|
|
1765
1783
|
const {
|
|
@@ -1839,7 +1857,7 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
1839
1857
|
title: "Identitas"
|
|
1840
1858
|
}, {
|
|
1841
1859
|
default: withCtx(() => [
|
|
1842
|
-
createVNode(unref(_sfc_main$
|
|
1860
|
+
createVNode(unref(_sfc_main$J))
|
|
1843
1861
|
]),
|
|
1844
1862
|
_: 1
|
|
1845
1863
|
/* STABLE */
|
|
@@ -1917,8 +1935,8 @@ const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
|
1917
1935
|
}
|
|
1918
1936
|
});
|
|
1919
1937
|
const StaffOperasional_vue_vue_type_style_index_0_scoped_c62cf70a_lang = "";
|
|
1920
|
-
const StaffOperasional = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
1921
|
-
const _sfc_main$
|
|
1938
|
+
const StaffOperasional = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-c62cf70a"]]);
|
|
1939
|
+
const _sfc_main$J = /* @__PURE__ */ defineComponent({
|
|
1922
1940
|
__name: "StaffIdentity",
|
|
1923
1941
|
setup(__props) {
|
|
1924
1942
|
const { values, saveOne, executeOne, syncOne } = useSingle();
|
|
@@ -2003,6 +2021,24 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
2003
2021
|
{ id: "6309c3c2e64a1324b8663dab", name: "Karyawan" },
|
|
2004
2022
|
{ id: "646a42976af710fe3618af9a", name: "Pengawas Pengajuan" },
|
|
2005
2023
|
{ id: "646a43106af710fe3618afca", name: "Pengambil Keputusan" },
|
|
2024
|
+
// OPERASIONAL
|
|
2025
|
+
{
|
|
2026
|
+
id: "64a686ba3fe0bb481faa0f8b",
|
|
2027
|
+
name: "Pengelola Tanggungjawab"
|
|
2028
|
+
},
|
|
2029
|
+
{
|
|
2030
|
+
id: "64a687823fe0bb481faa0fba",
|
|
2031
|
+
name: "Penanggungjawab Cabang"
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
id: "64a687b93fe0bb481faa0fd6",
|
|
2035
|
+
name: "Pengawas Progress"
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
id: "64a687ed3fe0bb481faa0ff2",
|
|
2039
|
+
name: "Pengelola Absensi"
|
|
2040
|
+
},
|
|
2041
|
+
// END OPERASIONAL
|
|
2006
2042
|
{ id: "63e1734b78ae4f8388b1b313", name: "Cabang Pendidikan" },
|
|
2007
2043
|
// { id: '6309c2aae64a1324b8663d96', name: 'Admin Pendidikan' },
|
|
2008
2044
|
{ id: "643f6c0bd760fc7b529d4a5d", name: "Pengelola Pengajar" },
|
|
@@ -2074,7 +2110,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
2074
2110
|
}
|
|
2075
2111
|
});
|
|
2076
2112
|
const SituationModel = models$2.SituationModel;
|
|
2077
|
-
const _sfc_main$
|
|
2113
|
+
const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
2078
2114
|
...{ name: "SituationCollection" },
|
|
2079
2115
|
__name: "SituationCollection",
|
|
2080
2116
|
setup(__props) {
|
|
@@ -2090,7 +2126,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
2090
2126
|
};
|
|
2091
2127
|
}
|
|
2092
2128
|
});
|
|
2093
|
-
const _sfc_main$
|
|
2129
|
+
const _sfc_main$H = /* @__PURE__ */ defineComponent({
|
|
2094
2130
|
__name: "SituationSingle",
|
|
2095
2131
|
setup(__props) {
|
|
2096
2132
|
const {
|
|
@@ -2228,7 +2264,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
2228
2264
|
};
|
|
2229
2265
|
}
|
|
2230
2266
|
});
|
|
2231
|
-
const _sfc_main$
|
|
2267
|
+
const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
2232
2268
|
__name: "SituationWork",
|
|
2233
2269
|
setup(__props) {
|
|
2234
2270
|
const {
|
|
@@ -2409,7 +2445,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
2409
2445
|
};
|
|
2410
2446
|
}
|
|
2411
2447
|
});
|
|
2412
|
-
const _sfc_main$
|
|
2448
|
+
const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
2413
2449
|
...{ name: "SituationSupportive" },
|
|
2414
2450
|
__name: "SituationSupportive",
|
|
2415
2451
|
setup(__props) {
|
|
@@ -2548,7 +2584,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
2548
2584
|
}
|
|
2549
2585
|
});
|
|
2550
2586
|
const SituationTypeModel = models$2.SituationTypeModel;
|
|
2551
|
-
const _sfc_main$
|
|
2587
|
+
const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
2552
2588
|
...{ name: "SituationTypeCollection" },
|
|
2553
2589
|
__name: "SituationTypeCollection",
|
|
2554
2590
|
setup(__props) {
|
|
@@ -2564,7 +2600,7 @@ const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
|
2564
2600
|
};
|
|
2565
2601
|
}
|
|
2566
2602
|
});
|
|
2567
|
-
const _sfc_main$
|
|
2603
|
+
const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
2568
2604
|
__name: "SituationTypeSingle",
|
|
2569
2605
|
setup(__props) {
|
|
2570
2606
|
const {
|
|
@@ -2639,7 +2675,7 @@ const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
|
2639
2675
|
const TaskModel = models$2.TaskModel;
|
|
2640
2676
|
const _hoisted_1$a = { key: 0 };
|
|
2641
2677
|
const _hoisted_2$9 = { key: 1 };
|
|
2642
|
-
const _sfc_main$
|
|
2678
|
+
const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
2643
2679
|
...{ name: "TaskWorkButton" },
|
|
2644
2680
|
__name: "TaskWorkButton",
|
|
2645
2681
|
setup(__props) {
|
|
@@ -2760,7 +2796,7 @@ const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
|
2760
2796
|
};
|
|
2761
2797
|
}
|
|
2762
2798
|
});
|
|
2763
|
-
const _sfc_main$
|
|
2799
|
+
const _sfc_main$B = /* @__PURE__ */ defineComponent({
|
|
2764
2800
|
...{ name: "TaskCollection" },
|
|
2765
2801
|
__name: "TaskCollection",
|
|
2766
2802
|
setup(__props) {
|
|
@@ -2776,7 +2812,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
2776
2812
|
};
|
|
2777
2813
|
}
|
|
2778
2814
|
});
|
|
2779
|
-
const _sfc_main$
|
|
2815
|
+
const _sfc_main$A = /* @__PURE__ */ defineComponent({
|
|
2780
2816
|
__name: "TaskSingle",
|
|
2781
2817
|
setup(__props) {
|
|
2782
2818
|
const {
|
|
@@ -2999,7 +3035,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
2999
3035
|
};
|
|
3000
3036
|
}
|
|
3001
3037
|
});
|
|
3002
|
-
const _sfc_main$
|
|
3038
|
+
const _sfc_main$z = /* @__PURE__ */ defineComponent({
|
|
3003
3039
|
__name: "TaskWork",
|
|
3004
3040
|
setup(__props) {
|
|
3005
3041
|
const {
|
|
@@ -3222,7 +3258,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
3222
3258
|
}
|
|
3223
3259
|
});
|
|
3224
3260
|
const SubmissionModel = models$2.SubmissionModel;
|
|
3225
|
-
const _sfc_main$
|
|
3261
|
+
const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
3226
3262
|
...{
|
|
3227
3263
|
name: "SubmissionCollection"
|
|
3228
3264
|
},
|
|
@@ -3240,7 +3276,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
3240
3276
|
};
|
|
3241
3277
|
}
|
|
3242
3278
|
});
|
|
3243
|
-
const _sfc_main$
|
|
3279
|
+
const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
3244
3280
|
__name: "SubmissionSingle",
|
|
3245
3281
|
setup(__props) {
|
|
3246
3282
|
const {
|
|
@@ -3438,8 +3474,8 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
3438
3474
|
}
|
|
3439
3475
|
});
|
|
3440
3476
|
const SubmissionSingle_vue_vue_type_style_index_0_scoped_db121b49_lang = "";
|
|
3441
|
-
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3442
|
-
const _sfc_main$
|
|
3477
|
+
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-db121b49"]]);
|
|
3478
|
+
const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
3443
3479
|
__name: "SubmissionStaff",
|
|
3444
3480
|
setup(__props) {
|
|
3445
3481
|
var _a;
|
|
@@ -3723,8 +3759,8 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
3723
3759
|
}
|
|
3724
3760
|
});
|
|
3725
3761
|
const SubmissionStaff_vue_vue_type_style_index_0_scoped_c971a3c0_lang = "";
|
|
3726
|
-
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3727
|
-
const _sfc_main$
|
|
3762
|
+
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-c971a3c0"]]);
|
|
3763
|
+
const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
3728
3764
|
__name: "SubmissionFollowUp",
|
|
3729
3765
|
setup(__props) {
|
|
3730
3766
|
const {
|
|
@@ -3916,13 +3952,13 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
3916
3952
|
}
|
|
3917
3953
|
});
|
|
3918
3954
|
const SubmissionFollowUp_vue_vue_type_style_index_0_scoped_890dfdf2_lang = "";
|
|
3919
|
-
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3955
|
+
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-890dfdf2"]]);
|
|
3920
3956
|
const _hoisted_1$9 = { class: "flex flex-wrap" };
|
|
3921
3957
|
const _hoisted_2$8 = { class: "mt-2" };
|
|
3922
3958
|
const _hoisted_3$4 = { class: "mt-2" };
|
|
3923
3959
|
const _hoisted_4$2 = { class: "mt-2" };
|
|
3924
3960
|
const _hoisted_5$2 = { class: "mt-2" };
|
|
3925
|
-
const _sfc_main$
|
|
3961
|
+
const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
3926
3962
|
__name: "SubmissionAudit",
|
|
3927
3963
|
setup(__props) {
|
|
3928
3964
|
var _a;
|
|
@@ -4294,7 +4330,14 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
4294
4330
|
}
|
|
4295
4331
|
}),
|
|
4296
4332
|
"is-ready": unref(isReady),
|
|
4297
|
-
columns: [
|
|
4333
|
+
columns: [
|
|
4334
|
+
"startedAt",
|
|
4335
|
+
"endedAt",
|
|
4336
|
+
"detail",
|
|
4337
|
+
"staffs",
|
|
4338
|
+
"virtualIsNotes",
|
|
4339
|
+
"accessStaffs"
|
|
4340
|
+
],
|
|
4298
4341
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4299
4342
|
filters: ["staff"],
|
|
4300
4343
|
"initial-values": {
|
|
@@ -4318,12 +4361,12 @@ const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
|
4318
4361
|
};
|
|
4319
4362
|
}
|
|
4320
4363
|
});
|
|
4321
|
-
const
|
|
4322
|
-
const SubmissionAudit = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4364
|
+
const SubmissionAudit_vue_vue_type_style_index_0_scoped_0478202c_lang = "";
|
|
4365
|
+
const SubmissionAudit = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-0478202c"]]);
|
|
4323
4366
|
const _hoisted_1$8 = { class: "flex flex-wrap" };
|
|
4324
4367
|
const _hoisted_2$7 = { class: "mt-2" };
|
|
4325
4368
|
const _hoisted_3$3 = { class: "mt-2" };
|
|
4326
|
-
const _sfc_main$
|
|
4369
|
+
const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
4327
4370
|
__name: "SubmissionDecision",
|
|
4328
4371
|
setup(__props) {
|
|
4329
4372
|
var _a;
|
|
@@ -4659,7 +4702,14 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
4659
4702
|
}
|
|
4660
4703
|
}),
|
|
4661
4704
|
"is-ready": unref(isReady),
|
|
4662
|
-
columns: [
|
|
4705
|
+
columns: [
|
|
4706
|
+
"startedAt",
|
|
4707
|
+
"endedAt",
|
|
4708
|
+
"detail",
|
|
4709
|
+
"staffs",
|
|
4710
|
+
"virtualIsNotes",
|
|
4711
|
+
"accessStaffs"
|
|
4712
|
+
],
|
|
4663
4713
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4664
4714
|
filters: ["staff"],
|
|
4665
4715
|
"initial-values": {
|
|
@@ -4683,12 +4733,12 @@ const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
|
4683
4733
|
};
|
|
4684
4734
|
}
|
|
4685
4735
|
});
|
|
4686
|
-
const
|
|
4687
|
-
const SubmissionDecision = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
4736
|
+
const SubmissionDecision_vue_vue_type_style_index_0_scoped_59b0701c_lang = "";
|
|
4737
|
+
const SubmissionDecision = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-59b0701c"]]);
|
|
4688
4738
|
const _hoisted_1$7 = { class: "flex flex-wrap" };
|
|
4689
4739
|
const _hoisted_2$6 = { class: "mt-2" };
|
|
4690
4740
|
const _hoisted_3$2 = { class: "mt-2" };
|
|
4691
|
-
const _sfc_main$
|
|
4741
|
+
const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
4692
4742
|
__name: "SubmissionWaitingDecision",
|
|
4693
4743
|
setup(__props) {
|
|
4694
4744
|
var _a;
|
|
@@ -5014,9 +5064,9 @@ const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
|
5014
5064
|
}
|
|
5015
5065
|
});
|
|
5016
5066
|
const SubmissionWaitingDecision_vue_vue_type_style_index_0_scoped_1f81ee74_lang = "";
|
|
5017
|
-
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5067
|
+
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-1f81ee74"]]);
|
|
5018
5068
|
const SubmissionTypeModel = models$2.SubmissionTypeModel;
|
|
5019
|
-
const _sfc_main$
|
|
5069
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
5020
5070
|
...{
|
|
5021
5071
|
name: "SubmissionTypeCollection"
|
|
5022
5072
|
},
|
|
@@ -5034,7 +5084,7 @@ const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
|
5034
5084
|
};
|
|
5035
5085
|
}
|
|
5036
5086
|
});
|
|
5037
|
-
const _sfc_main$
|
|
5087
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
5038
5088
|
__name: "SubmissionTypeSingle",
|
|
5039
5089
|
setup(__props) {
|
|
5040
5090
|
const {
|
|
@@ -5100,9 +5150,9 @@ const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
|
5100
5150
|
}
|
|
5101
5151
|
});
|
|
5102
5152
|
const SubmissionTypeSingle_vue_vue_type_style_index_0_scoped_2b7e18ba_lang = "";
|
|
5103
|
-
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5153
|
+
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-2b7e18ba"]]);
|
|
5104
5154
|
const ResponsibilityTypeModel = models$2.ResponsibilityTypeModel;
|
|
5105
|
-
const _sfc_main$
|
|
5155
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
5106
5156
|
...{
|
|
5107
5157
|
name: "ResponsibilityTypeCollection"
|
|
5108
5158
|
},
|
|
@@ -5120,7 +5170,7 @@ const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
|
5120
5170
|
};
|
|
5121
5171
|
}
|
|
5122
5172
|
});
|
|
5123
|
-
const _sfc_main$
|
|
5173
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
5124
5174
|
__name: "ResponsibilityTypeSingle",
|
|
5125
5175
|
setup(__props) {
|
|
5126
5176
|
const {
|
|
@@ -5186,9 +5236,9 @@ const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
|
5186
5236
|
}
|
|
5187
5237
|
});
|
|
5188
5238
|
const ResponsibilityTypeSingle_vue_vue_type_style_index_0_scoped_3df9fac1_lang = "";
|
|
5189
|
-
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5239
|
+
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-3df9fac1"]]);
|
|
5190
5240
|
const ResponsibilityModel = models$2.ResponsibilityModel;
|
|
5191
|
-
const _sfc_main$
|
|
5241
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
5192
5242
|
...{
|
|
5193
5243
|
name: "ResponsibilityCollection"
|
|
5194
5244
|
},
|
|
@@ -5206,7 +5256,7 @@ const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
|
5206
5256
|
};
|
|
5207
5257
|
}
|
|
5208
5258
|
});
|
|
5209
|
-
const _sfc_main$
|
|
5259
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
5210
5260
|
__name: "ResponsibilitySingle",
|
|
5211
5261
|
setup(__props) {
|
|
5212
5262
|
const {
|
|
@@ -5344,7 +5394,14 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
5344
5394
|
}
|
|
5345
5395
|
}),
|
|
5346
5396
|
"is-ready": unref(isReady),
|
|
5347
|
-
columns: [
|
|
5397
|
+
columns: [
|
|
5398
|
+
"startedAt",
|
|
5399
|
+
"endedAt",
|
|
5400
|
+
"detail",
|
|
5401
|
+
"staffs",
|
|
5402
|
+
"virtualIsNotes",
|
|
5403
|
+
"accessStaffs"
|
|
5404
|
+
],
|
|
5348
5405
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5349
5406
|
"initial-values": {
|
|
5350
5407
|
responsibilityIds: unref(id),
|
|
@@ -5369,9 +5426,9 @@ const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
|
5369
5426
|
};
|
|
5370
5427
|
}
|
|
5371
5428
|
});
|
|
5372
|
-
const
|
|
5373
|
-
const ResponsibilitySingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5374
|
-
const _sfc_main$
|
|
5429
|
+
const ResponsibilitySingle_vue_vue_type_style_index_0_scoped_3ec4a018_lang = "";
|
|
5430
|
+
const ResponsibilitySingle = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-3ec4a018"]]);
|
|
5431
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
5375
5432
|
__name: "ResponsibilityStaff",
|
|
5376
5433
|
setup(__props) {
|
|
5377
5434
|
const {
|
|
@@ -5501,7 +5558,14 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
5501
5558
|
}
|
|
5502
5559
|
}),
|
|
5503
5560
|
"is-ready": unref(isReady),
|
|
5504
|
-
columns: [
|
|
5561
|
+
columns: [
|
|
5562
|
+
"startedAt",
|
|
5563
|
+
"endedAt",
|
|
5564
|
+
"detail",
|
|
5565
|
+
"staffs",
|
|
5566
|
+
"virtualIsNotes",
|
|
5567
|
+
"accessStaffs"
|
|
5568
|
+
],
|
|
5505
5569
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5506
5570
|
"initial-values": {
|
|
5507
5571
|
responsibilityIds: unref(id),
|
|
@@ -5526,10 +5590,10 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
5526
5590
|
};
|
|
5527
5591
|
}
|
|
5528
5592
|
});
|
|
5529
|
-
const
|
|
5530
|
-
const ResponsibilityStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5593
|
+
const ResponsibilityStaff_vue_vue_type_style_index_0_scoped_a1ec66a6_lang = "";
|
|
5594
|
+
const ResponsibilityStaff = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-a1ec66a6"]]);
|
|
5531
5595
|
const TargetModel = models$2.TargetModel;
|
|
5532
|
-
const _sfc_main$
|
|
5596
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
5533
5597
|
...{
|
|
5534
5598
|
name: "TargetCollection"
|
|
5535
5599
|
},
|
|
@@ -5547,7 +5611,7 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
5547
5611
|
};
|
|
5548
5612
|
}
|
|
5549
5613
|
});
|
|
5550
|
-
const _sfc_main$
|
|
5614
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
5551
5615
|
__name: "TargetSingle",
|
|
5552
5616
|
setup(__props) {
|
|
5553
5617
|
const {
|
|
@@ -5700,8 +5764,8 @@ const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
|
5700
5764
|
}
|
|
5701
5765
|
});
|
|
5702
5766
|
const TargetSingle_vue_vue_type_style_index_0_scoped_c12b8df8_lang = "";
|
|
5703
|
-
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5704
|
-
const _sfc_main$
|
|
5767
|
+
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-c12b8df8"]]);
|
|
5768
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
5705
5769
|
__name: "TargetBranch",
|
|
5706
5770
|
setup(__props) {
|
|
5707
5771
|
const {
|
|
@@ -5854,9 +5918,9 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
5854
5918
|
}
|
|
5855
5919
|
});
|
|
5856
5920
|
const TargetBranch_vue_vue_type_style_index_0_scoped_6a5a6e80_lang = "";
|
|
5857
|
-
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5921
|
+
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6a5a6e80"]]);
|
|
5858
5922
|
const PlanTypeModel = models$2.PlanTypeModel;
|
|
5859
|
-
const _sfc_main$
|
|
5923
|
+
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
5860
5924
|
...{
|
|
5861
5925
|
name: "PlanTypeCollection"
|
|
5862
5926
|
},
|
|
@@ -5874,7 +5938,7 @@ const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
|
5874
5938
|
};
|
|
5875
5939
|
}
|
|
5876
5940
|
});
|
|
5877
|
-
const _sfc_main$
|
|
5941
|
+
const _sfc_main$g = /* @__PURE__ */ defineComponent({
|
|
5878
5942
|
__name: "PlanTypeSingle",
|
|
5879
5943
|
setup(__props) {
|
|
5880
5944
|
const {
|
|
@@ -5995,9 +6059,9 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
5995
6059
|
}
|
|
5996
6060
|
});
|
|
5997
6061
|
const PlanTypeSingle_vue_vue_type_style_index_0_scoped_80d2e1d3_lang = "";
|
|
5998
|
-
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6062
|
+
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-80d2e1d3"]]);
|
|
5999
6063
|
const PlanModel = models$2.PlanModel;
|
|
6000
|
-
const _sfc_main$
|
|
6064
|
+
const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
6001
6065
|
...{
|
|
6002
6066
|
name: "PlanCollection"
|
|
6003
6067
|
},
|
|
@@ -6015,7 +6079,7 @@ const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
|
6015
6079
|
};
|
|
6016
6080
|
}
|
|
6017
6081
|
});
|
|
6018
|
-
const _sfc_main$
|
|
6082
|
+
const _sfc_main$e = /* @__PURE__ */ defineComponent({
|
|
6019
6083
|
__name: "PlanSingle",
|
|
6020
6084
|
setup(__props) {
|
|
6021
6085
|
const {
|
|
@@ -6167,7 +6231,14 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
6167
6231
|
}
|
|
6168
6232
|
}),
|
|
6169
6233
|
"is-ready": unref(isReady),
|
|
6170
|
-
columns: [
|
|
6234
|
+
columns: [
|
|
6235
|
+
"startedAt",
|
|
6236
|
+
"endedAt",
|
|
6237
|
+
"detail",
|
|
6238
|
+
"staffs",
|
|
6239
|
+
"virtualIsNotes",
|
|
6240
|
+
"accessStaffs"
|
|
6241
|
+
],
|
|
6171
6242
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
6172
6243
|
filters: ["staff"],
|
|
6173
6244
|
"initial-values": {
|
|
@@ -6190,9 +6261,9 @@ const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
|
6190
6261
|
};
|
|
6191
6262
|
}
|
|
6192
6263
|
});
|
|
6193
|
-
const
|
|
6194
|
-
const PlanSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6195
|
-
const _sfc_main$
|
|
6264
|
+
const PlanSingle_vue_vue_type_style_index_0_scoped_a39127c2_lang = "";
|
|
6265
|
+
const PlanSingle = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-a39127c2"]]);
|
|
6266
|
+
const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
6196
6267
|
__name: "PlanStaff",
|
|
6197
6268
|
setup(__props) {
|
|
6198
6269
|
const {
|
|
@@ -6344,10 +6415,10 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
|
6344
6415
|
}
|
|
6345
6416
|
});
|
|
6346
6417
|
const PlanStaff_vue_vue_type_style_index_0_scoped_aa8de6da_lang = "";
|
|
6347
|
-
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6418
|
+
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-aa8de6da"]]);
|
|
6348
6419
|
const ProgressModel = models$2.ProgressModel;
|
|
6349
6420
|
const _hoisted_1$6 = { class: "flex flex-wrap" };
|
|
6350
|
-
const _sfc_main$
|
|
6421
|
+
const _sfc_main$c = /* @__PURE__ */ defineComponent({
|
|
6351
6422
|
...{ name: "ProgressButton" },
|
|
6352
6423
|
__name: "ProgressButton",
|
|
6353
6424
|
setup(__props) {
|
|
@@ -6393,7 +6464,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
6393
6464
|
};
|
|
6394
6465
|
}
|
|
6395
6466
|
});
|
|
6396
|
-
const _sfc_main$
|
|
6467
|
+
const _sfc_main$b = /* @__PURE__ */ defineComponent({
|
|
6397
6468
|
...{
|
|
6398
6469
|
name: "ProgressCollection"
|
|
6399
6470
|
},
|
|
@@ -6456,10 +6527,10 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
6456
6527
|
}
|
|
6457
6528
|
});
|
|
6458
6529
|
const ProgressCollection_vue_vue_type_style_index_0_scoped_2634660f_lang = "";
|
|
6459
|
-
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6530
|
+
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-2634660f"]]);
|
|
6460
6531
|
const _hoisted_1$5 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6461
6532
|
const _hoisted_2$5 = { class: "text-right text-fg-subdued text-sm" };
|
|
6462
|
-
const _sfc_main$
|
|
6533
|
+
const _sfc_main$a = /* @__PURE__ */ defineComponent({
|
|
6463
6534
|
__name: "ProgressSingle",
|
|
6464
6535
|
setup(__props) {
|
|
6465
6536
|
var _a;
|
|
@@ -6742,10 +6813,10 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
|
6742
6813
|
}
|
|
6743
6814
|
});
|
|
6744
6815
|
const ProgressSingle_vue_vue_type_style_index_0_scoped_ca99d46c_lang = "";
|
|
6745
|
-
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6816
|
+
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-ca99d46c"]]);
|
|
6746
6817
|
const _hoisted_1$4 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6747
6818
|
const _hoisted_2$4 = { class: "text-right text-fg-subdued text-sm" };
|
|
6748
|
-
const _sfc_main$
|
|
6819
|
+
const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
6749
6820
|
__name: "ProgressTomorrow",
|
|
6750
6821
|
setup(__props) {
|
|
6751
6822
|
var _a;
|
|
@@ -7028,10 +7099,10 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
|
7028
7099
|
}
|
|
7029
7100
|
});
|
|
7030
7101
|
const ProgressTomorrow_vue_vue_type_style_index_0_scoped_41302f2e_lang = "";
|
|
7031
|
-
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7102
|
+
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-41302f2e"]]);
|
|
7032
7103
|
const _hoisted_1$3 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
7033
7104
|
const _hoisted_2$3 = { class: "text-right text-fg-subdued text-sm" };
|
|
7034
|
-
const _sfc_main$
|
|
7105
|
+
const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
7035
7106
|
__name: "ProgressYesterday",
|
|
7036
7107
|
setup(__props) {
|
|
7037
7108
|
var _a;
|
|
@@ -7314,8 +7385,8 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
|
7314
7385
|
}
|
|
7315
7386
|
});
|
|
7316
7387
|
const ProgressYesterday_vue_vue_type_style_index_0_scoped_78de8f41_lang = "";
|
|
7317
|
-
const ProgressYesterday = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7318
|
-
const _sfc_main$
|
|
7388
|
+
const ProgressYesterday = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-78de8f41"]]);
|
|
7389
|
+
const _sfc_main$7 = /* @__PURE__ */ defineComponent({
|
|
7319
7390
|
__name: "ProgressNote",
|
|
7320
7391
|
setup(__props) {
|
|
7321
7392
|
var _a;
|
|
@@ -7474,9 +7545,9 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
|
7474
7545
|
}
|
|
7475
7546
|
});
|
|
7476
7547
|
const ProgressNote_vue_vue_type_style_index_0_scoped_cee18889_lang = "";
|
|
7477
|
-
const ProgressNote = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7548
|
+
const ProgressNote = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-cee18889"]]);
|
|
7478
7549
|
const AttendanceModel = models$2.AttendanceModel;
|
|
7479
|
-
const _sfc_main$
|
|
7550
|
+
const _sfc_main$6 = /* @__PURE__ */ defineComponent({
|
|
7480
7551
|
...{
|
|
7481
7552
|
name: "AttendanceCollection"
|
|
7482
7553
|
},
|
|
@@ -7496,7 +7567,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
|
7496
7567
|
});
|
|
7497
7568
|
const _hoisted_1$2 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
7498
7569
|
const _hoisted_2$2 = { class: "text-right text-fg-subdued text-sm" };
|
|
7499
|
-
const _sfc_main$
|
|
7570
|
+
const _sfc_main$5 = /* @__PURE__ */ defineComponent({
|
|
7500
7571
|
__name: "AttendanceSingle",
|
|
7501
7572
|
setup(__props) {
|
|
7502
7573
|
const {
|
|
@@ -7678,7 +7749,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
7678
7749
|
}
|
|
7679
7750
|
});
|
|
7680
7751
|
const AttendanceSingle_vue_vue_type_style_index_0_scoped_0c3c6187_lang = "";
|
|
7681
|
-
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7752
|
+
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-0c3c6187"]]);
|
|
7682
7753
|
const _hoisted_1$1 = {
|
|
7683
7754
|
key: 1,
|
|
7684
7755
|
class: "flex flex-wrap"
|
|
@@ -7700,7 +7771,7 @@ const _hoisted_8$1 = {
|
|
|
7700
7771
|
class: "grid gap-2 sm:grid-cols-2"
|
|
7701
7772
|
};
|
|
7702
7773
|
const _hoisted_9$1 = { class: "text-right text-fg-subdued text-sm" };
|
|
7703
|
-
const _sfc_main$
|
|
7774
|
+
const _sfc_main$4 = /* @__PURE__ */ defineComponent({
|
|
7704
7775
|
__name: "AttendanceStaff",
|
|
7705
7776
|
setup(__props) {
|
|
7706
7777
|
var _a;
|
|
@@ -8080,7 +8151,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
8080
8151
|
}
|
|
8081
8152
|
});
|
|
8082
8153
|
const AttendanceStaff_vue_vue_type_style_index_0_scoped_724535b0_lang = "";
|
|
8083
|
-
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8154
|
+
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-724535b0"]]);
|
|
8084
8155
|
const _hoisted_1 = { class: "flex flex-wrap" };
|
|
8085
8156
|
const _hoisted_2 = { class: "mt-2" };
|
|
8086
8157
|
const _hoisted_3 = { class: "mt-2" };
|
|
@@ -8099,7 +8170,7 @@ const _hoisted_8 = {
|
|
|
8099
8170
|
class: "grid gap-2 sm:grid-cols-2"
|
|
8100
8171
|
};
|
|
8101
8172
|
const _hoisted_9 = { class: "text-right text-fg-subdued text-sm" };
|
|
8102
|
-
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8173
|
+
const _sfc_main$3 = /* @__PURE__ */ defineComponent({
|
|
8103
8174
|
__name: "AttendanceManager",
|
|
8104
8175
|
setup(__props) {
|
|
8105
8176
|
var _a;
|
|
@@ -8460,80 +8531,241 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
8460
8531
|
}
|
|
8461
8532
|
});
|
|
8462
8533
|
const AttendanceManager_vue_vue_type_style_index_0_scoped_643cca03_lang = "";
|
|
8463
|
-
const AttendanceManager = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-643cca03"]]);
|
|
8534
|
+
const AttendanceManager = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-643cca03"]]);
|
|
8535
|
+
const ProgressAccessModel = models$2.ProgressAccessModel;
|
|
8536
|
+
const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
8537
|
+
...{
|
|
8538
|
+
name: "ProgressAccessCollection"
|
|
8539
|
+
},
|
|
8540
|
+
__name: "ProgressAccessCollection",
|
|
8541
|
+
setup(__props) {
|
|
8542
|
+
useCollection();
|
|
8543
|
+
return (_ctx, _cache) => {
|
|
8544
|
+
return openBlock(), createBlock(unref(NeonCollection), { class: "neu-progress-access-collection" }, {
|
|
8545
|
+
default: withCtx(() => [
|
|
8546
|
+
createVNode(unref(OfficeCollectionTable))
|
|
8547
|
+
]),
|
|
8548
|
+
_: 1
|
|
8549
|
+
/* STABLE */
|
|
8550
|
+
});
|
|
8551
|
+
};
|
|
8552
|
+
}
|
|
8553
|
+
});
|
|
8554
|
+
const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
8555
|
+
__name: "ProgressAccessSingle",
|
|
8556
|
+
setup(__props) {
|
|
8557
|
+
const {
|
|
8558
|
+
fields,
|
|
8559
|
+
id,
|
|
8560
|
+
initialValues,
|
|
8561
|
+
values,
|
|
8562
|
+
isLoading,
|
|
8563
|
+
isChanged,
|
|
8564
|
+
isReady,
|
|
8565
|
+
isMain,
|
|
8566
|
+
isNew,
|
|
8567
|
+
saveOne,
|
|
8568
|
+
discardChanges
|
|
8569
|
+
} = useSingle();
|
|
8570
|
+
return (_ctx, _cache) => {
|
|
8571
|
+
return openBlock(), createBlock(unref(NeonSingle), { class: "neu-progress-access-single" }, {
|
|
8572
|
+
default: withCtx(() => [
|
|
8573
|
+
createVNode(unref(OfficeTabs), { "use-url": unref(isMain) }, {
|
|
8574
|
+
default: withCtx(() => [
|
|
8575
|
+
createVNode(unref(OfficeTab), {
|
|
8576
|
+
handle: "info",
|
|
8577
|
+
icon: "circle-info",
|
|
8578
|
+
title: "Info"
|
|
8579
|
+
}, {
|
|
8580
|
+
default: withCtx(() => [
|
|
8581
|
+
createVNode(unref(NeonForm), {
|
|
8582
|
+
handle: "info",
|
|
8583
|
+
"initial-values": unref(initialValues),
|
|
8584
|
+
"is-loading": unref(isLoading),
|
|
8585
|
+
"is-changed": unref(isChanged),
|
|
8586
|
+
"use-unsaved": "",
|
|
8587
|
+
onCancel: unref(discardChanges),
|
|
8588
|
+
onSubmit: unref(saveOne)
|
|
8589
|
+
}, {
|
|
8590
|
+
default: withCtx(() => [
|
|
8591
|
+
createVNode(unref(OfficeRelation), {
|
|
8592
|
+
modelValue: unref(values),
|
|
8593
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(values) ? values.value = $event : null),
|
|
8594
|
+
field: unref(fields).superviseStaff
|
|
8595
|
+
}, null, 8, ["modelValue", "field"]),
|
|
8596
|
+
createVNode(unref(OfficeRelation), {
|
|
8597
|
+
modelValue: unref(values),
|
|
8598
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(values) ? values.value = $event : null),
|
|
8599
|
+
field: unref(fields).supervisedStaffs
|
|
8600
|
+
}, null, 8, ["modelValue", "field"])
|
|
8601
|
+
]),
|
|
8602
|
+
_: 1
|
|
8603
|
+
/* STABLE */
|
|
8604
|
+
}, 8, ["initial-values", "is-loading", "is-changed", "onCancel", "onSubmit"])
|
|
8605
|
+
]),
|
|
8606
|
+
_: 1
|
|
8607
|
+
/* STABLE */
|
|
8608
|
+
})
|
|
8609
|
+
]),
|
|
8610
|
+
_: 1
|
|
8611
|
+
/* STABLE */
|
|
8612
|
+
}, 8, ["use-url"])
|
|
8613
|
+
]),
|
|
8614
|
+
_: 1
|
|
8615
|
+
/* STABLE */
|
|
8616
|
+
});
|
|
8617
|
+
};
|
|
8618
|
+
}
|
|
8619
|
+
});
|
|
8620
|
+
const ProgressAccessSingle_vue_vue_type_style_index_0_scoped_60f0e0da_lang = "";
|
|
8621
|
+
const ProgressAccessSingle = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-60f0e0da"]]);
|
|
8622
|
+
const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
8623
|
+
__name: "ProgressAccessSupervisor",
|
|
8624
|
+
setup(__props) {
|
|
8625
|
+
const {
|
|
8626
|
+
fields,
|
|
8627
|
+
id,
|
|
8628
|
+
initialValues,
|
|
8629
|
+
values,
|
|
8630
|
+
isLoading,
|
|
8631
|
+
isChanged,
|
|
8632
|
+
isReady,
|
|
8633
|
+
isMain,
|
|
8634
|
+
isNew,
|
|
8635
|
+
saveOne,
|
|
8636
|
+
discardChanges
|
|
8637
|
+
} = useSingle();
|
|
8638
|
+
return (_ctx, _cache) => {
|
|
8639
|
+
return openBlock(), createBlock(unref(NeonSingle), { class: "neu-progress-access-single" }, {
|
|
8640
|
+
default: withCtx(() => [
|
|
8641
|
+
createVNode(unref(OfficeTabs), { "use-url": unref(isMain) }, {
|
|
8642
|
+
default: withCtx(() => [
|
|
8643
|
+
createVNode(unref(OfficeTab), {
|
|
8644
|
+
handle: "info",
|
|
8645
|
+
icon: "circle-info",
|
|
8646
|
+
title: "Info"
|
|
8647
|
+
}, {
|
|
8648
|
+
default: withCtx(() => [
|
|
8649
|
+
createVNode(unref(NeonForm), {
|
|
8650
|
+
handle: "info",
|
|
8651
|
+
"initial-values": unref(initialValues),
|
|
8652
|
+
"is-loading": unref(isLoading),
|
|
8653
|
+
"is-changed": unref(isChanged),
|
|
8654
|
+
"use-unsaved": "",
|
|
8655
|
+
onCancel: unref(discardChanges),
|
|
8656
|
+
onSubmit: unref(saveOne)
|
|
8657
|
+
}, {
|
|
8658
|
+
default: withCtx(() => [
|
|
8659
|
+
createVNode(unref(OfficeRelation), {
|
|
8660
|
+
modelValue: unref(values),
|
|
8661
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => isRef(values) ? values.value = $event : null),
|
|
8662
|
+
field: unref(fields).superviseStaff,
|
|
8663
|
+
"is-disabled": ""
|
|
8664
|
+
}, null, 8, ["modelValue", "field"]),
|
|
8665
|
+
createVNode(unref(OfficeRelation), {
|
|
8666
|
+
modelValue: unref(values),
|
|
8667
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(values) ? values.value = $event : null),
|
|
8668
|
+
field: unref(fields).supervisedStaffs,
|
|
8669
|
+
"is-disabled": ""
|
|
8670
|
+
}, null, 8, ["modelValue", "field"])
|
|
8671
|
+
]),
|
|
8672
|
+
_: 1
|
|
8673
|
+
/* STABLE */
|
|
8674
|
+
}, 8, ["initial-values", "is-loading", "is-changed", "onCancel", "onSubmit"])
|
|
8675
|
+
]),
|
|
8676
|
+
_: 1
|
|
8677
|
+
/* STABLE */
|
|
8678
|
+
})
|
|
8679
|
+
]),
|
|
8680
|
+
_: 1
|
|
8681
|
+
/* STABLE */
|
|
8682
|
+
}, 8, ["use-url"])
|
|
8683
|
+
]),
|
|
8684
|
+
_: 1
|
|
8685
|
+
/* STABLE */
|
|
8686
|
+
});
|
|
8687
|
+
};
|
|
8688
|
+
}
|
|
8689
|
+
});
|
|
8690
|
+
const ProgressAccessSupervisor_vue_vue_type_style_index_0_scoped_54eff340_lang = "";
|
|
8691
|
+
const ProgressAccessSupervisor = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-54eff340"]]);
|
|
8464
8692
|
const components = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
8465
8693
|
__proto__: null,
|
|
8466
|
-
AttendanceCollection: _sfc_main$
|
|
8694
|
+
AttendanceCollection: _sfc_main$6,
|
|
8467
8695
|
AttendanceManager,
|
|
8468
8696
|
AttendanceModel,
|
|
8469
8697
|
AttendanceSingle,
|
|
8470
8698
|
AttendanceStaff,
|
|
8471
8699
|
CheckInAccess,
|
|
8472
|
-
CheckInCollection: _sfc_main$
|
|
8700
|
+
CheckInCollection: _sfc_main$N,
|
|
8473
8701
|
CheckInExternal,
|
|
8474
8702
|
CheckInModel,
|
|
8475
8703
|
CheckInPresenceCollection,
|
|
8476
|
-
CheckInScanError: _sfc_main$
|
|
8477
|
-
CheckInScanSuccess: _sfc_main$
|
|
8704
|
+
CheckInScanError: _sfc_main$Q,
|
|
8705
|
+
CheckInScanSuccess: _sfc_main$O,
|
|
8478
8706
|
CheckInScanner,
|
|
8479
8707
|
CheckInSingle,
|
|
8480
8708
|
NeonTime,
|
|
8481
8709
|
OperasionalIdentitas,
|
|
8482
|
-
PlanCollection: _sfc_main$
|
|
8710
|
+
PlanCollection: _sfc_main$f,
|
|
8483
8711
|
PlanModel,
|
|
8484
8712
|
PlanSingle,
|
|
8485
8713
|
PlanStaff,
|
|
8486
|
-
PlanTypeCollection: _sfc_main$
|
|
8714
|
+
PlanTypeCollection: _sfc_main$h,
|
|
8487
8715
|
PlanTypeModel,
|
|
8488
8716
|
PlanTypeSingle,
|
|
8489
|
-
|
|
8717
|
+
ProgressAccessCollection: _sfc_main$2,
|
|
8718
|
+
ProgressAccessModel,
|
|
8719
|
+
ProgressAccessSingle,
|
|
8720
|
+
ProgressAccessSupervisor,
|
|
8721
|
+
ProgressButton: _sfc_main$c,
|
|
8490
8722
|
ProgressCollection,
|
|
8491
8723
|
ProgressModel,
|
|
8492
8724
|
ProgressNote,
|
|
8493
8725
|
ProgressSingle,
|
|
8494
8726
|
ProgressTomorrow,
|
|
8495
8727
|
ProgressYesterday,
|
|
8496
|
-
ResponsibilityCollection: _sfc_main$
|
|
8728
|
+
ResponsibilityCollection: _sfc_main$n,
|
|
8497
8729
|
ResponsibilityModel,
|
|
8498
8730
|
ResponsibilitySingle,
|
|
8499
8731
|
ResponsibilityStaff,
|
|
8500
|
-
ResponsibilityTypeCollection: _sfc_main$
|
|
8732
|
+
ResponsibilityTypeCollection: _sfc_main$p,
|
|
8501
8733
|
ResponsibilityTypeModel,
|
|
8502
8734
|
ResponsibilityTypeSingle,
|
|
8503
|
-
SituationCollection: _sfc_main$
|
|
8735
|
+
SituationCollection: _sfc_main$I,
|
|
8504
8736
|
SituationModel,
|
|
8505
|
-
SituationSingle: _sfc_main$
|
|
8506
|
-
SituationSupportive: _sfc_main$
|
|
8507
|
-
SituationTypeCollection: _sfc_main$
|
|
8737
|
+
SituationSingle: _sfc_main$H,
|
|
8738
|
+
SituationSupportive: _sfc_main$F,
|
|
8739
|
+
SituationTypeCollection: _sfc_main$E,
|
|
8508
8740
|
SituationTypeModel,
|
|
8509
|
-
SituationTypeSingle: _sfc_main$
|
|
8510
|
-
SituationWork: _sfc_main$
|
|
8511
|
-
StaffCollection: _sfc_main$
|
|
8512
|
-
StaffIdentity: _sfc_main$
|
|
8741
|
+
SituationTypeSingle: _sfc_main$D,
|
|
8742
|
+
SituationWork: _sfc_main$G,
|
|
8743
|
+
StaffCollection: _sfc_main$M,
|
|
8744
|
+
StaffIdentity: _sfc_main$J,
|
|
8513
8745
|
StaffModel,
|
|
8514
8746
|
StaffOperasional,
|
|
8515
8747
|
StaffSingle,
|
|
8516
8748
|
SubmissionAudit,
|
|
8517
|
-
SubmissionCollection: _sfc_main$
|
|
8749
|
+
SubmissionCollection: _sfc_main$y,
|
|
8518
8750
|
SubmissionDecision,
|
|
8519
8751
|
SubmissionFollowUp,
|
|
8520
8752
|
SubmissionModel,
|
|
8521
8753
|
SubmissionSingle,
|
|
8522
8754
|
SubmissionStaff,
|
|
8523
|
-
SubmissionTypeCollection: _sfc_main$
|
|
8755
|
+
SubmissionTypeCollection: _sfc_main$r,
|
|
8524
8756
|
SubmissionTypeModel,
|
|
8525
8757
|
SubmissionTypeSingle,
|
|
8526
8758
|
SubmissionWaitingDecision,
|
|
8527
8759
|
TargetBranch,
|
|
8528
|
-
TargetCollection: _sfc_main$
|
|
8760
|
+
TargetCollection: _sfc_main$k,
|
|
8529
8761
|
TargetModel,
|
|
8530
8762
|
TargetSingle,
|
|
8531
|
-
TaskCollection: _sfc_main$
|
|
8763
|
+
TaskCollection: _sfc_main$B,
|
|
8532
8764
|
TaskModel,
|
|
8533
|
-
TaskSingle: _sfc_main$
|
|
8534
|
-
TaskWork: _sfc_main$
|
|
8535
|
-
TaskWorkButton: _sfc_main$
|
|
8536
|
-
XxxButton: _sfc_main$
|
|
8765
|
+
TaskSingle: _sfc_main$A,
|
|
8766
|
+
TaskWork: _sfc_main$z,
|
|
8767
|
+
TaskWorkButton: _sfc_main$C,
|
|
8768
|
+
XxxButton: _sfc_main$X
|
|
8537
8769
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
8538
8770
|
function registerComponents(app) {
|
|
8539
8771
|
Object.entries(components).forEach(([name, component]) => {
|
|
@@ -8549,80 +8781,84 @@ const OperasionalInterfacesPlugin = {
|
|
|
8549
8781
|
}
|
|
8550
8782
|
};
|
|
8551
8783
|
export {
|
|
8552
|
-
_sfc_main$
|
|
8784
|
+
_sfc_main$6 as AttendanceCollection,
|
|
8553
8785
|
AttendanceManager,
|
|
8554
8786
|
AttendanceModel,
|
|
8555
8787
|
AttendanceSingle,
|
|
8556
8788
|
AttendanceStaff,
|
|
8557
8789
|
CheckInAccess,
|
|
8558
|
-
_sfc_main$
|
|
8790
|
+
_sfc_main$N as CheckInCollection,
|
|
8559
8791
|
CheckInExternal,
|
|
8560
8792
|
CheckInModel,
|
|
8561
8793
|
CheckInPresenceCollection,
|
|
8562
|
-
_sfc_main$
|
|
8563
|
-
_sfc_main$
|
|
8794
|
+
_sfc_main$Q as CheckInScanError,
|
|
8795
|
+
_sfc_main$O as CheckInScanSuccess,
|
|
8564
8796
|
CheckInScanner,
|
|
8565
8797
|
CheckInSingle,
|
|
8566
8798
|
operasional_types as NOperasional,
|
|
8567
8799
|
NeonTime,
|
|
8568
8800
|
OperasionalIdentitas,
|
|
8569
8801
|
OperasionalInterfacesPlugin,
|
|
8570
|
-
_sfc_main$
|
|
8802
|
+
_sfc_main$f as PlanCollection,
|
|
8571
8803
|
PlanModel,
|
|
8572
8804
|
PlanSingle,
|
|
8573
8805
|
PlanStaff,
|
|
8574
|
-
_sfc_main$
|
|
8806
|
+
_sfc_main$h as PlanTypeCollection,
|
|
8575
8807
|
PlanTypeModel,
|
|
8576
8808
|
PlanTypeSingle,
|
|
8577
|
-
_sfc_main$
|
|
8809
|
+
_sfc_main$2 as ProgressAccessCollection,
|
|
8810
|
+
ProgressAccessModel,
|
|
8811
|
+
ProgressAccessSingle,
|
|
8812
|
+
ProgressAccessSupervisor,
|
|
8813
|
+
_sfc_main$c as ProgressButton,
|
|
8578
8814
|
ProgressCollection,
|
|
8579
8815
|
ProgressModel,
|
|
8580
8816
|
ProgressNote,
|
|
8581
8817
|
ProgressSingle,
|
|
8582
8818
|
ProgressTomorrow,
|
|
8583
8819
|
ProgressYesterday,
|
|
8584
|
-
_sfc_main$
|
|
8820
|
+
_sfc_main$n as ResponsibilityCollection,
|
|
8585
8821
|
ResponsibilityModel,
|
|
8586
8822
|
ResponsibilitySingle,
|
|
8587
8823
|
ResponsibilityStaff,
|
|
8588
|
-
_sfc_main$
|
|
8824
|
+
_sfc_main$p as ResponsibilityTypeCollection,
|
|
8589
8825
|
ResponsibilityTypeModel,
|
|
8590
8826
|
ResponsibilityTypeSingle,
|
|
8591
8827
|
graphql as Schema,
|
|
8592
|
-
_sfc_main$
|
|
8828
|
+
_sfc_main$I as SituationCollection,
|
|
8593
8829
|
SituationModel,
|
|
8594
|
-
_sfc_main$
|
|
8595
|
-
_sfc_main$
|
|
8596
|
-
_sfc_main$
|
|
8830
|
+
_sfc_main$H as SituationSingle,
|
|
8831
|
+
_sfc_main$F as SituationSupportive,
|
|
8832
|
+
_sfc_main$E as SituationTypeCollection,
|
|
8597
8833
|
SituationTypeModel,
|
|
8598
|
-
_sfc_main$
|
|
8599
|
-
_sfc_main$
|
|
8600
|
-
_sfc_main$
|
|
8601
|
-
_sfc_main$
|
|
8834
|
+
_sfc_main$D as SituationTypeSingle,
|
|
8835
|
+
_sfc_main$G as SituationWork,
|
|
8836
|
+
_sfc_main$M as StaffCollection,
|
|
8837
|
+
_sfc_main$J as StaffIdentity,
|
|
8602
8838
|
StaffModel,
|
|
8603
8839
|
StaffOperasional,
|
|
8604
8840
|
StaffSingle,
|
|
8605
8841
|
SubmissionAudit,
|
|
8606
|
-
_sfc_main$
|
|
8842
|
+
_sfc_main$y as SubmissionCollection,
|
|
8607
8843
|
SubmissionDecision,
|
|
8608
8844
|
SubmissionFollowUp,
|
|
8609
8845
|
SubmissionModel,
|
|
8610
8846
|
SubmissionSingle,
|
|
8611
8847
|
SubmissionStaff,
|
|
8612
|
-
_sfc_main$
|
|
8848
|
+
_sfc_main$r as SubmissionTypeCollection,
|
|
8613
8849
|
SubmissionTypeModel,
|
|
8614
8850
|
SubmissionTypeSingle,
|
|
8615
8851
|
SubmissionWaitingDecision,
|
|
8616
8852
|
TargetBranch,
|
|
8617
|
-
_sfc_main$
|
|
8853
|
+
_sfc_main$k as TargetCollection,
|
|
8618
8854
|
TargetModel,
|
|
8619
8855
|
TargetSingle,
|
|
8620
|
-
_sfc_main$
|
|
8856
|
+
_sfc_main$B as TaskCollection,
|
|
8621
8857
|
TaskModel,
|
|
8622
|
-
_sfc_main$
|
|
8623
|
-
_sfc_main$
|
|
8624
|
-
_sfc_main$
|
|
8625
|
-
_sfc_main$
|
|
8858
|
+
_sfc_main$A as TaskSingle,
|
|
8859
|
+
_sfc_main$z as TaskWork,
|
|
8860
|
+
_sfc_main$C as TaskWorkButton,
|
|
8861
|
+
_sfc_main$X as XxxButton,
|
|
8626
8862
|
bus,
|
|
8627
8863
|
useAttendanceStore,
|
|
8628
8864
|
useOperasional,
|