init data-connector

This commit is contained in:
Marcel Arndt
2025-04-10 17:32:06 +02:00
parent 52c1a14609
commit 46631db5b2
105 changed files with 8081 additions and 338 deletions
@@ -155,7 +155,7 @@ export const KTW_AOK_TARIFFS = [
'1/KTW-04',
'1/KTW-05',
'1/KTW-06',
]
],
},
{
description: 'Leitstellenmanagement',
@@ -241,7 +241,7 @@ export const KTW_AOK_TARIFFS = [
'1/KTW-04',
'1/KTW-05-E',
'1/KTW-06',
]
],
},
{
description: 'Leitstellenmanagement',
@@ -190,7 +190,7 @@ export const KTW_VDEK_TARIFFS = [
{
description: 'VDEK KTW',
validFrom: startOfDay(new Date('2023-05-01')),
validTo: null,
validTo: endOfDay(new Date('2024-04-31')),
costTypes: [
{
description: 'Grundpauschale je Fahrt',
@@ -278,4 +278,95 @@ export const KTW_VDEK_TARIFFS = [
},
],
},
{
description: 'VDEK KTW',
validFrom: startOfDay(new Date('2024-05-01')),
validTo: null,
costTypes: [
{
description: 'Grundpauschale je Fahrt',
variant: CostTypeVariant.GRUNDPREIS,
costAmount: 7634,
},
{
description: 'QMS Zuschlag',
variant: CostTypeVariant.GRUNDPREIS,
costAmount: 3008,
},
{
description: 'Modernes Einsatzfahrzeug',
variant: CostTypeVariant.GRUNDPREIS,
costAmount: 1885,
},
{
description: 'Leitstellenmanagement',
variant: CostTypeVariant.GRUNDPREIS,
costAmount: 699,
},
{
description: 'ab dem 17. km',
variant: CostTypeVariant.KILOMETERZUSCHLAG,
costAmount: 385,
kmInclusive: 16,
},
{
description: 'Nachtzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 5970,
timeRange: '19:00-19:59',
},
{
description: 'Nachtzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 6924,
timeRange: '20:00-21:59',
},
{
description: 'Nachtzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 7502,
timeRange: '22:00-04:59',
},
{
description: 'Nachtzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 5970,
timeRange: '05:00-06:00',
},
{
description: 'Wochenendzuschlag',
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
costAmount: 6697,
},
{
description: 'Feiertagszuschlag',
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
costAmount: 6697,
},
{
description: 'Desinfektionszuschlag 2.A',
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
costAmount: 4457,
infectionType: '2.A',
},
{
description: 'Desinfektionszuschlag 2.B',
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
costAmount: 18265,
infectionType: '2.B',
},
{
description: 'Desinfektionszuschlag 3.1',
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
costAmount: 21121,
infectionType: '3.1',
},
{
description: 'Desinfektionszuschlag 3.2',
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
costAmount: 21121,
infectionType: '3.2',
},
],
},
];
@@ -23,7 +23,7 @@ export const TSW_DAK_VDEK_TARIFFS = [
{
description: 'DAK + VDEK TSW',
validFrom: startOfDay(new Date('2023-06-01')),
validTo: null,
validTo: endOfDay(new Date('2024-08-31')),
costTypes: [
{
description: 'Grundpauschale je Fahrt (TSW 2)',
@@ -55,4 +55,44 @@ export const TSW_DAK_VDEK_TARIFFS = [
},
],
},
{
description: 'DAK + VDEK TSW',
validFrom: startOfDay(new Date('2024-09-01')),
validTo: null,
costTypes: [
{
description: 'Grundpauschale je Fahrt (TS 2)',
variant: CostTypeVariant.TSWDIFFERENZIERUNG,
costAmount: 6434,
},
{
description: 'Grundpauschale je Fahrt (TS 1)',
variant: CostTypeVariant.TSWDIFFERENZIERUNG,
costAmount: 4793,
},
{
description: 'Grundpauschale je Fahrt (TS+R)',
variant: CostTypeVariant.TSWDIFFERENZIERUNG,
costAmount: 5793,
},
{
description: 'Nachtzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 407,
timeRange: '05:00-07:00',
},
{
description: 'Fallmanagementzuschlag',
variant: CostTypeVariant.NACHTZUSCHLAG,
costAmount: 750,
timeRange: '14:30-23:00',
},
{
description: 'ab dem 22. km',
variant: CostTypeVariant.KILOMETERZUSCHLAG,
costAmount: 180,
kmInclusive: 21,
},
],
},
];