@tasenor/common-plugins 1.17.7 → 1.17.9
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.8 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.9
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tasenor/common-plugins",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.9",
|
|
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.9",
|
|
17
|
+
"@tasenor/common-ui": "1.17.9",
|
|
18
|
+
"@tasenor/common-node": "1.17.9"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@mui/icons-material": "^5.14.1",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"react-i18next": "^14.0.5",
|
|
32
32
|
"react-router-dom": "^6.14.1",
|
|
33
33
|
"typescript": "^5.1.6",
|
|
34
|
-
"@tasenor/config": "1.17.
|
|
34
|
+
"@tasenor/config": "1.17.9",
|
|
35
35
|
"eslint-config-tasenor": "0.0.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
@@ -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,
|
|
@@ -9,9 +9,9 @@ class TITOImportPlugin extends ImportPlugin {
|
|
|
9
9
|
|
|
10
10
|
this.code = 'TITOImport' as PluginCode
|
|
11
11
|
this.title = 'Import for TITO'
|
|
12
|
-
this.version = '1.0.
|
|
12
|
+
this.version = '1.0.31' as Version
|
|
13
13
|
this.icon = '<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#000000"><path d="M0 0h24v24H0V0z" fill="none"/><path d="M5 6.99h3V14h2V6.99h3L9 3zM14 10v7.01h-3L15 21l4-3.99h-3V10z"/></svg>'
|
|
14
|
-
this.releaseDate = '
|
|
14
|
+
this.releaseDate = '2026-01-07'
|
|
15
15
|
this.use = 'backend'
|
|
16
16
|
this.type = 'import'
|
|
17
17
|
this.description = 'Import plugin for importing transaction data from old fixed length field TITO format.'
|