fleetmap-reports 1.0.892 → 1.0.895
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,11 +6,6 @@ const { convertToFeature, convertPositionToFeature } = require('../util/utils')
|
|
|
6
6
|
function calculateLastStopTime (stopTime, to, time) {
|
|
7
7
|
return stopTime + (to.getTime() - new Date(time).getTime())
|
|
8
8
|
}
|
|
9
|
-
|
|
10
|
-
function calculateFirstStopTime (stopTime, from, time) {
|
|
11
|
-
return stopTime + (new Date(time).getTime() - from.getTime())
|
|
12
|
-
}
|
|
13
|
-
|
|
14
9
|
async function createActivityReport (from, to, userData, traccarInstance) {
|
|
15
10
|
const unauthorizedGeofences = []
|
|
16
11
|
const authorizedGeofences = []
|
|
@@ -72,4 +72,14 @@ describe('activity report', function () {
|
|
|
72
72
|
console.log(device)
|
|
73
73
|
assert.equal(device.summary.reduce((a, b) => a + b.convertedSpentFuel, 0), 168.79999999999995)
|
|
74
74
|
}, 800000)
|
|
75
|
+
it('Activity test performance', async () => {
|
|
76
|
+
const report = await getReports('q.trans', 'quality1214')
|
|
77
|
+
const userData = await report.getUserData()
|
|
78
|
+
console.log(userData)
|
|
79
|
+
userData.groupByDay = true
|
|
80
|
+
const data = await report.activityReport(new Date(2023, 7, 1, 0, 0, 0, 0),
|
|
81
|
+
new Date(2023, 31, 5, 23, 59, 59, 0),
|
|
82
|
+
userData)
|
|
83
|
+
assert.equal(data.length, 1)
|
|
84
|
+
}, 8000000)
|
|
75
85
|
})
|
package/src/tests/index.test.js
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
const { getReports } = require('./index')
|
|
3
3
|
const assert = require('assert')
|
|
4
4
|
const utils = require('../util/utils')
|
|
5
|
+
const { createGPSJumpReport } = require('../partnerReports/gpsjump-report')
|
|
5
6
|
|
|
6
7
|
// eslint-disable-next-line no-undef
|
|
7
8
|
describe('Test_Reports', function () {
|
|
@@ -18,12 +19,19 @@ describe('Test_Reports', function () {
|
|
|
18
19
|
const pdf = await report.speedingReportToPDF(userData, data[0])
|
|
19
20
|
pdf.save()
|
|
20
21
|
}, 40000)
|
|
21
|
-
|
|
22
22
|
it('converts madrid time', async () => {
|
|
23
23
|
assert.equal(false, utils.isClientSide())
|
|
24
24
|
console.log(utils.convertToLocaleString(new Date(), 'es-CL', 'Europe/Madrid'))
|
|
25
25
|
})
|
|
26
|
-
|
|
26
|
+
it('gps jump device', async () => {
|
|
27
|
+
const report = await getReports('HASSANE', 'movitec.1637')
|
|
28
|
+
const userData = await report.getUserData()
|
|
29
|
+
userData.devices = userData.devices.filter(d => d.id === 148725)
|
|
30
|
+
const data = await createGPSJumpReport(new Date(2023, 8, 22, 0, 0, 0, 0),
|
|
31
|
+
new Date(2023, 8, 24, 23, 59, 59, 0),
|
|
32
|
+
userData, report.traccar)
|
|
33
|
+
console.log(data)
|
|
34
|
+
}, 40000)
|
|
27
35
|
it('Idle by device', async () => {
|
|
28
36
|
const report = await getReports()
|
|
29
37
|
const userData = await report.getUserData()
|
|
@@ -54,7 +62,7 @@ describe('Test_Reports', function () {
|
|
|
54
62
|
const totalIdleTime = driver.idleEvents.reduce((a, b) => a + b.idleTime, 0)
|
|
55
63
|
assert.equal(driver.idleEvents.length, 15) // Total Alerts
|
|
56
64
|
assert.equal(totalIdleTime, 16000) // Total Duration
|
|
57
|
-
}, 20000)
|
|
65
|
+
}, 20000),
|
|
58
66
|
// eslint-disable-next-line no-undef
|
|
59
67
|
it('test allinone', async () => {
|
|
60
68
|
console.log('Start')
|
|
@@ -2,6 +2,7 @@ const { getReports } = require('./index')
|
|
|
2
2
|
const { createPerformanceReport } = require('../partnerReports/performance-report')
|
|
3
3
|
const assert = require('assert')
|
|
4
4
|
const { convertMS } = require('../util/utils')
|
|
5
|
+
const {createDailyUseReport} = require("../partnerReports/dailyuse-report");
|
|
5
6
|
// eslint-disable-next-line no-undef
|
|
6
7
|
describe('performance', function () {
|
|
7
8
|
// eslint-disable-next-line no-undef
|
|
@@ -33,4 +34,15 @@ describe('performance', function () {
|
|
|
33
34
|
console.log(data)
|
|
34
35
|
assert.equal(data[0].consumption, 168.51989999999998)
|
|
35
36
|
}, 8000000)
|
|
37
|
+
|
|
38
|
+
it('dailyuse report inofleet', async () => {
|
|
39
|
+
const report = await getReports()
|
|
40
|
+
const userData = await report.getUserData()
|
|
41
|
+
const data = await createDailyUseReport(
|
|
42
|
+
new Date(Date.UTC(2023, 9, 1, 0, 0, 0, 0)),
|
|
43
|
+
new Date(Date.UTC(2023, 9, 1, 23, 59, 59, 0)),
|
|
44
|
+
userData,
|
|
45
|
+
report.traccar)
|
|
46
|
+
console.log(data)
|
|
47
|
+
}, 8000000)
|
|
36
48
|
})
|
package/src/tests/zones.test.js
CHANGED
|
@@ -27,6 +27,18 @@ describe('zones', function () {
|
|
|
27
27
|
console.log('result', result)
|
|
28
28
|
}, 4000000)
|
|
29
29
|
|
|
30
|
+
it('works with afriquia', async () => {
|
|
31
|
+
const report = await getReports(process.env.USER_AFRIQUIA, process.env.PASS_AFRIQUIA)
|
|
32
|
+
const userData = await report.getUserData()
|
|
33
|
+
console.log(userData.devices.length)
|
|
34
|
+
console.log(userData.geofences)
|
|
35
|
+
const result = await report.zoneReport(
|
|
36
|
+
new Date(Date.UTC(2023, 5, 11, 0, 0, 0, 0)),
|
|
37
|
+
new Date(Date.UTC(2023, 5, 11, 23, 59, 59, 0)),
|
|
38
|
+
userData)
|
|
39
|
+
console.log('result', result)
|
|
40
|
+
}, 4000000)
|
|
41
|
+
|
|
30
42
|
// eslint-disable-next-line no-undef
|
|
31
43
|
it('works with casais', async () => {
|
|
32
44
|
const report = await getReports(process.env.USER_CASAIS, process.env.PASS_CASAIS)
|
package/src/zone-report.js
CHANGED
|
@@ -132,7 +132,7 @@ async function processDevices (from, to, devices, userData, data) {
|
|
|
132
132
|
geofencesData.push({
|
|
133
133
|
geofenceId: geofence.id,
|
|
134
134
|
geofenceName: geofence.name,
|
|
135
|
-
days:
|
|
135
|
+
days: filterResult(dataByDay, userData)
|
|
136
136
|
})
|
|
137
137
|
}
|
|
138
138
|
|
|
@@ -207,7 +207,7 @@ async function processDevices (from, to, devices, userData, data) {
|
|
|
207
207
|
from,
|
|
208
208
|
to,
|
|
209
209
|
tripsBetweenZones: true,
|
|
210
|
-
geofences:
|
|
210
|
+
geofences: filterResult(tripsBetweenZones, userData)
|
|
211
211
|
})
|
|
212
212
|
}
|
|
213
213
|
} else {
|
|
@@ -215,7 +215,7 @@ async function processDevices (from, to, devices, userData, data) {
|
|
|
215
215
|
device: d,
|
|
216
216
|
from,
|
|
217
217
|
to,
|
|
218
|
-
geofences:
|
|
218
|
+
geofences: filterResult(zoneInOutData, userData)
|
|
219
219
|
})
|
|
220
220
|
}
|
|
221
221
|
}
|
|
@@ -225,6 +225,11 @@ async function processDevices (from, to, devices, userData, data) {
|
|
|
225
225
|
return devicesResult
|
|
226
226
|
}
|
|
227
227
|
|
|
228
|
+
function filterResult (result, userData) {
|
|
229
|
+
result = userData.onlyWithKmsOut ? result.filter(a => a.distanceOut >= 0.5) : result
|
|
230
|
+
return userData.onlyWithKmsIn ? result.filter(a => a.distanceIn === undefined || a.distanceIn >= 0.5) : result
|
|
231
|
+
}
|
|
232
|
+
|
|
228
233
|
function calculateTimeIn (zoneInOutDayData, fromByDay, from, toByDay, to) {
|
|
229
234
|
let timeIn = zoneInOutDayData.length ? zoneInOutDayData.reduce((a, b) => a + (b.totalInTime || 0), 0) : 0
|
|
230
235
|
|