430 lines
12 KiB
TypeScript
430 lines
12 KiB
TypeScript
import { CostTypeVariant } from '@prisma/client';
|
|
import { endOfDay, startOfDay } from 'date-fns';
|
|
|
|
export const KTW_VDEK_TARIFFS = [
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2017-09-01')),
|
|
validTo: endOfDay(new Date('2021-06-30')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 8150,
|
|
},
|
|
{
|
|
description: 'QMS Zuschlag',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 950,
|
|
},
|
|
{
|
|
description: 'ab dem 18. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 273,
|
|
kmInclusive: 17,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 18:30-06:30',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 4550,
|
|
timeRange: '18:30-06:30',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 4550,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 4550,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2021-07-01')),
|
|
validTo: endOfDay(new Date('2021-12-31')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 8977,
|
|
},
|
|
{
|
|
description: 'QMS Zuschlag',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 1037,
|
|
},
|
|
{
|
|
description: 'ab dem 18. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 295,
|
|
kmInclusive: 17,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 18:30-06:30',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 5028,
|
|
timeRange: '18:30-06:30',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 5028,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 5028,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2022-01-01')),
|
|
validTo: endOfDay(new Date('2023-04-30')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 7043,
|
|
},
|
|
{
|
|
description: 'QMS Zuschlag',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 2790,
|
|
},
|
|
{
|
|
description: 'Modernes Einsatzfahrzeug',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 1393,
|
|
},
|
|
{
|
|
description: 'Leitstellenmanagement',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 649,
|
|
},
|
|
{
|
|
description: 'ab dem 17. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 317,
|
|
kmInclusive: 16,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 18:30-06:30',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 5537,
|
|
timeRange: '18:30-06:30',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 6212,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 6212,
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.A',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 4134,
|
|
infectionType: '2.A',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.B',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 16941,
|
|
infectionType: '2.B',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.1',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 19590,
|
|
infectionType: '3.1',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.2',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 19590,
|
|
infectionType: '3.2',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2023-05-01')),
|
|
validTo: endOfDay(new Date('2024-04-30')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 7325,
|
|
},
|
|
{
|
|
description: 'QMS Zuschlag',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 2886,
|
|
},
|
|
{
|
|
description: 'Modernes Einsatzfahrzeug',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 1450,
|
|
},
|
|
{
|
|
description: 'Leitstellenmanagement',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 671,
|
|
},
|
|
{
|
|
description: 'ab dem 17. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 349,
|
|
kmInclusive: 16,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 19:00-19:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 5728,
|
|
timeRange: '19:00-19:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 20:00-21:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 6644,
|
|
timeRange: '20:00-21:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 22:00-04:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 7198,
|
|
timeRange: '22:00-04:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 05:00-06:00',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 5728,
|
|
timeRange: '05:00-06:00',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 6426,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 6426,
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.A',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 4277,
|
|
infectionType: '2.A',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.B',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 17525,
|
|
infectionType: '2.B',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.1',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 20266,
|
|
infectionType: '3.1',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.2',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 20266,
|
|
infectionType: '3.2',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2024-05-01')),
|
|
validTo: endOfDay(new Date('2025-04-30')),
|
|
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 19:00-19:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 5970,
|
|
timeRange: '19:00-19:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 20:00-21:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 6924,
|
|
timeRange: '20:00-21:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 22:00-04:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 7502,
|
|
timeRange: '22:00-04:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 05:00-06:00',
|
|
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',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'VDEK KTW',
|
|
validFrom: startOfDay(new Date('2025-05-01')),
|
|
validTo: null,
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 7971,
|
|
},
|
|
{
|
|
description: 'QMS Zuschlag',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 3141,
|
|
},
|
|
{
|
|
description: 'Modernes Einsatzfahrzeug',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 1885,
|
|
},
|
|
{
|
|
description: 'Leitstellenmanagement',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 730,
|
|
},
|
|
{
|
|
description: 'ab dem 17. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 402,
|
|
kmInclusive: 16,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 19:00-19:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 6233,
|
|
timeRange: '19:00-19:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 20:00-21:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 7229,
|
|
timeRange: '20:00-21:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 22:00-04:59',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 7833,
|
|
timeRange: '22:00-04:59',
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag 05:00-06:00',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 6233,
|
|
timeRange: '05:00-06:00',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 6992,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 6992,
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.A',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 4654,
|
|
infectionType: '2.A',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 2.B',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 19070,
|
|
infectionType: '2.B',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.1',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 22052,
|
|
infectionType: '3.1',
|
|
},
|
|
{
|
|
description: 'Desinfektionszuschlag 3.2',
|
|
variant: CostTypeVariant.DESINFEKTIONSZUSCHLAG,
|
|
costAmount: 22052,
|
|
infectionType: '3.2',
|
|
},
|
|
],
|
|
},
|
|
];
|