@tasenor/common-plugins 1.17.7 → 1.17.8
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/.turbo/turbo-release.log
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @tasenor/common-plugins@1.17.
|
|
3
|
+
> @tasenor/common-plugins@1.17.7 release /home/wigy/project/tasenor-qa/tasenor-bookkeeper/packages/tasenor-common-plugins
|
|
4
4
|
> pnpm version patch && pnpm publish --force --access public --no-git-checks
|
|
5
5
|
|
|
6
6
|
[1mnpm[22m [33mwarn[39m [94mUnknown env config "auto-install-peers". This will stop working in the next major version of npm.[39m
|
|
7
|
-
v1.17.
|
|
8
|
-
[43m[30m WARN [39m[49m using --force I sure hope you know what you are doing
|
|
7
|
+
v1.17.8
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tasenor/common-plugins",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.8",
|
|
4
4
|
"description": "Shared common plugins of Tasenor project",
|
|
5
5
|
"repository": "git@github.com:dataplugoy/tasenor-bookkeeper.git",
|
|
6
6
|
"author": "Tommi Ronkainen <tommi.ronkainen@gmail.com>",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"dayjs": "1.10.8",
|
|
14
14
|
"sprintf-js": "^1.1.2",
|
|
15
15
|
"tsx": "^4.7.0",
|
|
16
|
-
"@tasenor/common": "1.17.
|
|
17
|
-
"@tasenor/common-
|
|
18
|
-
"@tasenor/common-
|
|
16
|
+
"@tasenor/common": "1.17.8",
|
|
17
|
+
"@tasenor/common-ui": "1.17.8",
|
|
18
|
+
"@tasenor/common-node": "1.17.8"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@mui/icons-material": "^5.14.1",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"react-i18next": "^14.0.5",
|
|
32
32
|
"react-router-dom": "^6.14.1",
|
|
33
33
|
"typescript": "^5.1.6",
|
|
34
|
-
"
|
|
35
|
-
"
|
|
34
|
+
"eslint-config-tasenor": "0.0.0",
|
|
35
|
+
"@tasenor/config": "1.17.8"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@mui/icons-material": "^5.14.1",
|
|
@@ -253,7 +253,27 @@ export class TITOHandler extends TransactionImportHandler {
|
|
|
253
253
|
})
|
|
254
254
|
}
|
|
255
255
|
|
|
256
|
-
//
|
|
256
|
+
// Withdrawal fix.
|
|
257
|
+
case '51':
|
|
258
|
+
return {
|
|
259
|
+
Tietuetunnus: code,
|
|
260
|
+
...this.parseFixedLength(s.substring(6), {
|
|
261
|
+
'Jakson tunnus': 1,
|
|
262
|
+
Jaksopäivä: 6,
|
|
263
|
+
'Panot Kappalemäärä': 8,
|
|
264
|
+
'Panot Summa': 19,
|
|
265
|
+
'Otot Kappalemäärä': 8,
|
|
266
|
+
'Otot Summa': 19,
|
|
267
|
+
}, {
|
|
268
|
+
Jaksopäivä: (s) => `20${s.substring(0, 2)}-${s.substring(2, 4)}-${s.substring(4, 6)}`,
|
|
269
|
+
'Panot Summa': (s) => `${parseInt(s) / 100}`,
|
|
270
|
+
'Panot Kappalemäärä': (s) => `${parseInt(s)}`,
|
|
271
|
+
'Otot Summa': (s) => `${parseInt(s) / 100}`,
|
|
272
|
+
'Otot Kappalemäärä': (s) => `${parseInt(s)}`,
|
|
273
|
+
})
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// Notification record.
|
|
257
277
|
case '70':
|
|
258
278
|
return {
|
|
259
279
|
Tietuetunnus: code,
|