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 | 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 Plan } from '@amalia/core/models';
import { PeriodFrequencyEnum } from '@amalia/payout-definition/periods/types';
import { users } from './users';
export const plans = {
televente: {
id: 'df9fc8b8-44d7-4b5b-b939-4d42ce8c4739',
name: 'Télévente Classique',
user: users.admin,
userId: users.admin.id,
frequency: PeriodFrequencyEnum.month,
indexedWeight: 0,
archived: false,
isHidden: false,
planTemplateError: null,
manualWeight: null,
workflowId: null,
linkToPlanDocumentation: null,
useVariableInsteadOfTotal: null,
totalVariableId: null,
calculateBothStatements: false,
calculationBatchSize: null,
calculationMaxParallel: null,
maxRecursionLevel: null,
categoriesV2: null,
isForecasted: false,
isSimulationEnabled: false,
isSimulationAddRecordEnabled: false,
forecastId: null,
createdAt: new Date(),
updatedAt: new Date(),
},
} as const satisfies Record<string, Plan>;
|