@7365admin1/layer-common 3.1.2 → 3.1.3-staging.39
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/.github/workflows/publish-staging.yml +11 -0
- package/components/AddEqupmentForm.vue +52 -1
- package/components/CameraMain.vue +5 -6
- package/components/DashboardMain.vue +231 -87
- package/components/EquipmentManagementMain.vue +56 -0
- package/components/InvitationMain.vue +4 -3
- package/components/ManageChecklistMain.vue +44 -38
- package/components/Nfc/NFCPatrolReportMain.vue +146 -38
- package/components/Nfc/PatrolReport/DailyReportTab.vue +10 -6
- package/components/Nfc/PatrolReport/MonthlyReportTab.vue +19 -9
- package/components/Nfc/PatrolReport/MonthlyReportTable.vue +69 -0
- package/components/Nfc/PatrolReport/PatrolActivityTable.vue +20 -0
- package/components/Nfc/PatrolReport/PatrolReportTab.vue +5 -3
- package/components/Nfc/PatrolReport/ReportDatePicker.vue +61 -0
- package/components/Nfc/PatrolReport/ReportFilters.vue +52 -20
- package/components/Nfc/PatrolReport/SummaryReportTable.vue +22 -0
- package/components/PhotoUpload.vue +19 -4
- package/components/ServiceProviderMain.vue +59 -25
- package/components/VisitorForm.vue +78 -18
- package/components/VisitorManagement.vue +12 -16
- package/composables/useCleaningSchedulePermission.ts +16 -51
- package/composables/useEquipment.ts +2 -0
- package/composables/useLocalAuth.ts +1 -1
- package/composables/useNFCPatrolDailyReport.ts +3 -4
- package/composables/useNFCPatrolMonthlyReport.ts +62 -30
- package/composables/useNFCPatrolReport.ts +2 -0
- package/composables/useServiceProvider.ts +21 -0
- package/package.json +1 -1
- package/types/customer.d.ts +2 -1
- package/types/equipment.d.ts +5 -1
- package/types/nfc-patrol-report.ts +19 -1
|
@@ -1,58 +1,23 @@
|
|
|
1
1
|
export function useCleaningSchedulePermission() {
|
|
2
|
-
const { hasPermission } = usePermission();
|
|
3
|
-
const { permissions } = useCleaningPermission();
|
|
4
|
-
|
|
5
2
|
const { userAppRole } = useLocalSetup();
|
|
6
3
|
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "see-schedule-details");
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
const canDownloadSchedule = computed(() => {
|
|
20
|
-
if (!userAppRole.value) return false;
|
|
21
|
-
if (userAppRole.value.permissions.includes("*")) return true;
|
|
22
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "download-schedule");
|
|
23
|
-
});
|
|
24
|
-
|
|
25
|
-
const canManageScheduleTasks = computed(() => {
|
|
26
|
-
if (!userAppRole.value) return false;
|
|
27
|
-
if (userAppRole.value.permissions.includes("*")) return true;
|
|
28
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "manage-schedule-tasks");
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
const canGenerateChecklist = computed(() => {
|
|
32
|
-
if (!userAppRole.value) return false;
|
|
33
|
-
if (userAppRole.value.permissions.includes("*")) return true;
|
|
34
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "generate-checklist");
|
|
35
|
-
});
|
|
36
|
-
|
|
37
|
-
const canViewHistory = computed(() => {
|
|
38
|
-
if (!userAppRole.value) return false;
|
|
39
|
-
if (userAppRole.value.permissions.includes("*")) return true;
|
|
40
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "view-history");
|
|
41
|
-
});
|
|
42
|
-
|
|
43
|
-
const canAddRemarks = computed(() => {
|
|
44
|
-
if (!userAppRole.value) return false;
|
|
45
|
-
if (userAppRole.value.permissions.includes("*")) return true;
|
|
46
|
-
return hasPermission(userAppRole.value, permissions, "cleaning-schedule-mgmt", "add-remarks");
|
|
47
|
-
});
|
|
4
|
+
const can = (action: string) =>
|
|
5
|
+
computed(() => {
|
|
6
|
+
const permissions = userAppRole.value?.permissions;
|
|
7
|
+
if (!permissions) return false;
|
|
8
|
+
if (permissions.includes("*")) return true;
|
|
9
|
+
return permissions.some((permission) =>
|
|
10
|
+
permission.endsWith(`-schedule-mgmt:${action}`),
|
|
11
|
+
);
|
|
12
|
+
});
|
|
48
13
|
|
|
49
14
|
return {
|
|
50
|
-
canViewSchedules,
|
|
51
|
-
canViewScheduleDetails,
|
|
52
|
-
canDownloadSchedule,
|
|
53
|
-
canManageScheduleTasks,
|
|
54
|
-
canGenerateChecklist,
|
|
55
|
-
canViewHistory,
|
|
56
|
-
canAddRemarks,
|
|
15
|
+
canViewSchedules: can("see-all-schedules"),
|
|
16
|
+
canViewScheduleDetails: can("see-schedule-details"),
|
|
17
|
+
canDownloadSchedule: can("download-schedule"),
|
|
18
|
+
canManageScheduleTasks: can("manage-schedule-tasks"),
|
|
19
|
+
canGenerateChecklist: can("generate-checklist"),
|
|
20
|
+
canViewHistory: can("view-history"),
|
|
21
|
+
canAddRemarks: can("add-remarks"),
|
|
57
22
|
};
|
|
58
23
|
}
|
|
@@ -27,6 +27,7 @@ export default function useEquipment() {
|
|
|
27
27
|
name: payload.name,
|
|
28
28
|
unitOfMeasurement: payload.unitOfMeasurement,
|
|
29
29
|
serviceType,
|
|
30
|
+
...(payload.attachment ? { attachment: payload.attachment } : {}),
|
|
30
31
|
},
|
|
31
32
|
}
|
|
32
33
|
);
|
|
@@ -40,6 +41,7 @@ export default function useEquipment() {
|
|
|
40
41
|
body: {
|
|
41
42
|
name: payload.name,
|
|
42
43
|
unitOfMeasurement: payload.unitOfMeasurement,
|
|
44
|
+
...(payload.attachment ? { attachment: payload.attachment } : {}),
|
|
43
45
|
},
|
|
44
46
|
}
|
|
45
47
|
);
|
|
@@ -34,6 +34,8 @@ function mapLogToSummaryRow(log: Record<string, any>, index: number): NFCPatrolS
|
|
|
34
34
|
id: log._id,
|
|
35
35
|
routeName: `${index + 1}. ${log.route?.name ?? "-"}`,
|
|
36
36
|
securityCheckSchedule: log.route?.startTime ?? "-",
|
|
37
|
+
guardName: log.sign?.guardName,
|
|
38
|
+
guardSignatureFileId: log.sign?.guardSignatureFileId,
|
|
37
39
|
checked,
|
|
38
40
|
missed,
|
|
39
41
|
status: missed === 0 ? "Completed" : "Incomplete",
|
|
@@ -63,15 +65,12 @@ export function useNFCPatrolDailyReport(
|
|
|
63
65
|
|
|
64
66
|
try {
|
|
65
67
|
const [logsRes, siteInfo] = await Promise.all([
|
|
66
|
-
getPatrolLogs
|
|
68
|
+
getPatrolLogs({
|
|
67
69
|
page: 1,
|
|
68
70
|
limit: 100,
|
|
69
71
|
site,
|
|
70
72
|
date: filters.date,
|
|
71
73
|
routeId: filters.route,
|
|
72
|
-
routeStartTime: filters.timeRange
|
|
73
|
-
? filters.timeRange.split(" - ")[0]
|
|
74
|
-
: undefined,
|
|
75
74
|
}),
|
|
76
75
|
getSiteById(site),
|
|
77
76
|
]);
|
|
@@ -2,6 +2,8 @@ import type {
|
|
|
2
2
|
NFCPatrolReportFilters,
|
|
3
3
|
NFCPatrolSummaryReport,
|
|
4
4
|
NFCPatrolReportSummaryRow,
|
|
5
|
+
NFCPatrolMonthlyReportRow,
|
|
6
|
+
NFCPatrolMonthlyReport,
|
|
5
7
|
} from "../types/nfc-patrol-report";
|
|
6
8
|
import useNFCPatrolLog from "./useNFCPatrolLog";
|
|
7
9
|
import useSite from "./useSite";
|
|
@@ -12,6 +14,55 @@ interface NFCPatrolLogListResponse {
|
|
|
12
14
|
pageRange?: string;
|
|
13
15
|
}
|
|
14
16
|
|
|
17
|
+
const MONTHS = [
|
|
18
|
+
"January",
|
|
19
|
+
"February",
|
|
20
|
+
"March",
|
|
21
|
+
"April",
|
|
22
|
+
"May",
|
|
23
|
+
"June",
|
|
24
|
+
"July",
|
|
25
|
+
"August",
|
|
26
|
+
"September",
|
|
27
|
+
"October",
|
|
28
|
+
"November",
|
|
29
|
+
"December",
|
|
30
|
+
];
|
|
31
|
+
function mapLogsToMonthlyRows(
|
|
32
|
+
logs: Record<string, any>[],
|
|
33
|
+
): NFCPatrolMonthlyReportRow[] {
|
|
34
|
+
const rows = MONTHS.map((month) => ({
|
|
35
|
+
month,
|
|
36
|
+
checked: 0,
|
|
37
|
+
checkedPercentage: 0,
|
|
38
|
+
missed: 0,
|
|
39
|
+
missedPercentage: 0,
|
|
40
|
+
}));
|
|
41
|
+
|
|
42
|
+
logs.forEach((log) => {
|
|
43
|
+
const monthIndex = new Date(log.date).getMonth();
|
|
44
|
+
|
|
45
|
+
for (const checkpoint of log.checkPoints ?? []) {
|
|
46
|
+
if (checkpoint.status === "Completed") {
|
|
47
|
+
rows[monthIndex].checked++;
|
|
48
|
+
} else if (checkpoint.status === "Skipped") {
|
|
49
|
+
rows[monthIndex].missed++;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
rows.forEach((row) => {
|
|
55
|
+
const total = row.checked + row.missed;
|
|
56
|
+
|
|
57
|
+
if (total > 0) {
|
|
58
|
+
row.checkedPercentage = Math.round((row.checked / total) * 100);
|
|
59
|
+
row.missedPercentage = Math.round((row.missed / total) * 100);
|
|
60
|
+
}
|
|
61
|
+
});
|
|
62
|
+
|
|
63
|
+
return rows;
|
|
64
|
+
}
|
|
65
|
+
|
|
15
66
|
function buildAddress(address?: Record<string, string>) {
|
|
16
67
|
if (!address) return undefined;
|
|
17
68
|
|
|
@@ -27,23 +78,7 @@ function buildAddress(address?: Record<string, string>) {
|
|
|
27
78
|
return parts.length ? parts.join(", ") : undefined;
|
|
28
79
|
}
|
|
29
80
|
|
|
30
|
-
function mapLogToSummaryRow(
|
|
31
|
-
log: Record<string, any>,
|
|
32
|
-
index: number,
|
|
33
|
-
): NFCPatrolReportSummaryRow {
|
|
34
|
-
const checkpoints: Record<string, any>[] = log.checkPoints ?? [];
|
|
35
|
-
const checked = checkpoints.filter((cp) => cp.status === "Completed").length;
|
|
36
|
-
const missed = checkpoints.filter((cp) => cp.status === "Skipped").length;
|
|
37
81
|
|
|
38
|
-
return {
|
|
39
|
-
id: log._id,
|
|
40
|
-
routeName: `${index + 1}. ${log.route?.name ?? "-"}`,
|
|
41
|
-
securityCheckSchedule: log.route?.startTime ?? "-",
|
|
42
|
-
checked,
|
|
43
|
-
missed,
|
|
44
|
-
status: missed === 0 ? "Completed" : "Incomplete",
|
|
45
|
-
};
|
|
46
|
-
}
|
|
47
82
|
|
|
48
83
|
export function useNFCPatrolMonthlyReport(
|
|
49
84
|
filters: NFCPatrolReportFilters,
|
|
@@ -52,12 +87,12 @@ export function useNFCPatrolMonthlyReport(
|
|
|
52
87
|
const { getAll: getPatrolLogs } = useNFCPatrolLog();
|
|
53
88
|
const { getSiteById } = useSite();
|
|
54
89
|
|
|
55
|
-
const report = ref<
|
|
90
|
+
const report = ref<NFCPatrolMonthlyReport | null>(null);
|
|
56
91
|
const loading = ref(false);
|
|
57
92
|
const notFound = ref(false);
|
|
58
93
|
|
|
59
94
|
async function fetchReport() {
|
|
60
|
-
if (!site || !filters.
|
|
95
|
+
if (!site || !filters.route) {
|
|
61
96
|
report.value = null;
|
|
62
97
|
notFound.value = false;
|
|
63
98
|
return;
|
|
@@ -65,19 +100,16 @@ export function useNFCPatrolMonthlyReport(
|
|
|
65
100
|
|
|
66
101
|
loading.value = true;
|
|
67
102
|
notFound.value = false;
|
|
68
|
-
|
|
103
|
+
const currentYear = new Date().getFullYear().toString();
|
|
69
104
|
try {
|
|
70
105
|
const [logsRes, siteInfo] = await Promise.all([
|
|
71
|
-
getPatrolLogs
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
? filters.timeRange.split(" - ")[0]
|
|
79
|
-
: undefined,
|
|
80
|
-
type: "month",
|
|
106
|
+
getPatrolLogs({
|
|
107
|
+
page: 1,
|
|
108
|
+
limit: 100,
|
|
109
|
+
site,
|
|
110
|
+
routeId: filters.route,
|
|
111
|
+
date: currentYear,
|
|
112
|
+
type: "month",
|
|
81
113
|
}),
|
|
82
114
|
getSiteById(site),
|
|
83
115
|
]);
|
|
@@ -93,7 +125,7 @@ export function useNFCPatrolMonthlyReport(
|
|
|
93
125
|
address: buildAddress(siteInfo.address),
|
|
94
126
|
},
|
|
95
127
|
title: `Patrol Route Summary: ${routeName}`,
|
|
96
|
-
rows: logs
|
|
128
|
+
rows: mapLogsToMonthlyRows(logs),
|
|
97
129
|
};
|
|
98
130
|
} else {
|
|
99
131
|
report.value = null;
|
|
@@ -51,6 +51,8 @@ function mapLogToPatrolReport(
|
|
|
51
51
|
const activities: NFCPatrolActivity[] = checkpoints.map((cp) => ({
|
|
52
52
|
id: cp.nfcTag_id,
|
|
53
53
|
checkpoint: cp.nfcTag_name,
|
|
54
|
+
guardName: log.sign?.guardName,
|
|
55
|
+
guardSignatureFileId: log.sign?.guardSignatureFileId,
|
|
54
56
|
startTime: formatTime(cp.startDateTime),
|
|
55
57
|
endTime: formatTime(cp.endDateTime),
|
|
56
58
|
actualTime: diffMinutes(cp.startDateTime, cp.endDateTime),
|
|
@@ -236,6 +236,26 @@ export default function useServiceProvider() {
|
|
|
236
236
|
);
|
|
237
237
|
}
|
|
238
238
|
|
|
239
|
+
async function getByEmail({
|
|
240
|
+
email = "",
|
|
241
|
+
orgId = "",
|
|
242
|
+
siteId = "",
|
|
243
|
+
serviceProviderOrgId = "",
|
|
244
|
+
} = {}) {
|
|
245
|
+
return useNuxtApp().$api<Record<string, any>>(
|
|
246
|
+
"/api/service-providers/email",
|
|
247
|
+
{
|
|
248
|
+
method: "GET",
|
|
249
|
+
query: {
|
|
250
|
+
email,
|
|
251
|
+
...(orgId ? { orgId } : {}),
|
|
252
|
+
...(siteId ? { siteId } : {}),
|
|
253
|
+
...(serviceProviderOrgId ? { serviceProviderOrgId } : {}),
|
|
254
|
+
},
|
|
255
|
+
}
|
|
256
|
+
);
|
|
257
|
+
}
|
|
258
|
+
|
|
239
259
|
return {
|
|
240
260
|
serviceProviders,
|
|
241
261
|
serviceProvider,
|
|
@@ -254,5 +274,6 @@ export default function useServiceProvider() {
|
|
|
254
274
|
add,
|
|
255
275
|
addViaInvite,
|
|
256
276
|
updateStatus,
|
|
277
|
+
getByEmail,
|
|
257
278
|
};
|
|
258
279
|
}
|
package/package.json
CHANGED
package/types/customer.d.ts
CHANGED
package/types/equipment.d.ts
CHANGED
|
@@ -6,6 +6,10 @@ declare type TEquipment = {
|
|
|
6
6
|
unitOfMeasurement: string;
|
|
7
7
|
createdAt: string;
|
|
8
8
|
updatedAt: string;
|
|
9
|
+
attachment?: string;
|
|
9
10
|
};
|
|
10
11
|
|
|
11
|
-
declare type TEquipmentCreate = Pick<
|
|
12
|
+
declare type TEquipmentCreate = Pick<
|
|
13
|
+
TEquipment,
|
|
14
|
+
"name" | "unitOfMeasurement" | "attachment"
|
|
15
|
+
>;
|
|
@@ -26,7 +26,7 @@ export interface NFCPatrolReportFilterOptions {
|
|
|
26
26
|
|
|
27
27
|
export interface NFCPatrolReportLocation {
|
|
28
28
|
name?: string;
|
|
29
|
-
address?: string;
|
|
29
|
+
address?: string;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
export interface NFCPatrolRouteSummary {
|
|
@@ -47,6 +47,8 @@ export interface NFCPatrolRouteSummary {
|
|
|
47
47
|
export interface NFCPatrolActivity {
|
|
48
48
|
id: string;
|
|
49
49
|
checkpoint: string;
|
|
50
|
+
guardName?: string;
|
|
51
|
+
guardSignatureFileId?: string;
|
|
50
52
|
startTime: string;
|
|
51
53
|
endTime: string;
|
|
52
54
|
actualTime: string;
|
|
@@ -67,6 +69,8 @@ export interface NFCPatrolReportSummaryRow {
|
|
|
67
69
|
id: string;
|
|
68
70
|
routeName: string;
|
|
69
71
|
securityCheckSchedule: string;
|
|
72
|
+
guardName?: string;
|
|
73
|
+
guardSignatureFileId?: string;
|
|
70
74
|
checked: number;
|
|
71
75
|
missed: number;
|
|
72
76
|
status: NFCPatrolReportSummaryStatus;
|
|
@@ -77,3 +81,17 @@ export interface NFCPatrolSummaryReport {
|
|
|
77
81
|
title: string;
|
|
78
82
|
rows: NFCPatrolReportSummaryRow[];
|
|
79
83
|
}
|
|
84
|
+
|
|
85
|
+
export interface NFCPatrolMonthlyReportRow {
|
|
86
|
+
month: string;
|
|
87
|
+
checked: number;
|
|
88
|
+
checkedPercentage: number;
|
|
89
|
+
missed: number;
|
|
90
|
+
missedPercentage: number;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
export interface NFCPatrolMonthlyReport {
|
|
94
|
+
location: NFCPatrolReportLocation;
|
|
95
|
+
title: string;
|
|
96
|
+
rows: NFCPatrolMonthlyReportRow[];
|
|
97
|
+
}
|