@neutron.co.id/operasional-interfaces 1.8.2 → 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 +894 -288
- package/build/index.mjs +895 -289
- package/build/style.css +42 -13
- package/build/types/components/index.d.ts +1 -0
- package/build/types/components/plan/plan.types.d.ts +1 -1
- package/build/types/components/progress/progress.types.d.ts +1 -1
- package/build/types/components/progress/sheets/ProgressNote.vue.d.ts +2 -0
- package/build/types/components/progress/sheets/index.d.ts +1 -0
- 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/submission/submission.types.d.ts +1 -1
- package/build/types/components/target/target.types.d.ts +1 -1
- package/build/types/components/task/task.types.d.ts +1 -1
- package/build/types/gql/graphql.d.ts +308 -9
- 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$R = /* @__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$Q = /* @__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$P = /* @__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$O = /* @__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$N = /* @__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$L = /* @__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$K = /* @__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$J = /* @__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$I = /* @__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$H = /* @__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$H = /* @__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$G = /* @__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$G = /* @__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$F = /* @__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$F = /* @__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$E = /* @__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$D = /* @__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$C = /* @__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$B = /* @__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$A = /* @__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$z = /* @__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$y = /* @__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$x = /* @__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$w = /* @__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$v = /* @__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$u = /* @__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 {
|
|
@@ -3339,25 +3375,22 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
3339
3375
|
_: 1
|
|
3340
3376
|
/* STABLE */
|
|
3341
3377
|
}),
|
|
3342
|
-
vue.
|
|
3343
|
-
modelValue: vue.unref(values).specifications,
|
|
3344
|
-
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).specifications = $event)
|
|
3345
|
-
}, vue.unref(fields).specifications), null, 16, ["modelValue"]),
|
|
3378
|
+
vue.createCommentVNode(' <NeonField\n v-model="values.specifications"\n v-bind="fields.specifications"\n /> '),
|
|
3346
3379
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3347
3380
|
modelValue: vue.unref(values).preparedAt,
|
|
3348
|
-
"onUpdate:modelValue": _cache[
|
|
3381
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).preparedAt = $event)
|
|
3349
3382
|
}, vue.unref(fields).preparedAt), null, 16, ["modelValue"]),
|
|
3350
3383
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3351
3384
|
modelValue: vue.unref(values).raisedAt,
|
|
3352
|
-
"onUpdate:modelValue": _cache[
|
|
3385
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).raisedAt = $event)
|
|
3353
3386
|
}, vue.unref(fields).raisedAt), null, 16, ["modelValue"]),
|
|
3354
3387
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3355
3388
|
modelValue: vue.unref(values).processedAt,
|
|
3356
|
-
"onUpdate:modelValue": _cache[
|
|
3389
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.unref(values).processedAt = $event)
|
|
3357
3390
|
}, vue.unref(fields).processedAt), null, 16, ["modelValue"]),
|
|
3358
3391
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3359
3392
|
modelValue: vue.unref(values).updatedAt,
|
|
3360
|
-
"onUpdate:modelValue": _cache[
|
|
3393
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => vue.unref(values).updatedAt = $event)
|
|
3361
3394
|
}, {
|
|
3362
3395
|
handle: "updatedAt",
|
|
3363
3396
|
name: "Tanggal Diupdate",
|
|
@@ -3369,12 +3402,16 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
3369
3402
|
}, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3370
3403
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3371
3404
|
"is-dashed": "",
|
|
3372
|
-
label: "
|
|
3405
|
+
label: "Spesifikasi"
|
|
3373
3406
|
}),
|
|
3374
3407
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3375
3408
|
modelValue: vue.unref(values).nominal,
|
|
3376
|
-
"onUpdate:modelValue": _cache[
|
|
3409
|
+
"onUpdate:modelValue": _cache[12] || (_cache[12] = ($event) => vue.unref(values).nominal = $event)
|
|
3377
3410
|
}, vue.unref(fields).nominal), null, 16, ["modelValue"]),
|
|
3411
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3412
|
+
modelValue: vue.unref(values).workingHours,
|
|
3413
|
+
"onUpdate:modelValue": _cache[13] || (_cache[13] = ($event) => vue.unref(values).workingHours = $event)
|
|
3414
|
+
}, vue.unref(fields).workingHours), null, 16, ["modelValue"]),
|
|
3378
3415
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3379
3416
|
"is-dashed": "",
|
|
3380
3417
|
label: "Keputusan"
|
|
@@ -3438,9 +3475,9 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
3438
3475
|
};
|
|
3439
3476
|
}
|
|
3440
3477
|
});
|
|
3441
|
-
const
|
|
3442
|
-
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3443
|
-
const _sfc_main$
|
|
3478
|
+
const SubmissionSingle_vue_vue_type_style_index_0_scoped_db121b49_lang = "";
|
|
3479
|
+
const SubmissionSingle = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-db121b49"]]);
|
|
3480
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
3444
3481
|
__name: "SubmissionStaff",
|
|
3445
3482
|
setup(__props) {
|
|
3446
3483
|
var _a;
|
|
@@ -3538,7 +3575,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
3538
3575
|
size: "md",
|
|
3539
3576
|
color: "dark",
|
|
3540
3577
|
"icon-left": "arrow-up-from-line",
|
|
3541
|
-
"is-disabled": vue.unref(isNew) || vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved" || !vue.unref(values).agreedStaffs || !vue.unref(values).branches || !vue.unref(values).decideStaffs || !vue.unref(values).followUpStaffs || !vue.unref(values).raiseStaffs || !vue.unref(values).
|
|
3578
|
+
"is-disabled": vue.unref(isNew) || vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved" || !vue.unref(values).agreedStaffs || !vue.unref(values).branches || !vue.unref(values).decideStaffs || !vue.unref(values).followUpStaffs || !vue.unref(values).raiseStaffs || !vue.unref(values).submissionStaffs || !vue.unref(values).title || !vue.unref(values).type,
|
|
3542
3579
|
onClick: syncRaise
|
|
3543
3580
|
}, {
|
|
3544
3581
|
default: vue.withCtx(() => [
|
|
@@ -3617,34 +3654,46 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
3617
3654
|
_: 1
|
|
3618
3655
|
/* STABLE */
|
|
3619
3656
|
}),
|
|
3620
|
-
vue.
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3657
|
+
vue.createCommentVNode(` <NeonField
|
|
3658
|
+
v-model="values.specifications"
|
|
3659
|
+
v-bind="fields.specifications"
|
|
3660
|
+
:is-disabled="
|
|
3661
|
+
values.status === 'raised' ||
|
|
3662
|
+
values.status === 'processed' ||
|
|
3663
|
+
values.status === 'approved' ||
|
|
3664
|
+
values.status === 'monitored' ||
|
|
3665
|
+
values.status === 'discontinued' ||
|
|
3666
|
+
values.status === 'resolved'
|
|
3667
|
+
"
|
|
3668
|
+
/> `),
|
|
3626
3669
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3627
3670
|
modelValue: vue.unref(values).preparedAt,
|
|
3628
|
-
"onUpdate:modelValue": _cache[
|
|
3671
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).preparedAt = $event)
|
|
3629
3672
|
}, vue.unref(fields).preparedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3630
3673
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3631
3674
|
modelValue: vue.unref(values).raisedAt,
|
|
3632
|
-
"onUpdate:modelValue": _cache[
|
|
3675
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).raisedAt = $event)
|
|
3633
3676
|
}, vue.unref(fields).raisedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3634
3677
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3635
3678
|
modelValue: vue.unref(values).processedAt,
|
|
3636
|
-
"onUpdate:modelValue": _cache[
|
|
3679
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).processedAt = $event)
|
|
3637
3680
|
}, vue.unref(fields).processedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3638
3681
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3639
3682
|
"is-dashed": "",
|
|
3640
|
-
label: "
|
|
3683
|
+
label: "Spesifikasi"
|
|
3641
3684
|
}),
|
|
3642
3685
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3643
3686
|
modelValue: vue.unref(values).nominal,
|
|
3644
|
-
"onUpdate:modelValue": _cache[
|
|
3687
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.unref(values).nominal = $event)
|
|
3645
3688
|
}, vue.unref(fields).nominal, {
|
|
3646
3689
|
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
3647
3690
|
}), null, 16, ["modelValue", "is-disabled"]),
|
|
3691
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3692
|
+
modelValue: vue.unref(values).workingHours,
|
|
3693
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => vue.unref(values).workingHours = $event)
|
|
3694
|
+
}, vue.unref(fields).workingHours, {
|
|
3695
|
+
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
3696
|
+
}), null, 16, ["modelValue", "is-disabled"]),
|
|
3648
3697
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3649
3698
|
"is-dashed": "",
|
|
3650
3699
|
label: "Keputusan"
|
|
@@ -3711,9 +3760,9 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
3711
3760
|
};
|
|
3712
3761
|
}
|
|
3713
3762
|
});
|
|
3714
|
-
const
|
|
3715
|
-
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3716
|
-
const _sfc_main$
|
|
3763
|
+
const SubmissionStaff_vue_vue_type_style_index_0_scoped_c971a3c0_lang = "";
|
|
3764
|
+
const SubmissionStaff = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-c971a3c0"]]);
|
|
3765
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
3717
3766
|
__name: "SubmissionFollowUp",
|
|
3718
3767
|
setup(__props) {
|
|
3719
3768
|
const {
|
|
@@ -3813,13 +3862,10 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
3813
3862
|
_: 1
|
|
3814
3863
|
/* STABLE */
|
|
3815
3864
|
}),
|
|
3816
|
-
vue.
|
|
3817
|
-
modelValue: vue.unref(values).specifications,
|
|
3818
|
-
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).specifications = $event)
|
|
3819
|
-
}, vue.unref(fields).specifications, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3865
|
+
vue.createCommentVNode(' <NeonField\n v-model="values.specifications"\n v-bind="fields.specifications"\n is-disabled\n /> '),
|
|
3820
3866
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3821
3867
|
modelValue: vue.unref(values).updatedAt,
|
|
3822
|
-
"onUpdate:modelValue": _cache[
|
|
3868
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).updatedAt = $event)
|
|
3823
3869
|
}, {
|
|
3824
3870
|
handle: "updatedAt",
|
|
3825
3871
|
name: "Tanggal Diupdate",
|
|
@@ -3831,12 +3877,16 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
3831
3877
|
}, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3832
3878
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3833
3879
|
"is-dashed": "",
|
|
3834
|
-
label: "
|
|
3880
|
+
label: "Spesifikasi"
|
|
3835
3881
|
}),
|
|
3836
3882
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3837
3883
|
modelValue: vue.unref(values).nominal,
|
|
3838
|
-
"onUpdate:modelValue": _cache[
|
|
3884
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).nominal = $event)
|
|
3839
3885
|
}, vue.unref(fields).nominal, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3886
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
3887
|
+
modelValue: vue.unref(values).workingHours,
|
|
3888
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).workingHours = $event)
|
|
3889
|
+
}, vue.unref(fields).workingHours, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
3840
3890
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
3841
3891
|
"is-dashed": "",
|
|
3842
3892
|
label: "Keputusan"
|
|
@@ -3903,14 +3953,14 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
3903
3953
|
};
|
|
3904
3954
|
}
|
|
3905
3955
|
});
|
|
3906
|
-
const
|
|
3907
|
-
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
3956
|
+
const SubmissionFollowUp_vue_vue_type_style_index_0_scoped_890dfdf2_lang = "";
|
|
3957
|
+
const SubmissionFollowUp = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["__scopeId", "data-v-890dfdf2"]]);
|
|
3908
3958
|
const _hoisted_1$9 = { class: "flex flex-wrap" };
|
|
3909
3959
|
const _hoisted_2$8 = { class: "mt-2" };
|
|
3910
3960
|
const _hoisted_3$4 = { class: "mt-2" };
|
|
3911
3961
|
const _hoisted_4$2 = { class: "mt-2" };
|
|
3912
3962
|
const _hoisted_5$2 = { class: "mt-2" };
|
|
3913
|
-
const _sfc_main$
|
|
3963
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
3914
3964
|
__name: "SubmissionAudit",
|
|
3915
3965
|
setup(__props) {
|
|
3916
3966
|
var _a;
|
|
@@ -4164,34 +4214,45 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
4164
4214
|
_: 1
|
|
4165
4215
|
/* STABLE */
|
|
4166
4216
|
}),
|
|
4167
|
-
vue.
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4217
|
+
vue.createCommentVNode(` <NeonField
|
|
4218
|
+
v-model="values.specifications"
|
|
4219
|
+
v-bind="fields.specifications"
|
|
4220
|
+
:is-disabled="
|
|
4221
|
+
values.status === 'processed' ||
|
|
4222
|
+
values.status === 'approved' ||
|
|
4223
|
+
values.status === 'monitored' ||
|
|
4224
|
+
values.status === 'discontinued' ||
|
|
4225
|
+
values.status === 'resolved'
|
|
4226
|
+
"
|
|
4227
|
+
/> `),
|
|
4173
4228
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4174
4229
|
modelValue: vue.unref(values).preparedAt,
|
|
4175
|
-
"onUpdate:modelValue": _cache[
|
|
4230
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).preparedAt = $event)
|
|
4176
4231
|
}, vue.unref(fields).preparedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4177
4232
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4178
4233
|
modelValue: vue.unref(values).raisedAt,
|
|
4179
|
-
"onUpdate:modelValue": _cache[
|
|
4234
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).raisedAt = $event)
|
|
4180
4235
|
}, vue.unref(fields).raisedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4181
4236
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4182
4237
|
modelValue: vue.unref(values).processedAt,
|
|
4183
|
-
"onUpdate:modelValue": _cache[
|
|
4238
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).processedAt = $event)
|
|
4184
4239
|
}, vue.unref(fields).processedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4185
4240
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4186
4241
|
"is-dashed": "",
|
|
4187
|
-
label: "
|
|
4242
|
+
label: "Spesifikasi"
|
|
4188
4243
|
}),
|
|
4189
4244
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4190
4245
|
modelValue: vue.unref(values).nominal,
|
|
4191
|
-
"onUpdate:modelValue": _cache[
|
|
4246
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.unref(values).nominal = $event)
|
|
4192
4247
|
}, vue.unref(fields).nominal, {
|
|
4193
4248
|
"is-disabled": vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
4194
4249
|
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4250
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4251
|
+
modelValue: vue.unref(values).workingHours,
|
|
4252
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => vue.unref(values).workingHours = $event)
|
|
4253
|
+
}, vue.unref(fields).workingHours, {
|
|
4254
|
+
"is-disabled": vue.unref(values).status === "processed" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
4255
|
+
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4195
4256
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4196
4257
|
"is-dashed": "",
|
|
4197
4258
|
label: "Keputusan"
|
|
@@ -4246,6 +4307,50 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
4246
4307
|
]),
|
|
4247
4308
|
_: 1
|
|
4248
4309
|
/* STABLE */
|
|
4310
|
+
})) : vue.createCommentVNode("v-if", true),
|
|
4311
|
+
vue.createCommentVNode(" PROGRESS "),
|
|
4312
|
+
!vue.unref(isNew) ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeTab), {
|
|
4313
|
+
key: 1,
|
|
4314
|
+
handle: "progress",
|
|
4315
|
+
icon: "info-circle",
|
|
4316
|
+
title: "Progress"
|
|
4317
|
+
}, {
|
|
4318
|
+
default: vue.withCtx(() => [
|
|
4319
|
+
vue.createVNode(vue.unref(office.OfficeCollectionRelated), {
|
|
4320
|
+
definition: "neu:personalia:progress",
|
|
4321
|
+
title: "Progress",
|
|
4322
|
+
description: "Progress dari tindaklanjut.",
|
|
4323
|
+
query: vue.unref(query.Query).define({
|
|
4324
|
+
filter: [
|
|
4325
|
+
{
|
|
4326
|
+
submissionIds: vue.unref(id)
|
|
4327
|
+
}
|
|
4328
|
+
],
|
|
4329
|
+
sort: {
|
|
4330
|
+
handle: "startedAt",
|
|
4331
|
+
direction: "ascending"
|
|
4332
|
+
}
|
|
4333
|
+
}),
|
|
4334
|
+
"is-ready": vue.unref(isReady),
|
|
4335
|
+
columns: [
|
|
4336
|
+
"startedAt",
|
|
4337
|
+
"endedAt",
|
|
4338
|
+
"detail",
|
|
4339
|
+
"staffs",
|
|
4340
|
+
"virtualIsNotes",
|
|
4341
|
+
"accessStaffs"
|
|
4342
|
+
],
|
|
4343
|
+
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4344
|
+
filters: ["staff"],
|
|
4345
|
+
"initial-values": {
|
|
4346
|
+
submissionIds: vue.unref(id),
|
|
4347
|
+
submissions: vue.unref(values)
|
|
4348
|
+
},
|
|
4349
|
+
excludes: ["create"]
|
|
4350
|
+
}, null, 8, ["query", "is-ready", "initial-values"])
|
|
4351
|
+
]),
|
|
4352
|
+
_: 1
|
|
4353
|
+
/* STABLE */
|
|
4249
4354
|
})) : vue.createCommentVNode("v-if", true)
|
|
4250
4355
|
]),
|
|
4251
4356
|
_: 1
|
|
@@ -4258,12 +4363,12 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
4258
4363
|
};
|
|
4259
4364
|
}
|
|
4260
4365
|
});
|
|
4261
|
-
const
|
|
4262
|
-
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"]]);
|
|
4263
4368
|
const _hoisted_1$8 = { class: "flex flex-wrap" };
|
|
4264
4369
|
const _hoisted_2$7 = { class: "mt-2" };
|
|
4265
4370
|
const _hoisted_3$3 = { class: "mt-2" };
|
|
4266
|
-
const _sfc_main$
|
|
4371
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
4267
4372
|
__name: "SubmissionDecision",
|
|
4268
4373
|
setup(__props) {
|
|
4269
4374
|
var _a;
|
|
@@ -4479,34 +4584,47 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
4479
4584
|
_: 1
|
|
4480
4585
|
/* STABLE */
|
|
4481
4586
|
}),
|
|
4482
|
-
vue.
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4587
|
+
vue.createCommentVNode(` <NeonField
|
|
4588
|
+
v-model="values.specifications"
|
|
4589
|
+
v-bind="fields.specifications"
|
|
4590
|
+
:is-disabled="
|
|
4591
|
+
values.status === 'raised' ||
|
|
4592
|
+
values.status === 'processed' ||
|
|
4593
|
+
values.status === 'delay' ||
|
|
4594
|
+
values.status === 'approved' ||
|
|
4595
|
+
values.status === 'monitored' ||
|
|
4596
|
+
values.status === 'discontinued' ||
|
|
4597
|
+
values.status === 'resolved'
|
|
4598
|
+
"
|
|
4599
|
+
/> `),
|
|
4488
4600
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4489
4601
|
modelValue: vue.unref(values).preparedAt,
|
|
4490
|
-
"onUpdate:modelValue": _cache[
|
|
4602
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).preparedAt = $event)
|
|
4491
4603
|
}, vue.unref(fields).preparedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4492
4604
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4493
4605
|
modelValue: vue.unref(values).raisedAt,
|
|
4494
|
-
"onUpdate:modelValue": _cache[
|
|
4606
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).raisedAt = $event)
|
|
4495
4607
|
}, vue.unref(fields).raisedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4496
4608
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4497
4609
|
modelValue: vue.unref(values).processedAt,
|
|
4498
|
-
"onUpdate:modelValue": _cache[
|
|
4610
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).processedAt = $event)
|
|
4499
4611
|
}, vue.unref(fields).processedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4500
4612
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4501
4613
|
"is-dashed": "",
|
|
4502
|
-
label: "
|
|
4614
|
+
label: "Spesifikasi"
|
|
4503
4615
|
}),
|
|
4504
4616
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4505
4617
|
modelValue: vue.unref(values).nominal,
|
|
4506
|
-
"onUpdate:modelValue": _cache[
|
|
4618
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.unref(values).nominal = $event)
|
|
4507
4619
|
}, vue.unref(fields).nominal, {
|
|
4508
4620
|
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "delay" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
4509
4621
|
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4622
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4623
|
+
modelValue: vue.unref(values).workingHours,
|
|
4624
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => vue.unref(values).workingHours = $event)
|
|
4625
|
+
}, vue.unref(fields).workingHours, {
|
|
4626
|
+
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "delay" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
4627
|
+
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4510
4628
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4511
4629
|
"is-dashed": "",
|
|
4512
4630
|
label: "Keputusan"
|
|
@@ -4561,6 +4679,50 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
4561
4679
|
]),
|
|
4562
4680
|
_: 1
|
|
4563
4681
|
/* STABLE */
|
|
4682
|
+
})) : vue.createCommentVNode("v-if", true),
|
|
4683
|
+
vue.createCommentVNode(" PROGRESS "),
|
|
4684
|
+
!vue.unref(isNew) ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeTab), {
|
|
4685
|
+
key: 1,
|
|
4686
|
+
handle: "progress",
|
|
4687
|
+
icon: "info-circle",
|
|
4688
|
+
title: "Progress"
|
|
4689
|
+
}, {
|
|
4690
|
+
default: vue.withCtx(() => [
|
|
4691
|
+
vue.createVNode(vue.unref(office.OfficeCollectionRelated), {
|
|
4692
|
+
definition: "neu:personalia:progress",
|
|
4693
|
+
title: "Progress",
|
|
4694
|
+
description: "Progress dari tindaklanjut.",
|
|
4695
|
+
query: vue.unref(query.Query).define({
|
|
4696
|
+
filter: [
|
|
4697
|
+
{
|
|
4698
|
+
submissionIds: vue.unref(id)
|
|
4699
|
+
}
|
|
4700
|
+
],
|
|
4701
|
+
sort: {
|
|
4702
|
+
handle: "startedAt",
|
|
4703
|
+
direction: "ascending"
|
|
4704
|
+
}
|
|
4705
|
+
}),
|
|
4706
|
+
"is-ready": vue.unref(isReady),
|
|
4707
|
+
columns: [
|
|
4708
|
+
"startedAt",
|
|
4709
|
+
"endedAt",
|
|
4710
|
+
"detail",
|
|
4711
|
+
"staffs",
|
|
4712
|
+
"virtualIsNotes",
|
|
4713
|
+
"accessStaffs"
|
|
4714
|
+
],
|
|
4715
|
+
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
4716
|
+
filters: ["staff"],
|
|
4717
|
+
"initial-values": {
|
|
4718
|
+
submissionIds: vue.unref(id),
|
|
4719
|
+
submissions: vue.unref(values)
|
|
4720
|
+
},
|
|
4721
|
+
excludes: ["create"]
|
|
4722
|
+
}, null, 8, ["query", "is-ready", "initial-values"])
|
|
4723
|
+
]),
|
|
4724
|
+
_: 1
|
|
4725
|
+
/* STABLE */
|
|
4564
4726
|
})) : vue.createCommentVNode("v-if", true)
|
|
4565
4727
|
]),
|
|
4566
4728
|
_: 1
|
|
@@ -4573,12 +4735,12 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
4573
4735
|
};
|
|
4574
4736
|
}
|
|
4575
4737
|
});
|
|
4576
|
-
const
|
|
4577
|
-
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"]]);
|
|
4578
4740
|
const _hoisted_1$7 = { class: "flex flex-wrap" };
|
|
4579
4741
|
const _hoisted_2$6 = { class: "mt-2" };
|
|
4580
4742
|
const _hoisted_3$2 = { class: "mt-2" };
|
|
4581
|
-
const _sfc_main$
|
|
4743
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
4582
4744
|
__name: "SubmissionWaitingDecision",
|
|
4583
4745
|
setup(__props) {
|
|
4584
4746
|
var _a;
|
|
@@ -4796,34 +4958,47 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
4796
4958
|
_: 1
|
|
4797
4959
|
/* STABLE */
|
|
4798
4960
|
}),
|
|
4799
|
-
vue.
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4961
|
+
vue.createCommentVNode(` <NeonField
|
|
4962
|
+
v-model="values.specifications"
|
|
4963
|
+
v-bind="fields.specifications"
|
|
4964
|
+
:is-disabled="
|
|
4965
|
+
values.status === 'raised' ||
|
|
4966
|
+
values.status === 'processed' ||
|
|
4967
|
+
values.status === 'delay' ||
|
|
4968
|
+
values.status === 'approved' ||
|
|
4969
|
+
values.status === 'monitored' ||
|
|
4970
|
+
values.status === 'discontinued' ||
|
|
4971
|
+
values.status === 'resolved'
|
|
4972
|
+
"
|
|
4973
|
+
/> `),
|
|
4805
4974
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4806
4975
|
modelValue: vue.unref(values).preparedAt,
|
|
4807
|
-
"onUpdate:modelValue": _cache[
|
|
4976
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).preparedAt = $event)
|
|
4808
4977
|
}, vue.unref(fields).preparedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4809
4978
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4810
4979
|
modelValue: vue.unref(values).raisedAt,
|
|
4811
|
-
"onUpdate:modelValue": _cache[
|
|
4980
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.unref(values).raisedAt = $event)
|
|
4812
4981
|
}, vue.unref(fields).raisedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4813
4982
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4814
4983
|
modelValue: vue.unref(values).processedAt,
|
|
4815
|
-
"onUpdate:modelValue": _cache[
|
|
4984
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.unref(values).processedAt = $event)
|
|
4816
4985
|
}, vue.unref(fields).processedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
4817
4986
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4818
4987
|
"is-dashed": "",
|
|
4819
|
-
label: "
|
|
4988
|
+
label: "Spesifikasi"
|
|
4820
4989
|
}),
|
|
4821
4990
|
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4822
4991
|
modelValue: vue.unref(values).nominal,
|
|
4823
|
-
"onUpdate:modelValue": _cache[
|
|
4992
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.unref(values).nominal = $event)
|
|
4824
4993
|
}, vue.unref(fields).nominal, {
|
|
4825
4994
|
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "delay" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
4826
4995
|
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4996
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
4997
|
+
modelValue: vue.unref(values).workingHours,
|
|
4998
|
+
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => vue.unref(values).workingHours = $event)
|
|
4999
|
+
}, vue.unref(fields).workingHours, {
|
|
5000
|
+
"is-disabled": vue.unref(values).status === "raised" || vue.unref(values).status === "processed" || vue.unref(values).status === "delay" || vue.unref(values).status === "approved" || vue.unref(values).status === "monitored" || vue.unref(values).status === "discontinued" || vue.unref(values).status === "resolved"
|
|
5001
|
+
}), null, 16, ["modelValue", "is-disabled"]),
|
|
4827
5002
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
4828
5003
|
"is-dashed": "",
|
|
4829
5004
|
label: "Keputusan"
|
|
@@ -4890,10 +5065,10 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
4890
5065
|
};
|
|
4891
5066
|
}
|
|
4892
5067
|
});
|
|
4893
|
-
const
|
|
4894
|
-
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5068
|
+
const SubmissionWaitingDecision_vue_vue_type_style_index_0_scoped_1f81ee74_lang = "";
|
|
5069
|
+
const SubmissionWaitingDecision = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["__scopeId", "data-v-1f81ee74"]]);
|
|
4895
5070
|
const SubmissionTypeModel = personaliaModels.models.SubmissionTypeModel;
|
|
4896
|
-
const _sfc_main$
|
|
5071
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
4897
5072
|
...{
|
|
4898
5073
|
name: "SubmissionTypeCollection"
|
|
4899
5074
|
},
|
|
@@ -4911,7 +5086,7 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
4911
5086
|
};
|
|
4912
5087
|
}
|
|
4913
5088
|
});
|
|
4914
|
-
const _sfc_main$
|
|
5089
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
4915
5090
|
__name: "SubmissionTypeSingle",
|
|
4916
5091
|
setup(__props) {
|
|
4917
5092
|
const {
|
|
@@ -4977,9 +5152,9 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
4977
5152
|
}
|
|
4978
5153
|
});
|
|
4979
5154
|
const SubmissionTypeSingle_vue_vue_type_style_index_0_scoped_2b7e18ba_lang = "";
|
|
4980
|
-
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5155
|
+
const SubmissionTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-2b7e18ba"]]);
|
|
4981
5156
|
const ResponsibilityTypeModel = personaliaModels.models.ResponsibilityTypeModel;
|
|
4982
|
-
const _sfc_main$
|
|
5157
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
4983
5158
|
...{
|
|
4984
5159
|
name: "ResponsibilityTypeCollection"
|
|
4985
5160
|
},
|
|
@@ -4997,7 +5172,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
4997
5172
|
};
|
|
4998
5173
|
}
|
|
4999
5174
|
});
|
|
5000
|
-
const _sfc_main$
|
|
5175
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
5001
5176
|
__name: "ResponsibilityTypeSingle",
|
|
5002
5177
|
setup(__props) {
|
|
5003
5178
|
const {
|
|
@@ -5063,9 +5238,9 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
5063
5238
|
}
|
|
5064
5239
|
});
|
|
5065
5240
|
const ResponsibilityTypeSingle_vue_vue_type_style_index_0_scoped_3df9fac1_lang = "";
|
|
5066
|
-
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5241
|
+
const ResponsibilityTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-3df9fac1"]]);
|
|
5067
5242
|
const ResponsibilityModel = personaliaModels.models.ResponsibilityModel;
|
|
5068
|
-
const _sfc_main$
|
|
5243
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
5069
5244
|
...{
|
|
5070
5245
|
name: "ResponsibilityCollection"
|
|
5071
5246
|
},
|
|
@@ -5083,7 +5258,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
5083
5258
|
};
|
|
5084
5259
|
}
|
|
5085
5260
|
});
|
|
5086
|
-
const _sfc_main$
|
|
5261
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
5087
5262
|
__name: "ResponsibilitySingle",
|
|
5088
5263
|
setup(__props) {
|
|
5089
5264
|
const {
|
|
@@ -5100,6 +5275,17 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5100
5275
|
discardChanges
|
|
5101
5276
|
} = context.useSingle();
|
|
5102
5277
|
const { staff } = useOperasional();
|
|
5278
|
+
const responsibilityTypeOptions = vue.computed(() => {
|
|
5279
|
+
return {
|
|
5280
|
+
filter: [
|
|
5281
|
+
{
|
|
5282
|
+
handle: "branchIds",
|
|
5283
|
+
operator: "in",
|
|
5284
|
+
value: values.value.branchId
|
|
5285
|
+
}
|
|
5286
|
+
]
|
|
5287
|
+
};
|
|
5288
|
+
});
|
|
5103
5289
|
return (_ctx, _cache) => {
|
|
5104
5290
|
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-responsibility-single" }, {
|
|
5105
5291
|
default: vue.withCtx(() => [
|
|
@@ -5143,8 +5329,9 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5143
5329
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
5144
5330
|
modelValue: vue.unref(values),
|
|
5145
5331
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
5146
|
-
field: vue.unref(fields).responsibilityType
|
|
5147
|
-
|
|
5332
|
+
field: vue.unref(fields).responsibilityType,
|
|
5333
|
+
query: vue.unref(query.Query).define(responsibilityTypeOptions.value)
|
|
5334
|
+
}, null, 8, ["modelValue", "field", "query"])
|
|
5148
5335
|
]),
|
|
5149
5336
|
_: 1
|
|
5150
5337
|
/* STABLE */
|
|
@@ -5209,7 +5396,14 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5209
5396
|
}
|
|
5210
5397
|
}),
|
|
5211
5398
|
"is-ready": vue.unref(isReady),
|
|
5212
|
-
columns: [
|
|
5399
|
+
columns: [
|
|
5400
|
+
"startedAt",
|
|
5401
|
+
"endedAt",
|
|
5402
|
+
"detail",
|
|
5403
|
+
"staffs",
|
|
5404
|
+
"virtualIsNotes",
|
|
5405
|
+
"accessStaffs"
|
|
5406
|
+
],
|
|
5213
5407
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5214
5408
|
"initial-values": {
|
|
5215
5409
|
responsibilityIds: vue.unref(id),
|
|
@@ -5234,9 +5428,9 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
5234
5428
|
};
|
|
5235
5429
|
}
|
|
5236
5430
|
});
|
|
5237
|
-
const
|
|
5238
|
-
const ResponsibilitySingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5239
|
-
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({
|
|
5240
5434
|
__name: "ResponsibilityStaff",
|
|
5241
5435
|
setup(__props) {
|
|
5242
5436
|
const {
|
|
@@ -5366,7 +5560,14 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
5366
5560
|
}
|
|
5367
5561
|
}),
|
|
5368
5562
|
"is-ready": vue.unref(isReady),
|
|
5369
|
-
columns: [
|
|
5563
|
+
columns: [
|
|
5564
|
+
"startedAt",
|
|
5565
|
+
"endedAt",
|
|
5566
|
+
"detail",
|
|
5567
|
+
"staffs",
|
|
5568
|
+
"virtualIsNotes",
|
|
5569
|
+
"accessStaffs"
|
|
5570
|
+
],
|
|
5370
5571
|
sorts: ["startedAt", "createdAt", "updatedAt"],
|
|
5371
5572
|
"initial-values": {
|
|
5372
5573
|
responsibilityIds: vue.unref(id),
|
|
@@ -5391,10 +5592,10 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
5391
5592
|
};
|
|
5392
5593
|
}
|
|
5393
5594
|
});
|
|
5394
|
-
const
|
|
5395
|
-
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"]]);
|
|
5396
5597
|
const TargetModel = personaliaModels.models.TargetModel;
|
|
5397
|
-
const _sfc_main$
|
|
5598
|
+
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
5398
5599
|
...{
|
|
5399
5600
|
name: "TargetCollection"
|
|
5400
5601
|
},
|
|
@@ -5412,7 +5613,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
5412
5613
|
};
|
|
5413
5614
|
}
|
|
5414
5615
|
});
|
|
5415
|
-
const _sfc_main$
|
|
5616
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
5416
5617
|
__name: "TargetSingle",
|
|
5417
5618
|
setup(__props) {
|
|
5418
5619
|
const {
|
|
@@ -5565,8 +5766,8 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
5565
5766
|
}
|
|
5566
5767
|
});
|
|
5567
5768
|
const TargetSingle_vue_vue_type_style_index_0_scoped_c12b8df8_lang = "";
|
|
5568
|
-
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5569
|
-
const _sfc_main$
|
|
5769
|
+
const TargetSingle = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["__scopeId", "data-v-c12b8df8"]]);
|
|
5770
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
5570
5771
|
__name: "TargetBranch",
|
|
5571
5772
|
setup(__props) {
|
|
5572
5773
|
const {
|
|
@@ -5719,9 +5920,9 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
5719
5920
|
}
|
|
5720
5921
|
});
|
|
5721
5922
|
const TargetBranch_vue_vue_type_style_index_0_scoped_6a5a6e80_lang = "";
|
|
5722
|
-
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5923
|
+
const TargetBranch = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6a5a6e80"]]);
|
|
5723
5924
|
const PlanTypeModel = personaliaModels.models.PlanTypeModel;
|
|
5724
|
-
const _sfc_main$
|
|
5925
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
5725
5926
|
...{
|
|
5726
5927
|
name: "PlanTypeCollection"
|
|
5727
5928
|
},
|
|
@@ -5739,7 +5940,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
5739
5940
|
};
|
|
5740
5941
|
}
|
|
5741
5942
|
});
|
|
5742
|
-
const _sfc_main$
|
|
5943
|
+
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
5743
5944
|
__name: "PlanTypeSingle",
|
|
5744
5945
|
setup(__props) {
|
|
5745
5946
|
const {
|
|
@@ -5860,9 +6061,9 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
5860
6061
|
}
|
|
5861
6062
|
});
|
|
5862
6063
|
const PlanTypeSingle_vue_vue_type_style_index_0_scoped_80d2e1d3_lang = "";
|
|
5863
|
-
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6064
|
+
const PlanTypeSingle = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-80d2e1d3"]]);
|
|
5864
6065
|
const PlanModel = personaliaModels.models.PlanModel;
|
|
5865
|
-
const _sfc_main$
|
|
6066
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
5866
6067
|
...{
|
|
5867
6068
|
name: "PlanCollection"
|
|
5868
6069
|
},
|
|
@@ -5880,7 +6081,7 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
5880
6081
|
};
|
|
5881
6082
|
}
|
|
5882
6083
|
});
|
|
5883
|
-
const _sfc_main$
|
|
6084
|
+
const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
5884
6085
|
__name: "PlanSingle",
|
|
5885
6086
|
setup(__props) {
|
|
5886
6087
|
const {
|
|
@@ -6032,7 +6233,14 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
6032
6233
|
}
|
|
6033
6234
|
}),
|
|
6034
6235
|
"is-ready": vue.unref(isReady),
|
|
6035
|
-
columns: [
|
|
6236
|
+
columns: [
|
|
6237
|
+
"startedAt",
|
|
6238
|
+
"endedAt",
|
|
6239
|
+
"detail",
|
|
6240
|
+
"staffs",
|
|
6241
|
+
"virtualIsNotes",
|
|
6242
|
+
"accessStaffs"
|
|
6243
|
+
],
|
|
6036
6244
|
sorts: ["startedAt", "startedAt", "createdAt", "updatedAt"],
|
|
6037
6245
|
filters: ["staff"],
|
|
6038
6246
|
"initial-values": {
|
|
@@ -6055,9 +6263,9 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
6055
6263
|
};
|
|
6056
6264
|
}
|
|
6057
6265
|
});
|
|
6058
|
-
const
|
|
6059
|
-
const PlanSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6060
|
-
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({
|
|
6061
6269
|
__name: "PlanStaff",
|
|
6062
6270
|
setup(__props) {
|
|
6063
6271
|
const {
|
|
@@ -6209,10 +6417,10 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6209
6417
|
}
|
|
6210
6418
|
});
|
|
6211
6419
|
const PlanStaff_vue_vue_type_style_index_0_scoped_aa8de6da_lang = "";
|
|
6212
|
-
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6420
|
+
const PlanStaff = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-aa8de6da"]]);
|
|
6213
6421
|
const ProgressModel = personaliaModels.models.ProgressModel;
|
|
6214
6422
|
const _hoisted_1$6 = { class: "flex flex-wrap" };
|
|
6215
|
-
const _sfc_main$
|
|
6423
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
6216
6424
|
...{ name: "ProgressButton" },
|
|
6217
6425
|
__name: "ProgressButton",
|
|
6218
6426
|
setup(__props) {
|
|
@@ -6258,7 +6466,7 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6258
6466
|
};
|
|
6259
6467
|
}
|
|
6260
6468
|
});
|
|
6261
|
-
const _sfc_main$
|
|
6469
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
6262
6470
|
...{
|
|
6263
6471
|
name: "ProgressCollection"
|
|
6264
6472
|
},
|
|
@@ -6321,12 +6529,13 @@ const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6321
6529
|
}
|
|
6322
6530
|
});
|
|
6323
6531
|
const ProgressCollection_vue_vue_type_style_index_0_scoped_2634660f_lang = "";
|
|
6324
|
-
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6532
|
+
const ProgressCollection = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-2634660f"]]);
|
|
6325
6533
|
const _hoisted_1$5 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6326
6534
|
const _hoisted_2$5 = { class: "text-right text-fg-subdued text-sm" };
|
|
6327
|
-
const _sfc_main$
|
|
6535
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
6328
6536
|
__name: "ProgressSingle",
|
|
6329
6537
|
setup(__props) {
|
|
6538
|
+
var _a;
|
|
6330
6539
|
const {
|
|
6331
6540
|
fields,
|
|
6332
6541
|
id,
|
|
@@ -6342,7 +6551,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6342
6551
|
} = context.useSingle();
|
|
6343
6552
|
const { staff } = useOperasional();
|
|
6344
6553
|
const responsibilityOptions = vue.computed(() => {
|
|
6345
|
-
var
|
|
6554
|
+
var _a2, _b;
|
|
6346
6555
|
return {
|
|
6347
6556
|
filter: [
|
|
6348
6557
|
{
|
|
@@ -6355,7 +6564,7 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6355
6564
|
{
|
|
6356
6565
|
handle: "staffWorkIds",
|
|
6357
6566
|
operator: "in",
|
|
6358
|
-
value: (
|
|
6567
|
+
value: (_a2 = staff.value) == null ? void 0 : _a2.id
|
|
6359
6568
|
},
|
|
6360
6569
|
{
|
|
6361
6570
|
handle: "staffSuperviseIds",
|
|
@@ -6390,14 +6599,20 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6390
6599
|
}
|
|
6391
6600
|
const sekarang = DateUtil.day(/* @__PURE__ */ new Date());
|
|
6392
6601
|
const besok = sekarang;
|
|
6602
|
+
const staffId = ((_a = staff.value) == null ? void 0 : _a.id) || "";
|
|
6393
6603
|
vue.watch(
|
|
6394
6604
|
isNew,
|
|
6395
6605
|
(isNew2) => {
|
|
6396
|
-
var
|
|
6606
|
+
var _a2;
|
|
6397
6607
|
if (!isNew2)
|
|
6398
6608
|
return;
|
|
6399
|
-
values.value.staffIds =
|
|
6400
|
-
values.value.staffs =
|
|
6609
|
+
values.value.staffIds = [staffId];
|
|
6610
|
+
values.value.staffs = [
|
|
6611
|
+
{
|
|
6612
|
+
id: staffId,
|
|
6613
|
+
flag: (_a2 = staff.value) == null ? void 0 : _a2.flag
|
|
6614
|
+
}
|
|
6615
|
+
];
|
|
6401
6616
|
values.value.startedAt = besok.second(0).millisecond(0).toISOString();
|
|
6402
6617
|
values.value.endedAt = besok.add(90, "m").toISOString();
|
|
6403
6618
|
},
|
|
@@ -6426,45 +6641,8 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6426
6641
|
() => `neu:operasional:progress:${id.value}`
|
|
6427
6642
|
);
|
|
6428
6643
|
const display2 = vue.ref();
|
|
6429
|
-
const pads = {
|
|
6430
|
-
comments: {
|
|
6431
|
-
handle: "comments",
|
|
6432
|
-
title: "Comments",
|
|
6433
|
-
icon: "comments"
|
|
6434
|
-
},
|
|
6435
|
-
note: {
|
|
6436
|
-
handle: "note",
|
|
6437
|
-
title: "Note",
|
|
6438
|
-
icon: "notes"
|
|
6439
|
-
},
|
|
6440
|
-
sketch: {
|
|
6441
|
-
handle: "sketch",
|
|
6442
|
-
title: "Sketch",
|
|
6443
|
-
icon: "pen-swirl"
|
|
6444
|
-
}
|
|
6445
|
-
};
|
|
6446
6644
|
return (_ctx, _cache) => {
|
|
6447
6645
|
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-single" }, {
|
|
6448
|
-
sketch: vue.withCtx(({ close }) => [
|
|
6449
|
-
vue.createVNode(vue.unref(office.OfficePad), vue.mergeProps(pads.sketch, { onClose: close }), {
|
|
6450
|
-
default: vue.withCtx(() => [
|
|
6451
|
-
vue.createVNode(
|
|
6452
|
-
vue.unref(catatInterfaces.CatatSketchPad),
|
|
6453
|
-
vue.normalizeProps(vue.guardReactiveProps({
|
|
6454
|
-
applicationId: vue.unref(appStore).appId,
|
|
6455
|
-
object: `${objectDef.value}:office`,
|
|
6456
|
-
isReady: vue.unref(isReady),
|
|
6457
|
-
isLoading: vue.unref(isLoading)
|
|
6458
|
-
})),
|
|
6459
|
-
null,
|
|
6460
|
-
16
|
|
6461
|
-
/* FULL_PROPS */
|
|
6462
|
-
)
|
|
6463
|
-
]),
|
|
6464
|
-
_: 2
|
|
6465
|
-
/* DYNAMIC */
|
|
6466
|
-
}, 1040, ["onClose"])
|
|
6467
|
-
]),
|
|
6468
6646
|
default: vue.withCtx(() => [
|
|
6469
6647
|
vue.createVNode(vue.unref(office.OfficeTabs), { "use-url": vue.unref(isMain) }, {
|
|
6470
6648
|
default: vue.withCtx(() => [
|
|
@@ -6577,20 +6755,25 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6577
6755
|
_: 1
|
|
6578
6756
|
/* STABLE */
|
|
6579
6757
|
}, 16, ["modelValue"]),
|
|
6758
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
6759
|
+
modelValue: vue.unref(values),
|
|
6760
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6761
|
+
field: vue.unref(fields).accessStaffs
|
|
6762
|
+
}, null, 8, ["modelValue", "field"]),
|
|
6580
6763
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
6581
6764
|
"is-dashed": "",
|
|
6582
6765
|
label: "Referensi"
|
|
6583
6766
|
}),
|
|
6584
6767
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
6585
6768
|
modelValue: vue.unref(values),
|
|
6586
|
-
"onUpdate:modelValue": _cache[
|
|
6769
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6587
6770
|
field: vue.unref(fields).responsibilities,
|
|
6588
6771
|
query: vue.unref(query.Query).define(responsibilityOptions.value)
|
|
6589
6772
|
}, null, 8, ["modelValue", "field", "query"]),
|
|
6590
6773
|
vue.createCommentVNode(' <OfficeRelation v-model="values" :field="fields.plans" /> '),
|
|
6591
6774
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
6592
6775
|
modelValue: vue.unref(values),
|
|
6593
|
-
"onUpdate:modelValue": _cache[
|
|
6776
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6594
6777
|
field: vue.unref(fields).submissions,
|
|
6595
6778
|
query: vue.unref(query.Query).define(submissionOptions.value)
|
|
6596
6779
|
}, null, 8, ["modelValue", "field", "query"])
|
|
@@ -6631,13 +6814,14 @@ const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6631
6814
|
};
|
|
6632
6815
|
}
|
|
6633
6816
|
});
|
|
6634
|
-
const
|
|
6635
|
-
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6817
|
+
const ProgressSingle_vue_vue_type_style_index_0_scoped_ca99d46c_lang = "";
|
|
6818
|
+
const ProgressSingle = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-ca99d46c"]]);
|
|
6636
6819
|
const _hoisted_1$4 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6637
6820
|
const _hoisted_2$4 = { class: "text-right text-fg-subdued text-sm" };
|
|
6638
|
-
const _sfc_main$
|
|
6821
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
6639
6822
|
__name: "ProgressTomorrow",
|
|
6640
6823
|
setup(__props) {
|
|
6824
|
+
var _a;
|
|
6641
6825
|
const {
|
|
6642
6826
|
fields,
|
|
6643
6827
|
id,
|
|
@@ -6653,7 +6837,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6653
6837
|
} = context.useSingle();
|
|
6654
6838
|
const { staff } = useOperasional();
|
|
6655
6839
|
const responsibilityOptions = vue.computed(() => {
|
|
6656
|
-
var
|
|
6840
|
+
var _a2, _b;
|
|
6657
6841
|
return {
|
|
6658
6842
|
filter: [
|
|
6659
6843
|
{
|
|
@@ -6666,7 +6850,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6666
6850
|
{
|
|
6667
6851
|
handle: "staffWorkIds",
|
|
6668
6852
|
operator: "in",
|
|
6669
|
-
value: (
|
|
6853
|
+
value: (_a2 = staff.value) == null ? void 0 : _a2.id
|
|
6670
6854
|
},
|
|
6671
6855
|
{
|
|
6672
6856
|
handle: "staffSuperviseIds",
|
|
@@ -6701,14 +6885,20 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6701
6885
|
}
|
|
6702
6886
|
const sekarang = DateUtil.day(/* @__PURE__ */ new Date());
|
|
6703
6887
|
const besok = sekarang.add(1, "day");
|
|
6888
|
+
const staffId = ((_a = staff.value) == null ? void 0 : _a.id) || "";
|
|
6704
6889
|
vue.watch(
|
|
6705
6890
|
isNew,
|
|
6706
6891
|
(isNew2) => {
|
|
6707
|
-
var
|
|
6892
|
+
var _a2;
|
|
6708
6893
|
if (!isNew2)
|
|
6709
6894
|
return;
|
|
6710
|
-
values.value.staffIds =
|
|
6711
|
-
values.value.staffs =
|
|
6895
|
+
values.value.staffIds = [staffId];
|
|
6896
|
+
values.value.staffs = [
|
|
6897
|
+
{
|
|
6898
|
+
id: staffId,
|
|
6899
|
+
flag: (_a2 = staff.value) == null ? void 0 : _a2.flag
|
|
6900
|
+
}
|
|
6901
|
+
];
|
|
6712
6902
|
values.value.startedAt = besok.second(0).millisecond(0).toISOString();
|
|
6713
6903
|
values.value.endedAt = besok.add(90, "m").toISOString();
|
|
6714
6904
|
},
|
|
@@ -6732,6 +6922,11 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6732
6922
|
]
|
|
6733
6923
|
};
|
|
6734
6924
|
});
|
|
6925
|
+
const appStore = context.useAppStore();
|
|
6926
|
+
const objectDef = vue.computed(
|
|
6927
|
+
() => `neu:operasional:progress:${id.value}`
|
|
6928
|
+
);
|
|
6929
|
+
const display2 = vue.ref();
|
|
6735
6930
|
return (_ctx, _cache) => {
|
|
6736
6931
|
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-single" }, {
|
|
6737
6932
|
default: vue.withCtx(() => [
|
|
@@ -6831,23 +7026,43 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6831
7026
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6832
7027
|
field: vue.unref(fields).staffs
|
|
6833
7028
|
}, null, 8, ["modelValue", "field"]),
|
|
7029
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7030
|
+
modelValue: vue.unref(values).isNotes,
|
|
7031
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).isNotes = $event)
|
|
7032
|
+
}, vue.unref(fields).isNotes), {
|
|
7033
|
+
input: vue.withCtx(() => [
|
|
7034
|
+
vue.createVNode(vue.unref(form.NeonCheck), {
|
|
7035
|
+
modelValue: vue.unref(values).isNotes,
|
|
7036
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => vue.unref(values).isNotes = $event),
|
|
7037
|
+
label: "Catatan",
|
|
7038
|
+
class: "mt-2"
|
|
7039
|
+
}, null, 8, ["modelValue"])
|
|
7040
|
+
]),
|
|
7041
|
+
_: 1
|
|
7042
|
+
/* STABLE */
|
|
7043
|
+
}, 16, ["modelValue"]),
|
|
7044
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7045
|
+
modelValue: vue.unref(values),
|
|
7046
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7047
|
+
field: vue.unref(fields).accessStaffs
|
|
7048
|
+
}, null, 8, ["modelValue", "field"]),
|
|
6834
7049
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
6835
7050
|
"is-dashed": "",
|
|
6836
7051
|
label: "Referensi"
|
|
6837
7052
|
}),
|
|
6838
7053
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
6839
7054
|
modelValue: vue.unref(values),
|
|
6840
|
-
"onUpdate:modelValue": _cache[
|
|
7055
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6841
7056
|
field: vue.unref(fields).responsibilities,
|
|
6842
7057
|
query: vue.unref(query.Query).define(responsibilityOptions.value)
|
|
6843
7058
|
}, null, 8, ["modelValue", "field", "query"]),
|
|
7059
|
+
vue.createCommentVNode(' <OfficeRelation v-model="values" :field="fields.plans" /> '),
|
|
6844
7060
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
6845
7061
|
modelValue: vue.unref(values),
|
|
6846
|
-
"onUpdate:modelValue": _cache[
|
|
7062
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
6847
7063
|
field: vue.unref(fields).submissions,
|
|
6848
7064
|
query: vue.unref(query.Query).define(submissionOptions.value)
|
|
6849
|
-
}, null, 8, ["modelValue", "field", "query"])
|
|
6850
|
-
vue.createCommentVNode(' <OfficeRelation v-model="values" :field="fields.plans" /> ')
|
|
7065
|
+
}, null, 8, ["modelValue", "field", "query"])
|
|
6851
7066
|
]),
|
|
6852
7067
|
_: 1
|
|
6853
7068
|
/* STABLE */
|
|
@@ -6855,7 +7070,25 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6855
7070
|
]),
|
|
6856
7071
|
_: 1
|
|
6857
7072
|
/* STABLE */
|
|
6858
|
-
})
|
|
7073
|
+
}),
|
|
7074
|
+
vue.createCommentVNode(" Catatan "),
|
|
7075
|
+
!vue.unref(isNew) && vue.unref(values).isNotes === true ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeTab), {
|
|
7076
|
+
key: 0,
|
|
7077
|
+
handle: "catatan",
|
|
7078
|
+
icon: "circle-info",
|
|
7079
|
+
title: "Catatan"
|
|
7080
|
+
}, {
|
|
7081
|
+
default: vue.withCtx(({ isTouched }) => [
|
|
7082
|
+
vue.createVNode(vue.unref(catatInterfaces.CatatPaperPad), vue.mergeProps({
|
|
7083
|
+
applicationId: vue.unref(appStore).appId,
|
|
7084
|
+
object: `${objectDef.value}:office`,
|
|
7085
|
+
isReady: vue.unref(isReady) && isTouched,
|
|
7086
|
+
isLoading: vue.unref(isLoading)
|
|
7087
|
+
}, { display: display2.value }), null, 16, ["display"])
|
|
7088
|
+
]),
|
|
7089
|
+
_: 1
|
|
7090
|
+
/* STABLE */
|
|
7091
|
+
})) : vue.createCommentVNode("v-if", true)
|
|
6859
7092
|
]),
|
|
6860
7093
|
_: 1
|
|
6861
7094
|
/* STABLE */
|
|
@@ -6867,13 +7100,14 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6867
7100
|
};
|
|
6868
7101
|
}
|
|
6869
7102
|
});
|
|
6870
|
-
const
|
|
6871
|
-
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7103
|
+
const ProgressTomorrow_vue_vue_type_style_index_0_scoped_41302f2e_lang = "";
|
|
7104
|
+
const ProgressTomorrow = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-41302f2e"]]);
|
|
6872
7105
|
const _hoisted_1$3 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
6873
7106
|
const _hoisted_2$3 = { class: "text-right text-fg-subdued text-sm" };
|
|
6874
|
-
const _sfc_main$
|
|
7107
|
+
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
6875
7108
|
__name: "ProgressYesterday",
|
|
6876
7109
|
setup(__props) {
|
|
7110
|
+
var _a;
|
|
6877
7111
|
const {
|
|
6878
7112
|
fields,
|
|
6879
7113
|
id,
|
|
@@ -6889,7 +7123,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6889
7123
|
} = context.useSingle();
|
|
6890
7124
|
const { staff } = useOperasional();
|
|
6891
7125
|
const responsibilityOptions = vue.computed(() => {
|
|
6892
|
-
var
|
|
7126
|
+
var _a2, _b;
|
|
6893
7127
|
return {
|
|
6894
7128
|
filter: [
|
|
6895
7129
|
{
|
|
@@ -6902,7 +7136,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6902
7136
|
{
|
|
6903
7137
|
handle: "staffWorkIds",
|
|
6904
7138
|
operator: "in",
|
|
6905
|
-
value: (
|
|
7139
|
+
value: (_a2 = staff.value) == null ? void 0 : _a2.id
|
|
6906
7140
|
},
|
|
6907
7141
|
{
|
|
6908
7142
|
handle: "staffSuperviseIds",
|
|
@@ -6937,14 +7171,20 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6937
7171
|
}
|
|
6938
7172
|
const sekarang = DateUtil.day(/* @__PURE__ */ new Date());
|
|
6939
7173
|
const besok = sekarang.add(-1, "day");
|
|
7174
|
+
const staffId = ((_a = staff.value) == null ? void 0 : _a.id) || "";
|
|
6940
7175
|
vue.watch(
|
|
6941
7176
|
isNew,
|
|
6942
7177
|
(isNew2) => {
|
|
6943
|
-
var
|
|
7178
|
+
var _a2;
|
|
6944
7179
|
if (!isNew2)
|
|
6945
7180
|
return;
|
|
6946
|
-
values.value.staffIds =
|
|
6947
|
-
values.value.staffs =
|
|
7181
|
+
values.value.staffIds = [staffId];
|
|
7182
|
+
values.value.staffs = [
|
|
7183
|
+
{
|
|
7184
|
+
id: staffId,
|
|
7185
|
+
flag: (_a2 = staff.value) == null ? void 0 : _a2.flag
|
|
7186
|
+
}
|
|
7187
|
+
];
|
|
6948
7188
|
values.value.startedAt = besok.second(0).millisecond(0).toISOString();
|
|
6949
7189
|
values.value.endedAt = besok.add(90, "m").toISOString();
|
|
6950
7190
|
},
|
|
@@ -6968,6 +7208,11 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
6968
7208
|
]
|
|
6969
7209
|
};
|
|
6970
7210
|
});
|
|
7211
|
+
const appStore = context.useAppStore();
|
|
7212
|
+
const objectDef = vue.computed(
|
|
7213
|
+
() => `neu:operasional:progress:${id.value}`
|
|
7214
|
+
);
|
|
7215
|
+
const display2 = vue.ref();
|
|
6971
7216
|
return (_ctx, _cache) => {
|
|
6972
7217
|
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-single" }, {
|
|
6973
7218
|
default: vue.withCtx(() => [
|
|
@@ -7067,24 +7312,40 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7067
7312
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7068
7313
|
field: vue.unref(fields).staffs
|
|
7069
7314
|
}, null, 8, ["modelValue", "field"]),
|
|
7315
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7316
|
+
modelValue: vue.unref(values).isNotes,
|
|
7317
|
+
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => vue.unref(values).isNotes = $event)
|
|
7318
|
+
}, vue.unref(fields).isNotes), {
|
|
7319
|
+
input: vue.withCtx(() => [
|
|
7320
|
+
vue.createVNode(vue.unref(form.NeonCheck), {
|
|
7321
|
+
modelValue: vue.unref(values).isNotes,
|
|
7322
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => vue.unref(values).isNotes = $event),
|
|
7323
|
+
label: "Catatan",
|
|
7324
|
+
class: "mt-2"
|
|
7325
|
+
}, null, 8, ["modelValue"])
|
|
7326
|
+
]),
|
|
7327
|
+
_: 1
|
|
7328
|
+
/* STABLE */
|
|
7329
|
+
}, 16, ["modelValue"]),
|
|
7330
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7331
|
+
modelValue: vue.unref(values),
|
|
7332
|
+
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7333
|
+
field: vue.unref(fields).accessStaffs
|
|
7334
|
+
}, null, 8, ["modelValue", "field"]),
|
|
7070
7335
|
vue.createVNode(vue.unref(interfaces.NeonDivider), {
|
|
7071
7336
|
"is-dashed": "",
|
|
7072
7337
|
label: "Referensi"
|
|
7073
7338
|
}),
|
|
7074
7339
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7075
7340
|
modelValue: vue.unref(values),
|
|
7076
|
-
"onUpdate:modelValue": _cache[
|
|
7341
|
+
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7077
7342
|
field: vue.unref(fields).responsibilities,
|
|
7078
7343
|
query: vue.unref(query.Query).define(responsibilityOptions.value)
|
|
7079
7344
|
}, null, 8, ["modelValue", "field", "query"]),
|
|
7345
|
+
vue.createCommentVNode(' <OfficeRelation v-model="values" :field="fields.plans" /> '),
|
|
7080
7346
|
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7081
7347
|
modelValue: vue.unref(values),
|
|
7082
|
-
"onUpdate:modelValue": _cache[
|
|
7083
|
-
field: vue.unref(fields).plans
|
|
7084
|
-
}, null, 8, ["modelValue", "field"]),
|
|
7085
|
-
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7086
|
-
modelValue: vue.unref(values),
|
|
7087
|
-
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7348
|
+
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7088
7349
|
field: vue.unref(fields).submissions,
|
|
7089
7350
|
query: vue.unref(query.Query).define(submissionOptions.value)
|
|
7090
7351
|
}, null, 8, ["modelValue", "field", "query"])
|
|
@@ -7095,7 +7356,185 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7095
7356
|
]),
|
|
7096
7357
|
_: 1
|
|
7097
7358
|
/* STABLE */
|
|
7098
|
-
})
|
|
7359
|
+
}),
|
|
7360
|
+
vue.createCommentVNode(" Catatan "),
|
|
7361
|
+
!vue.unref(isNew) && vue.unref(values).isNotes === true ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeTab), {
|
|
7362
|
+
key: 0,
|
|
7363
|
+
handle: "catatan",
|
|
7364
|
+
icon: "circle-info",
|
|
7365
|
+
title: "Catatan"
|
|
7366
|
+
}, {
|
|
7367
|
+
default: vue.withCtx(({ isTouched }) => [
|
|
7368
|
+
vue.createVNode(vue.unref(catatInterfaces.CatatPaperPad), vue.mergeProps({
|
|
7369
|
+
applicationId: vue.unref(appStore).appId,
|
|
7370
|
+
object: `${objectDef.value}:office`,
|
|
7371
|
+
isReady: vue.unref(isReady) && isTouched,
|
|
7372
|
+
isLoading: vue.unref(isLoading)
|
|
7373
|
+
}, { display: display2.value }), null, 16, ["display"])
|
|
7374
|
+
]),
|
|
7375
|
+
_: 1
|
|
7376
|
+
/* STABLE */
|
|
7377
|
+
})) : vue.createCommentVNode("v-if", true)
|
|
7378
|
+
]),
|
|
7379
|
+
_: 1
|
|
7380
|
+
/* STABLE */
|
|
7381
|
+
}, 8, ["use-url"])
|
|
7382
|
+
]),
|
|
7383
|
+
_: 1
|
|
7384
|
+
/* STABLE */
|
|
7385
|
+
});
|
|
7386
|
+
};
|
|
7387
|
+
}
|
|
7388
|
+
});
|
|
7389
|
+
const ProgressYesterday_vue_vue_type_style_index_0_scoped_78de8f41_lang = "";
|
|
7390
|
+
const ProgressYesterday = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-78de8f41"]]);
|
|
7391
|
+
const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({
|
|
7392
|
+
__name: "ProgressNote",
|
|
7393
|
+
setup(__props) {
|
|
7394
|
+
var _a;
|
|
7395
|
+
const {
|
|
7396
|
+
fields,
|
|
7397
|
+
id,
|
|
7398
|
+
initialValues,
|
|
7399
|
+
values,
|
|
7400
|
+
isLoading,
|
|
7401
|
+
isChanged,
|
|
7402
|
+
isReady,
|
|
7403
|
+
isMain,
|
|
7404
|
+
isNew,
|
|
7405
|
+
saveOne,
|
|
7406
|
+
discardChanges
|
|
7407
|
+
} = context.useSingle();
|
|
7408
|
+
const { staff } = useOperasional();
|
|
7409
|
+
const sekarang = DateUtil.day(/* @__PURE__ */ new Date());
|
|
7410
|
+
const besok = sekarang;
|
|
7411
|
+
const staffId = ((_a = staff.value) == null ? void 0 : _a.id) || "";
|
|
7412
|
+
vue.watch(
|
|
7413
|
+
isNew,
|
|
7414
|
+
(isNew2) => {
|
|
7415
|
+
var _a2, _b;
|
|
7416
|
+
if (!isNew2)
|
|
7417
|
+
return;
|
|
7418
|
+
values.value.staffIds = [staffId];
|
|
7419
|
+
values.value.staffs = [
|
|
7420
|
+
{
|
|
7421
|
+
id: staffId,
|
|
7422
|
+
flag: (_a2 = staff.value) == null ? void 0 : _a2.flag
|
|
7423
|
+
}
|
|
7424
|
+
];
|
|
7425
|
+
values.value.accessStaffIds = [staffId];
|
|
7426
|
+
values.value.accessStaffs = [
|
|
7427
|
+
{
|
|
7428
|
+
id: staffId,
|
|
7429
|
+
flag: (_b = staff.value) == null ? void 0 : _b.flag
|
|
7430
|
+
}
|
|
7431
|
+
];
|
|
7432
|
+
values.value.startedAt = besok.second(0).millisecond(0).toISOString();
|
|
7433
|
+
values.value.endedAt = besok.add(90, "m").toISOString();
|
|
7434
|
+
values.value.isNotes = true;
|
|
7435
|
+
values.value.virtualIsNotes = "active";
|
|
7436
|
+
},
|
|
7437
|
+
{
|
|
7438
|
+
immediate: true
|
|
7439
|
+
}
|
|
7440
|
+
);
|
|
7441
|
+
const appStore = context.useAppStore();
|
|
7442
|
+
const objectDef = vue.computed(
|
|
7443
|
+
() => `neu:operasional:progress:${id.value}`
|
|
7444
|
+
);
|
|
7445
|
+
const display2 = vue.ref();
|
|
7446
|
+
return (_ctx, _cache) => {
|
|
7447
|
+
return vue.openBlock(), vue.createBlock(vue.unref(context.NeonSingle), { class: "neu-progress-single" }, {
|
|
7448
|
+
default: vue.withCtx(() => [
|
|
7449
|
+
vue.createVNode(vue.unref(office.OfficeTabs), { "use-url": vue.unref(isMain) }, {
|
|
7450
|
+
default: vue.withCtx(() => [
|
|
7451
|
+
vue.createVNode(vue.unref(office.OfficeTab), {
|
|
7452
|
+
handle: "info",
|
|
7453
|
+
icon: "circle-info",
|
|
7454
|
+
title: "Info"
|
|
7455
|
+
}, {
|
|
7456
|
+
default: vue.withCtx(() => [
|
|
7457
|
+
vue.createVNode(vue.unref(form.NeonForm), {
|
|
7458
|
+
handle: "info",
|
|
7459
|
+
"initial-values": vue.unref(initialValues),
|
|
7460
|
+
"is-loading": vue.unref(isLoading),
|
|
7461
|
+
"is-changed": vue.unref(isChanged),
|
|
7462
|
+
"use-unsaved": "",
|
|
7463
|
+
onCancel: vue.unref(discardChanges),
|
|
7464
|
+
onSubmit: vue.unref(saveOne)
|
|
7465
|
+
}, {
|
|
7466
|
+
default: vue.withCtx(() => [
|
|
7467
|
+
vue.createVNode(vue.unref(form.NeonFields), { md: "grid-cols-2" }, {
|
|
7468
|
+
default: vue.withCtx(() => [
|
|
7469
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7470
|
+
modelValue: vue.unref(values).startedAt,
|
|
7471
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.unref(values).startedAt = $event)
|
|
7472
|
+
}, vue.unref(fields).startedAt, { "is-disabled": "" }), null, 16, ["modelValue"]),
|
|
7473
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7474
|
+
modelValue: vue.unref(values).detail,
|
|
7475
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.unref(values).detail = $event)
|
|
7476
|
+
}, vue.unref(fields).detail), null, 16, ["modelValue"])
|
|
7477
|
+
]),
|
|
7478
|
+
_: 1
|
|
7479
|
+
/* STABLE */
|
|
7480
|
+
}),
|
|
7481
|
+
vue.unref(isNew) ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeRelation), {
|
|
7482
|
+
key: 0,
|
|
7483
|
+
modelValue: vue.unref(values),
|
|
7484
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7485
|
+
field: vue.unref(fields).staffs
|
|
7486
|
+
}, null, 8, ["modelValue", "field"])) : vue.createCommentVNode("v-if", true),
|
|
7487
|
+
vue.createVNode(vue.unref(office.OfficeRelation), {
|
|
7488
|
+
modelValue: vue.unref(values),
|
|
7489
|
+
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => vue.isRef(values) ? values.value = $event : null),
|
|
7490
|
+
field: vue.unref(fields).accessStaffs
|
|
7491
|
+
}, null, 8, ["modelValue", "field"]),
|
|
7492
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7493
|
+
modelValue: vue.unref(values).priority,
|
|
7494
|
+
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => vue.unref(values).priority = $event)
|
|
7495
|
+
}, vue.unref(fields).priority), null, 16, ["modelValue"]),
|
|
7496
|
+
vue.createVNode(vue.unref(form.NeonField), vue.mergeProps({
|
|
7497
|
+
modelValue: vue.unref(values).isNotes,
|
|
7498
|
+
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => vue.unref(values).isNotes = $event)
|
|
7499
|
+
}, vue.unref(fields).isNotes), {
|
|
7500
|
+
input: vue.withCtx(() => [
|
|
7501
|
+
vue.createVNode(vue.unref(form.NeonCheck), {
|
|
7502
|
+
modelValue: vue.unref(values).isNotes,
|
|
7503
|
+
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => vue.unref(values).isNotes = $event),
|
|
7504
|
+
label: "Catatan",
|
|
7505
|
+
class: "mt-2",
|
|
7506
|
+
"is-disabled": ""
|
|
7507
|
+
}, null, 8, ["modelValue"])
|
|
7508
|
+
]),
|
|
7509
|
+
_: 1
|
|
7510
|
+
/* STABLE */
|
|
7511
|
+
}, 16, ["modelValue"])
|
|
7512
|
+
]),
|
|
7513
|
+
_: 1
|
|
7514
|
+
/* STABLE */
|
|
7515
|
+
}, 8, ["initial-values", "is-loading", "is-changed", "onCancel", "onSubmit"])
|
|
7516
|
+
]),
|
|
7517
|
+
_: 1
|
|
7518
|
+
/* STABLE */
|
|
7519
|
+
}),
|
|
7520
|
+
vue.createCommentVNode(" Catatan "),
|
|
7521
|
+
!vue.unref(isNew) && vue.unref(values).isNotes === true ? (vue.openBlock(), vue.createBlock(vue.unref(office.OfficeTab), {
|
|
7522
|
+
key: 0,
|
|
7523
|
+
handle: "catatan",
|
|
7524
|
+
icon: "circle-info",
|
|
7525
|
+
title: "Catatan"
|
|
7526
|
+
}, {
|
|
7527
|
+
default: vue.withCtx(({ isTouched }) => [
|
|
7528
|
+
vue.createVNode(vue.unref(catatInterfaces.CatatPaperPad), vue.mergeProps({
|
|
7529
|
+
applicationId: vue.unref(appStore).appId,
|
|
7530
|
+
object: `${objectDef.value}:office`,
|
|
7531
|
+
isReady: vue.unref(isReady) && isTouched,
|
|
7532
|
+
isLoading: vue.unref(isLoading)
|
|
7533
|
+
}, { display: display2.value }), null, 16, ["display"])
|
|
7534
|
+
]),
|
|
7535
|
+
_: 1
|
|
7536
|
+
/* STABLE */
|
|
7537
|
+
})) : vue.createCommentVNode("v-if", true)
|
|
7099
7538
|
]),
|
|
7100
7539
|
_: 1
|
|
7101
7540
|
/* STABLE */
|
|
@@ -7107,10 +7546,10 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7107
7546
|
};
|
|
7108
7547
|
}
|
|
7109
7548
|
});
|
|
7110
|
-
const
|
|
7111
|
-
const
|
|
7549
|
+
const ProgressNote_vue_vue_type_style_index_0_scoped_cee18889_lang = "";
|
|
7550
|
+
const ProgressNote = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-cee18889"]]);
|
|
7112
7551
|
const AttendanceModel = personaliaModels.models.AttendanceModel;
|
|
7113
|
-
const _sfc_main$
|
|
7552
|
+
const _sfc_main$6 = /* @__PURE__ */ vue.defineComponent({
|
|
7114
7553
|
...{
|
|
7115
7554
|
name: "AttendanceCollection"
|
|
7116
7555
|
},
|
|
@@ -7130,7 +7569,7 @@ const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7130
7569
|
});
|
|
7131
7570
|
const _hoisted_1$2 = { class: "grid gap-2 sm:grid-cols-2" };
|
|
7132
7571
|
const _hoisted_2$2 = { class: "text-right text-fg-subdued text-sm" };
|
|
7133
|
-
const _sfc_main$
|
|
7572
|
+
const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
7134
7573
|
__name: "AttendanceSingle",
|
|
7135
7574
|
setup(__props) {
|
|
7136
7575
|
const {
|
|
@@ -7312,7 +7751,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7312
7751
|
}
|
|
7313
7752
|
});
|
|
7314
7753
|
const AttendanceSingle_vue_vue_type_style_index_0_scoped_0c3c6187_lang = "";
|
|
7315
|
-
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7754
|
+
const AttendanceSingle = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-0c3c6187"]]);
|
|
7316
7755
|
const _hoisted_1$1 = {
|
|
7317
7756
|
key: 1,
|
|
7318
7757
|
class: "flex flex-wrap"
|
|
@@ -7334,7 +7773,7 @@ const _hoisted_8$1 = {
|
|
|
7334
7773
|
class: "grid gap-2 sm:grid-cols-2"
|
|
7335
7774
|
};
|
|
7336
7775
|
const _hoisted_9$1 = { class: "text-right text-fg-subdued text-sm" };
|
|
7337
|
-
const _sfc_main$
|
|
7776
|
+
const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
7338
7777
|
__name: "AttendanceStaff",
|
|
7339
7778
|
setup(__props) {
|
|
7340
7779
|
var _a;
|
|
@@ -7714,7 +8153,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
7714
8153
|
}
|
|
7715
8154
|
});
|
|
7716
8155
|
const AttendanceStaff_vue_vue_type_style_index_0_scoped_724535b0_lang = "";
|
|
7717
|
-
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8156
|
+
const AttendanceStaff = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-724535b0"]]);
|
|
7718
8157
|
const _hoisted_1 = { class: "flex flex-wrap" };
|
|
7719
8158
|
const _hoisted_2 = { class: "mt-2" };
|
|
7720
8159
|
const _hoisted_3 = { class: "mt-2" };
|
|
@@ -7733,7 +8172,7 @@ const _hoisted_8 = {
|
|
|
7733
8172
|
class: "grid gap-2 sm:grid-cols-2"
|
|
7734
8173
|
};
|
|
7735
8174
|
const _hoisted_9 = { class: "text-right text-fg-subdued text-sm" };
|
|
7736
|
-
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
8175
|
+
const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|
|
7737
8176
|
__name: "AttendanceManager",
|
|
7738
8177
|
setup(__props) {
|
|
7739
8178
|
var _a;
|
|
@@ -8094,79 +8533,241 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
8094
8533
|
}
|
|
8095
8534
|
});
|
|
8096
8535
|
const AttendanceManager_vue_vue_type_style_index_0_scoped_643cca03_lang = "";
|
|
8097
|
-
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"]]);
|
|
8098
8694
|
const components = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
8099
8695
|
__proto__: null,
|
|
8100
|
-
AttendanceCollection: _sfc_main$
|
|
8696
|
+
AttendanceCollection: _sfc_main$6,
|
|
8101
8697
|
AttendanceManager,
|
|
8102
8698
|
AttendanceModel,
|
|
8103
8699
|
AttendanceSingle,
|
|
8104
8700
|
AttendanceStaff,
|
|
8105
8701
|
CheckInAccess,
|
|
8106
|
-
CheckInCollection: _sfc_main$
|
|
8702
|
+
CheckInCollection: _sfc_main$N,
|
|
8107
8703
|
CheckInExternal,
|
|
8108
8704
|
CheckInModel,
|
|
8109
8705
|
CheckInPresenceCollection,
|
|
8110
|
-
CheckInScanError: _sfc_main$
|
|
8111
|
-
CheckInScanSuccess: _sfc_main$
|
|
8706
|
+
CheckInScanError: _sfc_main$Q,
|
|
8707
|
+
CheckInScanSuccess: _sfc_main$O,
|
|
8112
8708
|
CheckInScanner,
|
|
8113
8709
|
CheckInSingle,
|
|
8114
8710
|
NeonTime,
|
|
8115
8711
|
OperasionalIdentitas,
|
|
8116
|
-
PlanCollection: _sfc_main$
|
|
8712
|
+
PlanCollection: _sfc_main$f,
|
|
8117
8713
|
PlanModel,
|
|
8118
8714
|
PlanSingle,
|
|
8119
8715
|
PlanStaff,
|
|
8120
|
-
PlanTypeCollection: _sfc_main$
|
|
8716
|
+
PlanTypeCollection: _sfc_main$h,
|
|
8121
8717
|
PlanTypeModel,
|
|
8122
8718
|
PlanTypeSingle,
|
|
8123
|
-
|
|
8719
|
+
ProgressAccessCollection: _sfc_main$2,
|
|
8720
|
+
ProgressAccessModel,
|
|
8721
|
+
ProgressAccessSingle,
|
|
8722
|
+
ProgressAccessSupervisor,
|
|
8723
|
+
ProgressButton: _sfc_main$c,
|
|
8124
8724
|
ProgressCollection,
|
|
8125
8725
|
ProgressModel,
|
|
8726
|
+
ProgressNote,
|
|
8126
8727
|
ProgressSingle,
|
|
8127
8728
|
ProgressTomorrow,
|
|
8128
8729
|
ProgressYesterday,
|
|
8129
|
-
ResponsibilityCollection: _sfc_main$
|
|
8730
|
+
ResponsibilityCollection: _sfc_main$n,
|
|
8130
8731
|
ResponsibilityModel,
|
|
8131
8732
|
ResponsibilitySingle,
|
|
8132
8733
|
ResponsibilityStaff,
|
|
8133
|
-
ResponsibilityTypeCollection: _sfc_main$
|
|
8734
|
+
ResponsibilityTypeCollection: _sfc_main$p,
|
|
8134
8735
|
ResponsibilityTypeModel,
|
|
8135
8736
|
ResponsibilityTypeSingle,
|
|
8136
|
-
SituationCollection: _sfc_main$
|
|
8737
|
+
SituationCollection: _sfc_main$I,
|
|
8137
8738
|
SituationModel,
|
|
8138
|
-
SituationSingle: _sfc_main$
|
|
8139
|
-
SituationSupportive: _sfc_main$
|
|
8140
|
-
SituationTypeCollection: _sfc_main$
|
|
8739
|
+
SituationSingle: _sfc_main$H,
|
|
8740
|
+
SituationSupportive: _sfc_main$F,
|
|
8741
|
+
SituationTypeCollection: _sfc_main$E,
|
|
8141
8742
|
SituationTypeModel,
|
|
8142
|
-
SituationTypeSingle: _sfc_main$
|
|
8143
|
-
SituationWork: _sfc_main$
|
|
8144
|
-
StaffCollection: _sfc_main$
|
|
8145
|
-
StaffIdentity: _sfc_main$
|
|
8743
|
+
SituationTypeSingle: _sfc_main$D,
|
|
8744
|
+
SituationWork: _sfc_main$G,
|
|
8745
|
+
StaffCollection: _sfc_main$M,
|
|
8746
|
+
StaffIdentity: _sfc_main$J,
|
|
8146
8747
|
StaffModel,
|
|
8147
8748
|
StaffOperasional,
|
|
8148
8749
|
StaffSingle,
|
|
8149
8750
|
SubmissionAudit,
|
|
8150
|
-
SubmissionCollection: _sfc_main$
|
|
8751
|
+
SubmissionCollection: _sfc_main$y,
|
|
8151
8752
|
SubmissionDecision,
|
|
8152
8753
|
SubmissionFollowUp,
|
|
8153
8754
|
SubmissionModel,
|
|
8154
8755
|
SubmissionSingle,
|
|
8155
8756
|
SubmissionStaff,
|
|
8156
|
-
SubmissionTypeCollection: _sfc_main$
|
|
8757
|
+
SubmissionTypeCollection: _sfc_main$r,
|
|
8157
8758
|
SubmissionTypeModel,
|
|
8158
8759
|
SubmissionTypeSingle,
|
|
8159
8760
|
SubmissionWaitingDecision,
|
|
8160
8761
|
TargetBranch,
|
|
8161
|
-
TargetCollection: _sfc_main$
|
|
8762
|
+
TargetCollection: _sfc_main$k,
|
|
8162
8763
|
TargetModel,
|
|
8163
8764
|
TargetSingle,
|
|
8164
|
-
TaskCollection: _sfc_main$
|
|
8765
|
+
TaskCollection: _sfc_main$B,
|
|
8165
8766
|
TaskModel,
|
|
8166
|
-
TaskSingle: _sfc_main$
|
|
8167
|
-
TaskWork: _sfc_main$
|
|
8168
|
-
TaskWorkButton: _sfc_main$
|
|
8169
|
-
XxxButton: _sfc_main$
|
|
8767
|
+
TaskSingle: _sfc_main$A,
|
|
8768
|
+
TaskWork: _sfc_main$z,
|
|
8769
|
+
TaskWorkButton: _sfc_main$C,
|
|
8770
|
+
XxxButton: _sfc_main$X
|
|
8170
8771
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
8171
8772
|
function registerComponents(app) {
|
|
8172
8773
|
Object.entries(components).forEach(([name, component2]) => {
|
|
@@ -8181,79 +8782,84 @@ const OperasionalInterfacesPlugin = {
|
|
|
8181
8782
|
registerComponents(app);
|
|
8182
8783
|
}
|
|
8183
8784
|
};
|
|
8184
|
-
exports.AttendanceCollection = _sfc_main$
|
|
8785
|
+
exports.AttendanceCollection = _sfc_main$6;
|
|
8185
8786
|
exports.AttendanceManager = AttendanceManager;
|
|
8186
8787
|
exports.AttendanceModel = AttendanceModel;
|
|
8187
8788
|
exports.AttendanceSingle = AttendanceSingle;
|
|
8188
8789
|
exports.AttendanceStaff = AttendanceStaff;
|
|
8189
8790
|
exports.CheckInAccess = CheckInAccess;
|
|
8190
|
-
exports.CheckInCollection = _sfc_main$
|
|
8791
|
+
exports.CheckInCollection = _sfc_main$N;
|
|
8191
8792
|
exports.CheckInExternal = CheckInExternal;
|
|
8192
8793
|
exports.CheckInModel = CheckInModel;
|
|
8193
8794
|
exports.CheckInPresenceCollection = CheckInPresenceCollection;
|
|
8194
|
-
exports.CheckInScanError = _sfc_main$
|
|
8195
|
-
exports.CheckInScanSuccess = _sfc_main$
|
|
8795
|
+
exports.CheckInScanError = _sfc_main$Q;
|
|
8796
|
+
exports.CheckInScanSuccess = _sfc_main$O;
|
|
8196
8797
|
exports.CheckInScanner = CheckInScanner;
|
|
8197
8798
|
exports.CheckInSingle = CheckInSingle;
|
|
8198
8799
|
exports.NOperasional = operasional_types;
|
|
8199
8800
|
exports.NeonTime = NeonTime;
|
|
8200
8801
|
exports.OperasionalIdentitas = OperasionalIdentitas;
|
|
8201
8802
|
exports.OperasionalInterfacesPlugin = OperasionalInterfacesPlugin;
|
|
8202
|
-
exports.PlanCollection = _sfc_main$
|
|
8803
|
+
exports.PlanCollection = _sfc_main$f;
|
|
8203
8804
|
exports.PlanModel = PlanModel;
|
|
8204
8805
|
exports.PlanSingle = PlanSingle;
|
|
8205
8806
|
exports.PlanStaff = PlanStaff;
|
|
8206
|
-
exports.PlanTypeCollection = _sfc_main$
|
|
8807
|
+
exports.PlanTypeCollection = _sfc_main$h;
|
|
8207
8808
|
exports.PlanTypeModel = PlanTypeModel;
|
|
8208
8809
|
exports.PlanTypeSingle = PlanTypeSingle;
|
|
8209
|
-
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;
|
|
8210
8815
|
exports.ProgressCollection = ProgressCollection;
|
|
8211
8816
|
exports.ProgressModel = ProgressModel;
|
|
8817
|
+
exports.ProgressNote = ProgressNote;
|
|
8212
8818
|
exports.ProgressSingle = ProgressSingle;
|
|
8213
8819
|
exports.ProgressTomorrow = ProgressTomorrow;
|
|
8214
8820
|
exports.ProgressYesterday = ProgressYesterday;
|
|
8215
|
-
exports.ResponsibilityCollection = _sfc_main$
|
|
8821
|
+
exports.ResponsibilityCollection = _sfc_main$n;
|
|
8216
8822
|
exports.ResponsibilityModel = ResponsibilityModel;
|
|
8217
8823
|
exports.ResponsibilitySingle = ResponsibilitySingle;
|
|
8218
8824
|
exports.ResponsibilityStaff = ResponsibilityStaff;
|
|
8219
|
-
exports.ResponsibilityTypeCollection = _sfc_main$
|
|
8825
|
+
exports.ResponsibilityTypeCollection = _sfc_main$p;
|
|
8220
8826
|
exports.ResponsibilityTypeModel = ResponsibilityTypeModel;
|
|
8221
8827
|
exports.ResponsibilityTypeSingle = ResponsibilityTypeSingle;
|
|
8222
8828
|
exports.Schema = graphql;
|
|
8223
|
-
exports.SituationCollection = _sfc_main$
|
|
8829
|
+
exports.SituationCollection = _sfc_main$I;
|
|
8224
8830
|
exports.SituationModel = SituationModel;
|
|
8225
|
-
exports.SituationSingle = _sfc_main$
|
|
8226
|
-
exports.SituationSupportive = _sfc_main$
|
|
8227
|
-
exports.SituationTypeCollection = _sfc_main$
|
|
8831
|
+
exports.SituationSingle = _sfc_main$H;
|
|
8832
|
+
exports.SituationSupportive = _sfc_main$F;
|
|
8833
|
+
exports.SituationTypeCollection = _sfc_main$E;
|
|
8228
8834
|
exports.SituationTypeModel = SituationTypeModel;
|
|
8229
|
-
exports.SituationTypeSingle = _sfc_main$
|
|
8230
|
-
exports.SituationWork = _sfc_main$
|
|
8231
|
-
exports.StaffCollection = _sfc_main$
|
|
8232
|
-
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;
|
|
8233
8839
|
exports.StaffModel = StaffModel;
|
|
8234
8840
|
exports.StaffOperasional = StaffOperasional;
|
|
8235
8841
|
exports.StaffSingle = StaffSingle;
|
|
8236
8842
|
exports.SubmissionAudit = SubmissionAudit;
|
|
8237
|
-
exports.SubmissionCollection = _sfc_main$
|
|
8843
|
+
exports.SubmissionCollection = _sfc_main$y;
|
|
8238
8844
|
exports.SubmissionDecision = SubmissionDecision;
|
|
8239
8845
|
exports.SubmissionFollowUp = SubmissionFollowUp;
|
|
8240
8846
|
exports.SubmissionModel = SubmissionModel;
|
|
8241
8847
|
exports.SubmissionSingle = SubmissionSingle;
|
|
8242
8848
|
exports.SubmissionStaff = SubmissionStaff;
|
|
8243
|
-
exports.SubmissionTypeCollection = _sfc_main$
|
|
8849
|
+
exports.SubmissionTypeCollection = _sfc_main$r;
|
|
8244
8850
|
exports.SubmissionTypeModel = SubmissionTypeModel;
|
|
8245
8851
|
exports.SubmissionTypeSingle = SubmissionTypeSingle;
|
|
8246
8852
|
exports.SubmissionWaitingDecision = SubmissionWaitingDecision;
|
|
8247
8853
|
exports.TargetBranch = TargetBranch;
|
|
8248
|
-
exports.TargetCollection = _sfc_main$
|
|
8854
|
+
exports.TargetCollection = _sfc_main$k;
|
|
8249
8855
|
exports.TargetModel = TargetModel;
|
|
8250
8856
|
exports.TargetSingle = TargetSingle;
|
|
8251
|
-
exports.TaskCollection = _sfc_main$
|
|
8857
|
+
exports.TaskCollection = _sfc_main$B;
|
|
8252
8858
|
exports.TaskModel = TaskModel;
|
|
8253
|
-
exports.TaskSingle = _sfc_main$
|
|
8254
|
-
exports.TaskWork = _sfc_main$
|
|
8255
|
-
exports.TaskWorkButton = _sfc_main$
|
|
8256
|
-
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;
|
|
8257
8863
|
exports.bus = bus;
|
|
8258
8864
|
exports.useAttendanceStore = useAttendanceStore;
|
|
8259
8865
|
exports.useOperasional = useOperasional;
|