fleetmap-reports 1.0.231 → 1.0.232

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.
@@ -5,8 +5,10 @@
5
5
  <change beforePath="$PROJECT_DIR$/lang/enGB.js" beforeDir="false" afterPath="$PROJECT_DIR$/lang/enGB.js" afterDir="false" />
6
6
  <change beforePath="$PROJECT_DIR$/lang/ptBR.js" beforeDir="false" afterPath="$PROJECT_DIR$/lang/ptBR.js" afterDir="false" />
7
7
  <change beforePath="$PROJECT_DIR$/lang/ptPT.js" beforeDir="false" afterPath="$PROJECT_DIR$/lang/ptPT.js" afterDir="false" />
8
+ <change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/package.json" afterDir="false" />
8
9
  <change beforePath="$PROJECT_DIR$/src/index.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.js" afterDir="false" />
9
10
  <change beforePath="$PROJECT_DIR$/src/index.test.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/index.test.js" afterDir="false" />
11
+ <change beforePath="$PROJECT_DIR$/src/kms-report.js" beforeDir="false" afterPath="$PROJECT_DIR$/src/kms-report.js" afterDir="false" />
10
12
  </list>
11
13
  <option name="SHOW_DIALOG" value="false" />
12
14
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -144,7 +146,7 @@
144
146
  <workItem from="1637441942952" duration="4543000" />
145
147
  <workItem from="1637670815688" duration="2973000" />
146
148
  <workItem from="1637674107929" duration="13419000" />
147
- <workItem from="1637756665591" duration="1260000" />
149
+ <workItem from="1637756665591" duration="3093000" />
148
150
  </task>
149
151
  <task id="LOCAL-00001" summary="Fix getStyle">
150
152
  <created>1636983717385</created>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fleetmap-reports",
3
- "version": "1.0.231",
3
+ "version": "1.0.232",
4
4
  "description": "",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/kms-report.js CHANGED
@@ -156,7 +156,7 @@ async function exportKmsReportToPDF(userData, reportData) {
156
156
  const data = []
157
157
  d.days.forEach(day => {
158
158
  const temp = [
159
- new Date(day.date).toLocaleDateString(),
159
+ day.date,
160
160
  (day.kms/1000).toFixed(0)
161
161
  ]
162
162