Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { type VariableValue } from '@amalia/core/models';
import { CurrencySymbolsEnum } from '@amalia/ext/iso-4217';
import { periods } from './periods';
import { plans } from './plans';
import { teams } from './teams';
import { users } from './users';
import { variables } from './variables';
export const variableValues = [
{
id: '4c4bb9ba-83d3-4da1-a85d-e80e4146ea68',
variableId: variables.userQuota1.id,
userId: users.admin.id,
value: '1000',
// 2020-01-01T00:00:00.000Z
startDate: 1_577_836_800,
// 2020-03-31T23:59:59.000Z
endDate: 1_585_699_199,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
teamId: null,
currency: CurrencySymbolsEnum.EUR,
},
{
id: '40f3211e-328d-4ee9-b50b-749bbe4846e3',
variableId: variables.teamQuarterTarget.id,
teamId: teams.dreamTeamWithManagers.id,
userId: null,
// 2019-09-01T00:00:00.000Z
startDate: 1_567_296_000,
// 2019-09-30T23:59:59.000Z
endDate: 1_569_887_999,
value: '3',
currency: CurrencySymbolsEnum.EUR,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
},
{
id: '64a6bd40-f2c1-44c5-b104-76683e170698',
variableId: variables.teamQuarterTarget.id,
teamId: teams.teamAE.id,
userId: null,
// 2019-09-01T00:00:00.000Z
startDate: 1_567_296_000,
// 2019-09-30T23:59:59.000Z
endDate: 1_569_887_999,
value: '4',
currency: CurrencySymbolsEnum.EUR,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
},
{
id: '6a095fcb-0a28-4564-8a9c-9f9fd5be0f9c',
variableId: variables.planGlobalTarget.id,
planId: plans.anotherPlan.id,
value: '5',
startDate: null,
endDate: null,
userId: null,
teamId: null,
createdAt: new Date(),
updatedAt: new Date(),
currency: CurrencySymbolsEnum.EUR,
},
{
id: '4c4bdcba-83d3-4da1-a85d-e80e4146ea68',
variableId: variables.userQuota1.id,
userId: users.employee1.id,
value: '0',
startDate: periods.october2019.startDate,
endDate: periods.october2019.endDate,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
teamId: null,
currency: CurrencySymbolsEnum.EUR,
},
{
id: '4c4bdcba-83d3-4da1-2378-e80e4146ea68',
variableId: variables.userQuota1.id,
userId: users.employee1.id,
value: '0',
startDate: periods.november2019.startDate,
endDate: periods.november2019.endDate,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
teamId: null,
currency: CurrencySymbolsEnum.EUR,
},
{
id: '4c4bdcba-83d3-1342-a85d-e80e4146ea68',
variableId: variables.userQuota1.id,
userId: users.employee1.id,
value: '0',
startDate: periods.december2019.startDate,
endDate: periods.december2019.endDate,
createdAt: new Date(),
updatedAt: new Date(),
planId: null,
teamId: null,
currency: CurrencySymbolsEnum.EUR,
},
] as const satisfies VariableValue[];
|