fleetmap-reports 1.0.267 → 1.0.271
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/.idea/codeStyles/Project.xml +7 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/jsLibraryMappings.xml +6 -0
- package/package.json +1 -1
- package/src/index.test.js +3 -43
- package/src/speeding-report.js +9 -11
- package/.idea/runConfigurations.xml +0 -10
- package/.idea/workspace.xml +0 -453
package/package.json
CHANGED
package/src/index.test.js
CHANGED
|
@@ -1,60 +1,20 @@
|
|
|
1
1
|
const {getReports} = require("./tests");
|
|
2
2
|
|
|
3
|
-
describe('
|
|
3
|
+
describe('speedingReport', function() {
|
|
4
4
|
this.timeout(500000)
|
|
5
5
|
it('test speeding', async () => {
|
|
6
6
|
const report = await getReports()
|
|
7
7
|
const userData = await report.getUserData()
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
await report.speedingReport(new Date(2021, 2, 30, 0, 0, 0, 0),
|
|
10
10
|
new Date(2021, 2, 30, 23, 59, 59, 0),
|
|
11
11
|
userData)
|
|
12
|
-
|
|
13
|
-
console.log(reportData)
|
|
14
|
-
|
|
15
|
-
})
|
|
16
|
-
it('test trip report', async () => {
|
|
17
|
-
const report = await getReports()
|
|
18
|
-
const userData = await report.getUserData()
|
|
19
|
-
userData.byGroup = true
|
|
20
|
-
const reportData = await report.tripReport(new Date(2021, 2, 30, 0, 0, 0, 0),
|
|
21
|
-
new Date(2021, 2, 30, 23, 59, 59, 0),
|
|
22
|
-
userData)
|
|
23
|
-
|
|
24
|
-
console.log(reportData)
|
|
25
|
-
|
|
26
|
-
})
|
|
27
|
-
it('test event report', async () => {
|
|
28
|
-
const report = await getReports()
|
|
29
|
-
const userData = await report.getUserData()
|
|
30
|
-
userData.eventTypes = []
|
|
31
|
-
const reportData = await report.eventsReport(new Date(2021, 10, 20, 0, 0, 0, 0),
|
|
32
|
-
new Date(2021, 10, 30, 23, 59, 59, 0),
|
|
33
|
-
userData)
|
|
34
|
-
|
|
35
|
-
console.log(reportData)
|
|
36
|
-
|
|
37
12
|
})
|
|
38
13
|
it('test kmsReport by day', async () => {
|
|
39
14
|
const reports = await getReports()
|
|
40
15
|
const userData = await reports.getUserData()
|
|
41
16
|
userData.groupByDay = true
|
|
42
|
-
|
|
43
|
-
userData)
|
|
44
|
-
|
|
45
|
-
console.log(reportData)
|
|
46
|
-
|
|
47
|
-
await reports.kmsReportToPDF(userData, reportData[0])
|
|
48
|
-
})
|
|
49
|
-
it('test locationReport by day', async () => {
|
|
50
|
-
const reports = await getReports()
|
|
51
|
-
const userData = await reports.getUserData()
|
|
52
|
-
userData.groupByDay = true
|
|
53
|
-
const reportData = await reports.locations(new Date(2021, 10, 1), new Date(2021, 10, 3),
|
|
17
|
+
await reports.kmsReport(new Date(2021, 9), new Date(2021, 10),
|
|
54
18
|
userData)
|
|
55
|
-
|
|
56
|
-
console.log(reportData)
|
|
57
|
-
|
|
58
|
-
await reports.kmsReportToPDF(userData, reportData[0])
|
|
59
19
|
})
|
|
60
20
|
})
|
package/src/speeding-report.js
CHANGED
|
@@ -87,7 +87,7 @@ async function createSpeedingReportByDevice(from, to, devices) {
|
|
|
87
87
|
}
|
|
88
88
|
|
|
89
89
|
if(userData.roadSpeedLimits){
|
|
90
|
-
events.push(...await getHereEvents(devices, routes))
|
|
90
|
+
events.push(...await getHereEvents(devices, routes, userData.maxSpeedThreshold))
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
if(!events.length) {
|
|
@@ -119,7 +119,7 @@ async function createSpeedingReportByDriver(from, to) {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
if(userData.roadSpeedLimits){
|
|
122
|
-
events.push(...await getHereEvents(devices, routes))
|
|
122
|
+
events.push(...await getHereEvents(devices, routes, userData.maxSpeedThreshold))
|
|
123
123
|
}
|
|
124
124
|
|
|
125
125
|
if(!events.length) {
|
|
@@ -195,12 +195,9 @@ async function findEventsPosition(from, to, devices, events, routes){
|
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
positions.slice(pIndex)
|
|
203
|
-
}
|
|
198
|
+
a.position = positions[pIndex]
|
|
199
|
+
pIndex = calculateEventData(positions, pIndex, a, d, geofence)
|
|
200
|
+
positions.slice(pIndex)
|
|
204
201
|
}
|
|
205
202
|
}
|
|
206
203
|
}
|
|
@@ -237,14 +234,15 @@ async function getCustomSpeedLimitEvents(devices, routes){
|
|
|
237
234
|
return events
|
|
238
235
|
}
|
|
239
236
|
|
|
240
|
-
async function getHereEvents(devices, routes){
|
|
237
|
+
async function getHereEvents(devices, routes, threshold){
|
|
241
238
|
console.log('calculate custom speed limit events')
|
|
242
239
|
const events = []
|
|
243
240
|
for (const d of devices) {
|
|
244
241
|
const positions = routes.filter(p => p.deviceId === d.id)
|
|
245
242
|
try {
|
|
246
243
|
const results = await here.routeMatch(positions)
|
|
247
|
-
|
|
244
|
+
console.log('results', results)
|
|
245
|
+
const hereAlerts = results.filter(r => r.currentSpeedKmh > (r.speedLimit + threshold)).map(r => {
|
|
248
246
|
const position = positions.find(p => new Date(p.fixTime).getTime() === r.timestamp)
|
|
249
247
|
return {
|
|
250
248
|
...r,
|
|
@@ -255,7 +253,7 @@ async function getHereEvents(devices, routes){
|
|
|
255
253
|
attributes: {speedLimit: r.speedLimit, speed: r.currentSpeedKmh / 1.85200}
|
|
256
254
|
}
|
|
257
255
|
})
|
|
258
|
-
console.log('
|
|
256
|
+
console.log('threshold', threshold, hereAlerts)
|
|
259
257
|
const reduced = hereAlerts.reduce((acc, cur, idx, src) => {
|
|
260
258
|
if (idx === 1) {
|
|
261
259
|
return [cur]
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="RunConfigurationProducerService">
|
|
4
|
-
<option name="ignoredProducers">
|
|
5
|
-
<set>
|
|
6
|
-
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
|
7
|
-
</set>
|
|
8
|
-
</option>
|
|
9
|
-
</component>
|
|
10
|
-
</project>
|
package/.idea/workspace.xml
DELETED
|
@@ -1,453 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ChangeListManager">
|
|
4
|
-
<list default="true" id="eb665c86-c893-4333-bd2a-721dc27980b9" name="Changes" comment="check if weekDays parameter is set">
|
|
5
|
-
<change beforePath="$PROJECT_DIR$/package-lock.json" beforeDir="false" afterPath="$PROJECT_DIR$/package-lock.json" afterDir="false" />
|
|
6
|
-
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
|
|
7
|
-
<change beforePath="$PROJECT_DIR$/src/index.test.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.test.js" afterDir="false" />
|
|
8
|
-
<change beforePath="$PROJECT_DIR$/src/trip-report.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/trip-report.js" afterDir="false" />
|
|
9
|
-
</list>
|
|
10
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
11
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
12
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
13
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
14
|
-
</component>
|
|
15
|
-
<component name="FileTemplateManagerImpl">
|
|
16
|
-
<option name="RECENT_TEMPLATES">
|
|
17
|
-
<list>
|
|
18
|
-
<option value="JavaScript File" />
|
|
19
|
-
</list>
|
|
20
|
-
</option>
|
|
21
|
-
</component>
|
|
22
|
-
<component name="Git.Settings">
|
|
23
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
24
|
-
</component>
|
|
25
|
-
<component name="GitSEFilterConfiguration">
|
|
26
|
-
<file-type-list>
|
|
27
|
-
<filtered-out-file-type name="LOCAL_BRANCH" />
|
|
28
|
-
<filtered-out-file-type name="REMOTE_BRANCH" />
|
|
29
|
-
<filtered-out-file-type name="TAG" />
|
|
30
|
-
<filtered-out-file-type name="COMMIT_BY_MESSAGE" />
|
|
31
|
-
</file-type-list>
|
|
32
|
-
</component>
|
|
33
|
-
<component name="ProjectId" id="20NIxbej0qfi8RaO3jr1XOU0xol" />
|
|
34
|
-
<component name="ProjectViewState">
|
|
35
|
-
<option name="hideEmptyMiddlePackages" value="true" />
|
|
36
|
-
<option name="showLibraryContents" value="true" />
|
|
37
|
-
</component>
|
|
38
|
-
<component name="PropertiesComponent">
|
|
39
|
-
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
|
|
40
|
-
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
|
41
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
|
42
|
-
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
|
43
|
-
<property name="nodejs.mocha.mocha_node_package_dir" value="$PROJECT_DIR$/node_modules/mocha" />
|
|
44
|
-
<property name="nodejs_package_manager_path" value="npm" />
|
|
45
|
-
<property name="ts.external.directory.path" value="$APPLICATION_HOME_DIR$/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external" />
|
|
46
|
-
<property name="vue.rearranger.settings.migration" value="true" />
|
|
47
|
-
</component>
|
|
48
|
-
<component name="RunManager" selected="Mocha.Reports.test event report">
|
|
49
|
-
<configuration name="Reports.test event report" type="mocha-javascript-test-runner" temporary="true" nameIsGenerated="true">
|
|
50
|
-
<node-interpreter>project</node-interpreter>
|
|
51
|
-
<node-options />
|
|
52
|
-
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
53
|
-
<working-directory>$PROJECT_DIR$</working-directory>
|
|
54
|
-
<pass-parent-env>true</pass-parent-env>
|
|
55
|
-
<envs>
|
|
56
|
-
<env name="email" value="jppenas@gmail.com" />
|
|
57
|
-
<env name="password" value="penas46881" />
|
|
58
|
-
</envs>
|
|
59
|
-
<ui>bdd</ui>
|
|
60
|
-
<extra-mocha-options />
|
|
61
|
-
<test-kind>TEST</test-kind>
|
|
62
|
-
<test-file>$PROJECT_DIR$/src/index.test.js</test-file>
|
|
63
|
-
<test-names>
|
|
64
|
-
<name value="Reports" />
|
|
65
|
-
<name value="test event report" />
|
|
66
|
-
</test-names>
|
|
67
|
-
<method v="2" />
|
|
68
|
-
</configuration>
|
|
69
|
-
<configuration name="Reports.test trip report" type="mocha-javascript-test-runner" temporary="true" nameIsGenerated="true">
|
|
70
|
-
<node-interpreter>project</node-interpreter>
|
|
71
|
-
<node-options />
|
|
72
|
-
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
73
|
-
<working-directory>$PROJECT_DIR$</working-directory>
|
|
74
|
-
<pass-parent-env>true</pass-parent-env>
|
|
75
|
-
<envs>
|
|
76
|
-
<env name="email" value="jppenas@gmail.com" />
|
|
77
|
-
<env name="password" value="penas46881" />
|
|
78
|
-
</envs>
|
|
79
|
-
<ui>bdd</ui>
|
|
80
|
-
<extra-mocha-options />
|
|
81
|
-
<test-kind>TEST</test-kind>
|
|
82
|
-
<test-file>$PROJECT_DIR$/src/index.test.js</test-file>
|
|
83
|
-
<test-names>
|
|
84
|
-
<name value="Reports" />
|
|
85
|
-
<name value="test trip report" />
|
|
86
|
-
</test-names>
|
|
87
|
-
<method v="2" />
|
|
88
|
-
</configuration>
|
|
89
|
-
<configuration name="speedingReport.test kmsReport by day" type="mocha-javascript-test-runner" temporary="true" nameIsGenerated="true">
|
|
90
|
-
<node-interpreter>project</node-interpreter>
|
|
91
|
-
<node-options />
|
|
92
|
-
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
93
|
-
<working-directory>$PROJECT_DIR$</working-directory>
|
|
94
|
-
<pass-parent-env>true</pass-parent-env>
|
|
95
|
-
<envs>
|
|
96
|
-
<env name="email" value="jppenas@gmail.com" />
|
|
97
|
-
<env name="password" value="penas46881" />
|
|
98
|
-
</envs>
|
|
99
|
-
<ui>bdd</ui>
|
|
100
|
-
<extra-mocha-options />
|
|
101
|
-
<test-kind>TEST</test-kind>
|
|
102
|
-
<test-file>$PROJECT_DIR$/src/index.test.js</test-file>
|
|
103
|
-
<test-names>
|
|
104
|
-
<name value="speedingReport" />
|
|
105
|
-
<name value="test kmsReport by day" />
|
|
106
|
-
</test-names>
|
|
107
|
-
<method v="2" />
|
|
108
|
-
</configuration>
|
|
109
|
-
<configuration name="speedingReport.test speeding" type="mocha-javascript-test-runner" temporary="true" nameIsGenerated="true">
|
|
110
|
-
<node-interpreter>project</node-interpreter>
|
|
111
|
-
<node-options />
|
|
112
|
-
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
113
|
-
<working-directory>$PROJECT_DIR$</working-directory>
|
|
114
|
-
<pass-parent-env>true</pass-parent-env>
|
|
115
|
-
<envs>
|
|
116
|
-
<env name="email" value="jppenas@gmail.com" />
|
|
117
|
-
<env name="password" value="penas46881" />
|
|
118
|
-
</envs>
|
|
119
|
-
<ui>bdd</ui>
|
|
120
|
-
<extra-mocha-options />
|
|
121
|
-
<test-kind>TEST</test-kind>
|
|
122
|
-
<test-file>$PROJECT_DIR$/src/index.test.js</test-file>
|
|
123
|
-
<test-names>
|
|
124
|
-
<name value="speedingReport" />
|
|
125
|
-
<name value="test speeding" />
|
|
126
|
-
</test-names>
|
|
127
|
-
<method v="2" />
|
|
128
|
-
</configuration>
|
|
129
|
-
<configuration name="test reports" type="mocha-javascript-test-runner" temporary="true" nameIsGenerated="true">
|
|
130
|
-
<node-interpreter>project</node-interpreter>
|
|
131
|
-
<node-options />
|
|
132
|
-
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
133
|
-
<working-directory>$PROJECT_DIR$</working-directory>
|
|
134
|
-
<pass-parent-env>true</pass-parent-env>
|
|
135
|
-
<envs>
|
|
136
|
-
<env name="email" value="jppenas@gmail.com" />
|
|
137
|
-
<env name="password" value="penas46881" />
|
|
138
|
-
</envs>
|
|
139
|
-
<ui>bdd</ui>
|
|
140
|
-
<extra-mocha-options />
|
|
141
|
-
<test-kind>SUITE</test-kind>
|
|
142
|
-
<test-file>$PROJECT_DIR$/src/index.test.js</test-file>
|
|
143
|
-
<test-names>
|
|
144
|
-
<name value="test reports" />
|
|
145
|
-
</test-names>
|
|
146
|
-
<method v="2" />
|
|
147
|
-
</configuration>
|
|
148
|
-
<list>
|
|
149
|
-
<item itemvalue="Mocha.test reports" />
|
|
150
|
-
<item itemvalue="Mocha.speedingReport.test kmsReport by day" />
|
|
151
|
-
<item itemvalue="Mocha.speedingReport.test speeding" />
|
|
152
|
-
<item itemvalue="Mocha.Reports.test trip report" />
|
|
153
|
-
<item itemvalue="Mocha.Reports.test event report" />
|
|
154
|
-
</list>
|
|
155
|
-
<recent_temporary>
|
|
156
|
-
<list>
|
|
157
|
-
<item itemvalue="Mocha.Reports.test event report" />
|
|
158
|
-
<item itemvalue="Mocha.Reports.test trip report" />
|
|
159
|
-
<item itemvalue="Mocha.speedingReport.test speeding" />
|
|
160
|
-
<item itemvalue="Mocha.speedingReport.test kmsReport by day" />
|
|
161
|
-
<item itemvalue="Mocha.test reports" />
|
|
162
|
-
</list>
|
|
163
|
-
</recent_temporary>
|
|
164
|
-
</component>
|
|
165
|
-
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
166
|
-
<component name="TaskManager">
|
|
167
|
-
<task active="true" id="Default" summary="Default task">
|
|
168
|
-
<changelist id="eb665c86-c893-4333-bd2a-721dc27980b9" name="Changes" comment="" />
|
|
169
|
-
<created>1635878866368</created>
|
|
170
|
-
<option name="number" value="Default" />
|
|
171
|
-
<option name="presentableId" value="Default" />
|
|
172
|
-
<updated>1635878866368</updated>
|
|
173
|
-
<workItem from="1635878870054" duration="105000" />
|
|
174
|
-
<workItem from="1635943211865" duration="371000" />
|
|
175
|
-
<workItem from="1636030918716" duration="808000" />
|
|
176
|
-
<workItem from="1636366400735" duration="3018000" />
|
|
177
|
-
<workItem from="1636371409243" duration="45000" />
|
|
178
|
-
<workItem from="1636371621773" duration="4750000" />
|
|
179
|
-
<workItem from="1636623371114" duration="675000" />
|
|
180
|
-
<workItem from="1636624396937" duration="1987000" />
|
|
181
|
-
<workItem from="1636627666406" duration="1616000" />
|
|
182
|
-
<workItem from="1636647112207" duration="1748000" />
|
|
183
|
-
<workItem from="1636981640447" duration="4315000" />
|
|
184
|
-
<workItem from="1637009407292" duration="1470000" />
|
|
185
|
-
<workItem from="1637012863006" duration="5376000" />
|
|
186
|
-
<workItem from="1637087797229" duration="5701000" />
|
|
187
|
-
<workItem from="1637227826845" duration="1275000" />
|
|
188
|
-
<workItem from="1637441942952" duration="4543000" />
|
|
189
|
-
<workItem from="1637670815688" duration="2973000" />
|
|
190
|
-
<workItem from="1637674107929" duration="13419000" />
|
|
191
|
-
<workItem from="1637756665591" duration="4742000" />
|
|
192
|
-
<workItem from="1637841765985" duration="10197000" />
|
|
193
|
-
<workItem from="1637868513425" duration="1650000" />
|
|
194
|
-
<workItem from="1637928687573" duration="37000" />
|
|
195
|
-
<workItem from="1637931438656" duration="621000" />
|
|
196
|
-
<workItem from="1637952151523" duration="17766000" />
|
|
197
|
-
<workItem from="1638270786569" duration="6960000" />
|
|
198
|
-
<workItem from="1638455902437" duration="120000" />
|
|
199
|
-
<workItem from="1638486745343" duration="4126000" />
|
|
200
|
-
<workItem from="1638792860278" duration="2140000" />
|
|
201
|
-
<workItem from="1638839462028" duration="50000" />
|
|
202
|
-
<workItem from="1638840110567" duration="597000" />
|
|
203
|
-
<workItem from="1638888787940" duration="19894000" />
|
|
204
|
-
<workItem from="1639074912454" duration="257000" />
|
|
205
|
-
<workItem from="1639090037682" duration="2514000" />
|
|
206
|
-
<workItem from="1639135460686" duration="3092000" />
|
|
207
|
-
<workItem from="1639151097761" duration="13703000" />
|
|
208
|
-
<workItem from="1639246310204" duration="628000" />
|
|
209
|
-
<workItem from="1639247624979" duration="13040000" />
|
|
210
|
-
<workItem from="1639489940902" duration="18224000" />
|
|
211
|
-
<workItem from="1639591829775" duration="681000" />
|
|
212
|
-
<workItem from="1639592539998" duration="27141000" />
|
|
213
|
-
<workItem from="1639766010908" duration="4991000" />
|
|
214
|
-
<workItem from="1639872937953" duration="1438000" />
|
|
215
|
-
<workItem from="1639954341221" duration="11986000" />
|
|
216
|
-
<workItem from="1640272520380" duration="2253000" />
|
|
217
|
-
<workItem from="1640789226071" duration="1935000" />
|
|
218
|
-
<workItem from="1640794844118" duration="10128000" />
|
|
219
|
-
<workItem from="1640866364417" duration="67000" />
|
|
220
|
-
<workItem from="1640866782794" duration="123000" />
|
|
221
|
-
<workItem from="1640866964393" duration="1022000" />
|
|
222
|
-
<workItem from="1640870147277" duration="8236000" />
|
|
223
|
-
<workItem from="1641321068227" duration="14805000" />
|
|
224
|
-
<workItem from="1641387675790" duration="32947000" />
|
|
225
|
-
<workItem from="1641509412324" duration="41000" />
|
|
226
|
-
<workItem from="1641510744190" duration="1404000" />
|
|
227
|
-
<workItem from="1641526151665" duration="1679000" />
|
|
228
|
-
<workItem from="1641640203903" duration="3434000" />
|
|
229
|
-
</task>
|
|
230
|
-
<task id="LOCAL-00001" summary="Fix getStyle">
|
|
231
|
-
<created>1636983717385</created>
|
|
232
|
-
<option name="number" value="00001" />
|
|
233
|
-
<option name="presentableId" value="LOCAL-00001" />
|
|
234
|
-
<option name="project" value="LOCAL" />
|
|
235
|
-
<updated>1636983717385</updated>
|
|
236
|
-
</task>
|
|
237
|
-
<task id="LOCAL-00002" summary="Fix getStyle in all reports">
|
|
238
|
-
<created>1637020728356</created>
|
|
239
|
-
<option name="number" value="00002" />
|
|
240
|
-
<option name="presentableId" value="LOCAL-00002" />
|
|
241
|
-
<option name="project" value="LOCAL" />
|
|
242
|
-
<updated>1637020728356</updated>
|
|
243
|
-
</task>
|
|
244
|
-
<task id="LOCAL-00003" summary="try catch on pdf addImage">
|
|
245
|
-
<created>1637247013210</created>
|
|
246
|
-
<option name="number" value="00003" />
|
|
247
|
-
<option name="presentableId" value="LOCAL-00003" />
|
|
248
|
-
<option name="project" value="LOCAL" />
|
|
249
|
-
<updated>1637247013211</updated>
|
|
250
|
-
</task>
|
|
251
|
-
<task id="LOCAL-00004" summary="Kms report grouped by day">
|
|
252
|
-
<created>1637715473148</created>
|
|
253
|
-
<option name="number" value="00004" />
|
|
254
|
-
<option name="presentableId" value="LOCAL-00004" />
|
|
255
|
-
<option name="project" value="LOCAL" />
|
|
256
|
-
<updated>1637715473149</updated>
|
|
257
|
-
</task>
|
|
258
|
-
<task id="LOCAL-00005" summary="Fix pdf logo">
|
|
259
|
-
<created>1637849206762</created>
|
|
260
|
-
<option name="number" value="00005" />
|
|
261
|
-
<option name="presentableId" value="LOCAL-00005" />
|
|
262
|
-
<option name="project" value="LOCAL" />
|
|
263
|
-
<updated>1637849206762</updated>
|
|
264
|
-
</task>
|
|
265
|
-
<task id="LOCAL-00006" summary="kms report with parallel requests">
|
|
266
|
-
<created>1637858604089</created>
|
|
267
|
-
<option name="number" value="00006" />
|
|
268
|
-
<option name="presentableId" value="LOCAL-00006" />
|
|
269
|
-
<option name="project" value="LOCAL" />
|
|
270
|
-
<updated>1637858604089</updated>
|
|
271
|
-
</task>
|
|
272
|
-
<task id="LOCAL-00007" summary="Kms Report - Calculate distance with traccar trips">
|
|
273
|
-
<created>1638179219255</created>
|
|
274
|
-
<option name="number" value="00007" />
|
|
275
|
-
<option name="presentableId" value="LOCAL-00007" />
|
|
276
|
-
<option name="project" value="LOCAL" />
|
|
277
|
-
<updated>1638179219256</updated>
|
|
278
|
-
</task>
|
|
279
|
-
<task id="LOCAL-00008" summary="fix speeding report">
|
|
280
|
-
<created>1638186780966</created>
|
|
281
|
-
<option name="number" value="00008" />
|
|
282
|
-
<option name="presentableId" value="LOCAL-00008" />
|
|
283
|
-
<option name="project" value="LOCAL" />
|
|
284
|
-
<updated>1638186780967</updated>
|
|
285
|
-
</task>
|
|
286
|
-
<task id="LOCAL-00009" summary="refactor speeding and trip report">
|
|
287
|
-
<created>1638288337133</created>
|
|
288
|
-
<option name="number" value="00009" />
|
|
289
|
-
<option name="presentableId" value="LOCAL-00009" />
|
|
290
|
-
<option name="project" value="LOCAL" />
|
|
291
|
-
<updated>1638288337135</updated>
|
|
292
|
-
</task>
|
|
293
|
-
<task id="LOCAL-00010" summary="Kms report with time period">
|
|
294
|
-
<created>1639057192380</created>
|
|
295
|
-
<option name="number" value="00010" />
|
|
296
|
-
<option name="presentableId" value="LOCAL-00010" />
|
|
297
|
-
<option name="project" value="LOCAL" />
|
|
298
|
-
<updated>1639057192382</updated>
|
|
299
|
-
</task>
|
|
300
|
-
<task id="LOCAL-00011" summary="kms report - show every selected day">
|
|
301
|
-
<created>1639139696407</created>
|
|
302
|
-
<option name="number" value="00011" />
|
|
303
|
-
<option name="presentableId" value="LOCAL-00011" />
|
|
304
|
-
<option name="project" value="LOCAL" />
|
|
305
|
-
<updated>1639139696408</updated>
|
|
306
|
-
</task>
|
|
307
|
-
<task id="LOCAL-00012" summary="speeding report with customSpeed">
|
|
308
|
-
<created>1639238286381</created>
|
|
309
|
-
<option name="number" value="00012" />
|
|
310
|
-
<option name="presentableId" value="LOCAL-00012" />
|
|
311
|
-
<option name="project" value="LOCAL" />
|
|
312
|
-
<updated>1639238286382</updated>
|
|
313
|
-
</task>
|
|
314
|
-
<task id="LOCAL-00013" summary="fix speeding report">
|
|
315
|
-
<created>1639248407781</created>
|
|
316
|
-
<option name="number" value="00013" />
|
|
317
|
-
<option name="presentableId" value="LOCAL-00013" />
|
|
318
|
-
<option name="project" value="LOCAL" />
|
|
319
|
-
<updated>1639248407782</updated>
|
|
320
|
-
</task>
|
|
321
|
-
<task id="LOCAL-00014" summary="Trip and activity report with time period">
|
|
322
|
-
<created>1639873766070</created>
|
|
323
|
-
<option name="number" value="00014" />
|
|
324
|
-
<option name="presentableId" value="LOCAL-00014" />
|
|
325
|
-
<option name="project" value="LOCAL" />
|
|
326
|
-
<updated>1639873766072</updated>
|
|
327
|
-
</task>
|
|
328
|
-
<task id="LOCAL-00015" summary="Fix trips distance because imported positions generate trips with 0 kms">
|
|
329
|
-
<created>1640000462824</created>
|
|
330
|
-
<option name="number" value="00015" />
|
|
331
|
-
<option name="presentableId" value="LOCAL-00015" />
|
|
332
|
-
<option name="project" value="LOCAL" />
|
|
333
|
-
<updated>1640000462825</updated>
|
|
334
|
-
</task>
|
|
335
|
-
<task id="LOCAL-00016" summary="Fix reports by driver">
|
|
336
|
-
<created>1640274171902</created>
|
|
337
|
-
<option name="number" value="00016" />
|
|
338
|
-
<option name="presentableId" value="LOCAL-00016" />
|
|
339
|
-
<option name="project" value="LOCAL" />
|
|
340
|
-
<updated>1640274171902</updated>
|
|
341
|
-
</task>
|
|
342
|
-
<task id="LOCAL-00017" summary="location report - check if it's running on client side">
|
|
343
|
-
<created>1640795243287</created>
|
|
344
|
-
<option name="number" value="00017" />
|
|
345
|
-
<option name="presentableId" value="LOCAL-00017" />
|
|
346
|
-
<option name="project" value="LOCAL" />
|
|
347
|
-
<updated>1640795243288</updated>
|
|
348
|
-
</task>
|
|
349
|
-
<task id="LOCAL-00018" summary="timezone - check if it's running on client side">
|
|
350
|
-
<created>1640825795052</created>
|
|
351
|
-
<option name="number" value="00018" />
|
|
352
|
-
<option name="presentableId" value="LOCAL-00018" />
|
|
353
|
-
<option name="project" value="LOCAL" />
|
|
354
|
-
<updated>1640825795053</updated>
|
|
355
|
-
</task>
|
|
356
|
-
<task id="LOCAL-00019" summary="calculate avg speed">
|
|
357
|
-
<created>1640867522437</created>
|
|
358
|
-
<option name="number" value="00019" />
|
|
359
|
-
<option name="presentableId" value="LOCAL-00019" />
|
|
360
|
-
<option name="project" value="LOCAL" />
|
|
361
|
-
<updated>1640867522438</updated>
|
|
362
|
-
</task>
|
|
363
|
-
<task id="LOCAL-00020" summary="fix activity report by driver">
|
|
364
|
-
<created>1640872780966</created>
|
|
365
|
-
<option name="number" value="00020" />
|
|
366
|
-
<option name="presentableId" value="LOCAL-00020" />
|
|
367
|
-
<option name="project" value="LOCAL" />
|
|
368
|
-
<updated>1640872780968</updated>
|
|
369
|
-
</task>
|
|
370
|
-
<task id="LOCAL-00021" summary="activity report by driver grouped by day">
|
|
371
|
-
<created>1640878664617</created>
|
|
372
|
-
<option name="number" value="00021" />
|
|
373
|
-
<option name="presentableId" value="LOCAL-00021" />
|
|
374
|
-
<option name="project" value="LOCAL" />
|
|
375
|
-
<updated>1640878664617</updated>
|
|
376
|
-
</task>
|
|
377
|
-
<task id="LOCAL-00022" summary="fix kms-report by driver and fix activity report with time period">
|
|
378
|
-
<created>1641348028566</created>
|
|
379
|
-
<option name="number" value="00022" />
|
|
380
|
-
<option name="presentableId" value="LOCAL-00022" />
|
|
381
|
-
<option name="project" value="LOCAL" />
|
|
382
|
-
<updated>1641348028566</updated>
|
|
383
|
-
</task>
|
|
384
|
-
<task id="LOCAL-00023" summary="Refactor trip and speeding reports">
|
|
385
|
-
<created>1641511586537</created>
|
|
386
|
-
<option name="number" value="00023" />
|
|
387
|
-
<option name="presentableId" value="LOCAL-00023" />
|
|
388
|
-
<option name="project" value="LOCAL" />
|
|
389
|
-
<updated>1641511586537</updated>
|
|
390
|
-
</task>
|
|
391
|
-
<task id="LOCAL-00024" summary="check if weekDays parameter is set">
|
|
392
|
-
<created>1641527800168</created>
|
|
393
|
-
<option name="number" value="00024" />
|
|
394
|
-
<option name="presentableId" value="LOCAL-00024" />
|
|
395
|
-
<option name="project" value="LOCAL" />
|
|
396
|
-
<updated>1641527800170</updated>
|
|
397
|
-
</task>
|
|
398
|
-
<option name="localTasksCounter" value="25" />
|
|
399
|
-
<servers />
|
|
400
|
-
</component>
|
|
401
|
-
<component name="TypeScriptGeneratedFilesManager">
|
|
402
|
-
<option name="version" value="3" />
|
|
403
|
-
</component>
|
|
404
|
-
<component name="Vcs.Log.History.Properties">
|
|
405
|
-
<option name="COLUMN_ID_ORDER">
|
|
406
|
-
<list>
|
|
407
|
-
<option value="Default.Root" />
|
|
408
|
-
<option value="Default.Author" />
|
|
409
|
-
<option value="Default.Date" />
|
|
410
|
-
<option value="Default.Subject" />
|
|
411
|
-
<option value="Space.CommitStatus" />
|
|
412
|
-
</list>
|
|
413
|
-
</option>
|
|
414
|
-
</component>
|
|
415
|
-
<component name="Vcs.Log.Tabs.Properties">
|
|
416
|
-
<option name="TAB_STATES">
|
|
417
|
-
<map>
|
|
418
|
-
<entry key="MAIN">
|
|
419
|
-
<value>
|
|
420
|
-
<State />
|
|
421
|
-
</value>
|
|
422
|
-
</entry>
|
|
423
|
-
</map>
|
|
424
|
-
</option>
|
|
425
|
-
<option name="oldMeFiltersMigrated" value="true" />
|
|
426
|
-
</component>
|
|
427
|
-
<component name="VcsManagerConfiguration">
|
|
428
|
-
<MESSAGE value="Fix getStyle" />
|
|
429
|
-
<MESSAGE value="Fix getStyle in all reports" />
|
|
430
|
-
<MESSAGE value="try catch on pdf addImage" />
|
|
431
|
-
<MESSAGE value="Kms report grouped by day" />
|
|
432
|
-
<MESSAGE value="Fix pdf logo" />
|
|
433
|
-
<MESSAGE value="kms report with parallel requests" />
|
|
434
|
-
<MESSAGE value="Kms Report - Calculate distance with traccar trips" />
|
|
435
|
-
<MESSAGE value="refactor speeding and trip report" />
|
|
436
|
-
<MESSAGE value="Kms report with time period" />
|
|
437
|
-
<MESSAGE value="kms report - show every selected day" />
|
|
438
|
-
<MESSAGE value="speeding report with customSpeed" />
|
|
439
|
-
<MESSAGE value="fix speeding report" />
|
|
440
|
-
<MESSAGE value="Trip and activity report with time period" />
|
|
441
|
-
<MESSAGE value="Fix trips distance because imported positions generate trips with 0 kms" />
|
|
442
|
-
<MESSAGE value="Fix reports by driver" />
|
|
443
|
-
<MESSAGE value="location report - check if it's running on client side" />
|
|
444
|
-
<MESSAGE value="timezone - check if it's running on client side" />
|
|
445
|
-
<MESSAGE value="calculate avg speed" />
|
|
446
|
-
<MESSAGE value="fix activity report by driver" />
|
|
447
|
-
<MESSAGE value="activity report by driver grouped by day" />
|
|
448
|
-
<MESSAGE value="fix kms-report by driver and fix activity report with time period" />
|
|
449
|
-
<MESSAGE value="Refactor trip and speeding reports" />
|
|
450
|
-
<MESSAGE value="check if weekDays parameter is set" />
|
|
451
|
-
<option name="LAST_COMMIT_MESSAGE" value="check if weekDays parameter is set" />
|
|
452
|
-
</component>
|
|
453
|
-
</project>
|