142 lines
3.7 KiB
TypeScript
142 lines
3.7 KiB
TypeScript
import { CostTypeVariant } from '@prisma/client';
|
|
import { startOfDay, endOfDay } from 'date-fns';
|
|
|
|
export const BTW_AOK_TARIFFS = [
|
|
{
|
|
description: 'AOK/BKK/IKK/Knappschaft BTW',
|
|
validFrom: startOfDay(new Date('2021-01-01')),
|
|
validTo: endOfDay(new Date('2021-06-30')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 3400,
|
|
},
|
|
{
|
|
description: 'ab dem 21. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 135,
|
|
kmInclusive: 20,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 1665,
|
|
timeRange: '19:00-07:00',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 1665,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 1665,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'AOK/BKK/IKK/Knappschaft BTW',
|
|
validFrom: startOfDay(new Date('2021-07-01')),
|
|
validTo: endOfDay(new Date('2022-08-31')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 3465,
|
|
},
|
|
{
|
|
description: 'ab dem 21. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 135,
|
|
kmInclusive: 20,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 1665,
|
|
timeRange: '19:00-07:00',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 1665,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 1665,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'AOK/BKK/IKK/Knappschaft BTW',
|
|
validFrom: startOfDay(new Date('2022-09-01')),
|
|
validTo: endOfDay(new Date('2023-04-30')),
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 3700,
|
|
},
|
|
{
|
|
description: 'ab dem 21. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 160,
|
|
kmInclusive: 20,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 1765,
|
|
timeRange: '18:00-07:30',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 1765,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 1765,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
description: 'AOK/BKK/IKK/Knappschaft BTW',
|
|
validFrom: startOfDay(new Date('2023-05-01')),
|
|
validTo: null,
|
|
costTypes: [
|
|
{
|
|
description: 'Grundpauschale je Fahrt',
|
|
variant: CostTypeVariant.GRUNDPREIS,
|
|
costAmount: 3885,
|
|
},
|
|
{
|
|
description: 'ab dem 21. km',
|
|
variant: CostTypeVariant.KILOMETERZUSCHLAG,
|
|
costAmount: 180,
|
|
kmInclusive: 20,
|
|
},
|
|
{
|
|
description: 'Nachtzuschlag',
|
|
variant: CostTypeVariant.NACHTZUSCHLAG,
|
|
costAmount: 1865,
|
|
timeRange: '18:00-07:30',
|
|
},
|
|
{
|
|
description: 'Wochenendzuschlag',
|
|
variant: CostTypeVariant.WOCHENENDZUSCHLAG,
|
|
costAmount: 1865,
|
|
},
|
|
{
|
|
description: 'Feiertagszuschlag',
|
|
variant: CostTypeVariant.FEIERTAGSZUSCHLAG,
|
|
costAmount: 1865,
|
|
},
|
|
],
|
|
},
|
|
];
|