hl-core 0.0.8-beta.9 → 0.0.9-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api/index.ts +100 -34
- package/api/interceptors.ts +17 -13
- package/components/Button/Btn.vue +1 -1
- package/components/Button/ScrollButtons.vue +2 -2
- package/components/Complex/Page.vue +1 -1
- package/components/Dialog/Dialog.vue +9 -39
- package/components/Dialog/FamilyDialog.vue +7 -4
- package/components/Form/FormBlock.vue +51 -28
- package/components/Form/FormSection.vue +4 -1
- package/components/Form/FormToggle.vue +2 -3
- package/components/Form/ManagerAttachment.vue +21 -20
- package/components/Form/ProductConditionsBlock.vue +60 -10
- package/components/Input/Datepicker.vue +6 -2
- package/components/Input/FileInput.vue +2 -2
- package/components/Input/FormInput.vue +29 -7
- package/components/Input/PanelInput.vue +7 -2
- package/components/Input/RoundedInput.vue +2 -2
- package/components/Input/RoundedSelect.vue +137 -0
- package/components/Layout/Drawer.vue +3 -2
- package/components/Layout/Header.vue +40 -4
- package/components/Layout/Loader.vue +1 -1
- package/components/Layout/SettingsPanel.vue +51 -13
- package/components/Menu/MenuHover.vue +30 -0
- package/components/Menu/MenuNav.vue +29 -13
- package/components/Menu/MenuNavItem.vue +6 -3
- package/components/Pages/Anketa.vue +49 -31
- package/components/Pages/Auth.vue +139 -46
- package/components/Pages/Documents.vue +6 -6
- package/components/Pages/InvoiceInfo.vue +30 -0
- package/components/Pages/MemberForm.vue +503 -343
- package/components/Pages/ProductAgreement.vue +4 -2
- package/components/Pages/ProductConditions.vue +494 -95
- package/components/Panel/PanelHandler.vue +91 -20
- package/components/Panel/PanelSelectItem.vue +1 -1
- package/components/Utilities/Chip.vue +27 -0
- package/components/Utilities/JsonViewer.vue +27 -0
- package/composables/axios.ts +1 -1
- package/composables/classes.ts +165 -81
- package/composables/constants.ts +25 -52
- package/composables/index.ts +80 -2
- package/composables/styles.ts +8 -3
- package/configs/i18n.ts +2 -4
- package/layouts/default.vue +6 -6
- package/locales/kz.json +532 -346
- package/locales/ru.json +210 -22
- package/nuxt.config.ts +1 -1
- package/package.json +38 -12
- package/pages/500.vue +2 -2
- package/pages/Token.vue +51 -0
- package/plugins/helperFunctionsPlugins.ts +2 -1
- package/plugins/vuetifyPlugin.ts +3 -1
- package/store/{data.store.js → data.store.ts} +1116 -752
- package/store/form.store.ts +1 -1
- package/store/member.store.ts +94 -72
- package/store/{rules.js → rules.ts} +54 -26
- package/types/enum.ts +83 -0
- package/types/env.d.ts +10 -0
- package/types/index.ts +197 -7
- package/locales/en.json +0 -399
package/types/index.ts
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
|
+
import { RouteLocationNormalizedLoaded, RouteLocationNormalized } from 'vue-router';
|
|
2
|
+
|
|
1
3
|
export {};
|
|
2
4
|
|
|
3
5
|
declare global {
|
|
6
|
+
type EnvModes = 'development' | 'test' | 'vercel' | 'production';
|
|
7
|
+
type Projects = 'aml' | 'baiterek' | 'bolashak' | 'calculator' | 'compliance' | 'efo' | 'gons' | 'halykkazyna' | 'liferenta' | 'lifetrip' | 'lka' | 'mycar';
|
|
4
8
|
type MemberKeys = keyof ReturnType<typeof useFormStore>;
|
|
5
9
|
type MemberFormTypes = 'policyholderForm' | 'insuredForm' | 'beneficiaryForm' | 'beneficialOwnerForm' | 'policyholdersRepresentativeForm' | 'productConditionsForm';
|
|
10
|
+
type SingleMember = 'policyholderForm' | 'policyholdersRepresentativeForm';
|
|
11
|
+
type MultipleMember = 'insuredForm' | 'beneficiaryForm' | 'beneficialOwnerForm';
|
|
6
12
|
type PanelTypes = 'settings' | 'panel';
|
|
7
13
|
type FileActions = 'view' | 'download';
|
|
14
|
+
type RouteType = RouteLocationNormalizedLoaded | RouteLocationNormalized;
|
|
8
15
|
type InputVariants = 'solo' | 'filled' | 'outlined' | 'plain' | 'underlined';
|
|
9
16
|
type InputTypes =
|
|
10
17
|
| 'button'
|
|
@@ -130,9 +137,9 @@ declare global {
|
|
|
130
137
|
definedAnswers: DefinedAnswers;
|
|
131
138
|
defaultAnswer: string;
|
|
132
139
|
questOrder: number;
|
|
133
|
-
answerId:
|
|
140
|
+
answerId: string | null;
|
|
134
141
|
answerName: AnswerName | null;
|
|
135
|
-
answerText:
|
|
142
|
+
answerText: string | null;
|
|
136
143
|
};
|
|
137
144
|
|
|
138
145
|
enum AnswerName {
|
|
@@ -220,9 +227,9 @@ declare global {
|
|
|
220
227
|
gender: number;
|
|
221
228
|
amount: number | null;
|
|
222
229
|
premium: number | null;
|
|
223
|
-
coverPeriod:
|
|
224
|
-
payPeriod:
|
|
225
|
-
indexRateId
|
|
230
|
+
coverPeriod: number;
|
|
231
|
+
payPeriod: number;
|
|
232
|
+
indexRateId?: string | null;
|
|
226
233
|
paymentPeriodId: string;
|
|
227
234
|
addCovers: AddCover[];
|
|
228
235
|
};
|
|
@@ -232,6 +239,9 @@ declare global {
|
|
|
232
239
|
premium: number;
|
|
233
240
|
mainCoverPremium: number;
|
|
234
241
|
addCovers: AddCover[];
|
|
242
|
+
amountInCurrency: number;
|
|
243
|
+
premiumInCurrency: number;
|
|
244
|
+
annuityMonthPay: string | number | null;
|
|
235
245
|
};
|
|
236
246
|
|
|
237
247
|
type AddCover = {
|
|
@@ -259,7 +269,7 @@ declare global {
|
|
|
259
269
|
|
|
260
270
|
type SignDataType = {
|
|
261
271
|
processInstanceId: string;
|
|
262
|
-
name: 'Statement' | 'Agreement';
|
|
272
|
+
name: 'Statement' | 'Agreement' | 'Contract';
|
|
263
273
|
format: 'pdf';
|
|
264
274
|
};
|
|
265
275
|
|
|
@@ -271,6 +281,8 @@ declare global {
|
|
|
271
281
|
text: string;
|
|
272
282
|
};
|
|
273
283
|
|
|
284
|
+
type RegNumberDataType = { processInstanceId: string; regNumber: string; date: string };
|
|
285
|
+
|
|
274
286
|
type EpayShortResponse = {
|
|
275
287
|
id: string;
|
|
276
288
|
link: string;
|
|
@@ -296,7 +308,7 @@ declare global {
|
|
|
296
308
|
};
|
|
297
309
|
|
|
298
310
|
type SendTask = {
|
|
299
|
-
|
|
311
|
+
decision: keyof typeof constants.actions;
|
|
300
312
|
taskId: string;
|
|
301
313
|
comment?: string;
|
|
302
314
|
};
|
|
@@ -314,4 +326,182 @@ declare global {
|
|
|
314
326
|
agentNo?: string;
|
|
315
327
|
iin?: string | null;
|
|
316
328
|
};
|
|
329
|
+
|
|
330
|
+
type ChipComponent = {
|
|
331
|
+
title: string;
|
|
332
|
+
description?: string;
|
|
333
|
+
};
|
|
334
|
+
|
|
335
|
+
type GetContragentRequest = {
|
|
336
|
+
firstName: string;
|
|
337
|
+
lastName: string;
|
|
338
|
+
middleName: string;
|
|
339
|
+
iin: string;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
type GetContragentResponse = {
|
|
343
|
+
totalItems: number;
|
|
344
|
+
items: ContragentType[];
|
|
345
|
+
};
|
|
346
|
+
|
|
347
|
+
type ContragentType = {
|
|
348
|
+
id: number;
|
|
349
|
+
type: number;
|
|
350
|
+
iin: string;
|
|
351
|
+
longName: string;
|
|
352
|
+
lastName: string;
|
|
353
|
+
firstName: string;
|
|
354
|
+
middleName: string | null;
|
|
355
|
+
birthDate: string;
|
|
356
|
+
gender: number;
|
|
357
|
+
genderName: string;
|
|
358
|
+
birthPlace: string;
|
|
359
|
+
age: number;
|
|
360
|
+
registrationDate: string;
|
|
361
|
+
verifyType: string;
|
|
362
|
+
verifyDate: string;
|
|
363
|
+
};
|
|
364
|
+
|
|
365
|
+
type ContragentQuestionaries = {
|
|
366
|
+
id: number;
|
|
367
|
+
contragentId: number;
|
|
368
|
+
questId: string;
|
|
369
|
+
questName: string;
|
|
370
|
+
questAnswer: string | null;
|
|
371
|
+
questAnswerName: string | null;
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
type ContragentDocuments = {
|
|
375
|
+
id: number;
|
|
376
|
+
contragentId: number;
|
|
377
|
+
type: string;
|
|
378
|
+
typeName: string | null;
|
|
379
|
+
serial: string | null;
|
|
380
|
+
number: string | null;
|
|
381
|
+
issueDate: string;
|
|
382
|
+
expireDate: string;
|
|
383
|
+
issuerId: number;
|
|
384
|
+
issuerName: string | null;
|
|
385
|
+
issuerNameRu: string | null;
|
|
386
|
+
description: string | null;
|
|
387
|
+
note: string | null;
|
|
388
|
+
verifyType: string;
|
|
389
|
+
verifyDate: string;
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
type ContragentAddress = {
|
|
393
|
+
id: number;
|
|
394
|
+
contragentId: number;
|
|
395
|
+
type: string;
|
|
396
|
+
address: string;
|
|
397
|
+
countryCode: string;
|
|
398
|
+
countryName: string;
|
|
399
|
+
stateCode: string;
|
|
400
|
+
stateName: string;
|
|
401
|
+
cityCode: string;
|
|
402
|
+
cityName: string;
|
|
403
|
+
regionCode: string | null;
|
|
404
|
+
regionName: string | null;
|
|
405
|
+
streetName: string;
|
|
406
|
+
blockNumber: string;
|
|
407
|
+
apartmentNumber: string;
|
|
408
|
+
cityTypeId: number | null;
|
|
409
|
+
cityTypeName: string;
|
|
410
|
+
microRaion: string | null;
|
|
411
|
+
kvartal: string | null;
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
type ContragentContacts = {
|
|
415
|
+
id: number;
|
|
416
|
+
contragentId: number;
|
|
417
|
+
type: string;
|
|
418
|
+
typeName: string;
|
|
419
|
+
value: string | null;
|
|
420
|
+
note: string | null;
|
|
421
|
+
primaryFlag: string;
|
|
422
|
+
newValue: string | null;
|
|
423
|
+
verifyType?: string | null;
|
|
424
|
+
verifyDate?: string | null;
|
|
425
|
+
};
|
|
426
|
+
|
|
427
|
+
type AddCoverAnswer = {
|
|
428
|
+
id: string;
|
|
429
|
+
code: string;
|
|
430
|
+
calculatorValue: number;
|
|
431
|
+
nameKz: string;
|
|
432
|
+
nameRu: string;
|
|
433
|
+
isDefault: boolean;
|
|
434
|
+
};
|
|
435
|
+
|
|
436
|
+
type PolicyAppDto = {
|
|
437
|
+
id?: string;
|
|
438
|
+
processInstanceId?: string;
|
|
439
|
+
policyId?: number | null;
|
|
440
|
+
policyNumber?: string | null;
|
|
441
|
+
contractDate?: string;
|
|
442
|
+
contractEndDate?: string;
|
|
443
|
+
amount?: number | null;
|
|
444
|
+
premium?: number | null;
|
|
445
|
+
mainCoverPremium?: number;
|
|
446
|
+
currency?: string;
|
|
447
|
+
isSpokesman?: boolean;
|
|
448
|
+
coverPeriod?: number | null;
|
|
449
|
+
payPeriod?: number | null;
|
|
450
|
+
indexRateId?: string;
|
|
451
|
+
indexRateCode?: string;
|
|
452
|
+
indexRateName?: string;
|
|
453
|
+
paymentPeriodId?: string;
|
|
454
|
+
paymentPeriodName?: string;
|
|
455
|
+
lifeMultiply?: number;
|
|
456
|
+
lifeAdditive?: number;
|
|
457
|
+
adbMultiply?: number;
|
|
458
|
+
adbAdditive?: number;
|
|
459
|
+
disabilityMultiply?: number;
|
|
460
|
+
disabilityAdditive?: number;
|
|
461
|
+
documentSignTypeId?: string;
|
|
462
|
+
documentSignTypeCode?: string;
|
|
463
|
+
documentSignTypeName?: string;
|
|
464
|
+
isDocumentsSigned?: boolean;
|
|
465
|
+
paymentTypeId?: string;
|
|
466
|
+
paymentTypeName?: string;
|
|
467
|
+
isPayed?: boolean;
|
|
468
|
+
underwritingType?: number;
|
|
469
|
+
annualIncome?: number | null;
|
|
470
|
+
calcDirect?: number;
|
|
471
|
+
tariffId?: string;
|
|
472
|
+
tariffName?: string;
|
|
473
|
+
riskGroup?: number;
|
|
474
|
+
riskGroup2?: number;
|
|
475
|
+
lifeMultiplyClient?: number;
|
|
476
|
+
lifeAdditiveClient?: number;
|
|
477
|
+
annuityTypeId?: string;
|
|
478
|
+
annuityTypeName?: string;
|
|
479
|
+
annuityPaymentPeriodId?: string;
|
|
480
|
+
annuityPaymentPeriodName?: string;
|
|
481
|
+
guaranteedPaymentPeriod?: number | null;
|
|
482
|
+
paymentPeriod?: number;
|
|
483
|
+
annuityMonthPay?: number;
|
|
484
|
+
annuityPaymentBeginDate?: string;
|
|
485
|
+
annuityPaymentEndDate?: string;
|
|
486
|
+
amountInCurrency?: number | null;
|
|
487
|
+
premiumInCurrency?: number | null;
|
|
488
|
+
currencyExchangeRate?: number | null;
|
|
489
|
+
};
|
|
490
|
+
|
|
491
|
+
type InsisWorkDataApp = {
|
|
492
|
+
id?: string;
|
|
493
|
+
processInstanceId?: string;
|
|
494
|
+
agentId?: number;
|
|
495
|
+
agentName?: string;
|
|
496
|
+
salesChannel?: string;
|
|
497
|
+
salesChannelName?: string;
|
|
498
|
+
insrType?: number;
|
|
499
|
+
saleChanellPolicy?: string;
|
|
500
|
+
saleChanellPolicyName?: string;
|
|
501
|
+
regionPolicy?: string;
|
|
502
|
+
regionPolicyName?: string;
|
|
503
|
+
managerPolicy?: string;
|
|
504
|
+
managerPolicyName?: string;
|
|
505
|
+
insuranceProgramType?: string;
|
|
506
|
+
};
|
|
317
507
|
}
|
package/locales/en.json
DELETED
|
@@ -1,399 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"title": "Title",
|
|
3
|
-
"confirm": {
|
|
4
|
-
"yes": "Yes",
|
|
5
|
-
"no": "No"
|
|
6
|
-
},
|
|
7
|
-
"settings": {
|
|
8
|
-
"statement": "Statement actions",
|
|
9
|
-
"member": "Member actions",
|
|
10
|
-
"rejectCause": "Reject cause",
|
|
11
|
-
"returnCause": "Return cause"
|
|
12
|
-
},
|
|
13
|
-
"error": {
|
|
14
|
-
"title": "Error 404",
|
|
15
|
-
"description": "The page you requested does not exist or has expired.",
|
|
16
|
-
"connectionLost": "No connection",
|
|
17
|
-
"checkConnection": "Check your connection",
|
|
18
|
-
"noOtpResponse": "No response when sending OTP code",
|
|
19
|
-
"noOtpCode": "Fill in the fields: IIN, Phone Number, Confirmation Code",
|
|
20
|
-
"memberCopy": "Error while transfering data of members",
|
|
21
|
-
"memberSave": "Error while saving members"
|
|
22
|
-
},
|
|
23
|
-
"toaster": {
|
|
24
|
-
"noIinOrPhone": "Missing data to send SMS",
|
|
25
|
-
"ESBDErrorMessage": "Incorrect data entered for this IIN",
|
|
26
|
-
"phoneNotFoundInBMG": "Enter a number registered in BMG or register the client in BMG",
|
|
27
|
-
"errorSumOrPercentage": "The percentage of payout amount cannot be less than or greater than 100",
|
|
28
|
-
"fileWasDeleted": "File successfully deleted",
|
|
29
|
-
"attachManagerError": "Attach the request to the manager",
|
|
30
|
-
"viewErrorText": "You are currently in view mode or do not have access",
|
|
31
|
-
"editModeText": "You have switched to edit mode",
|
|
32
|
-
"viewModeText": "You have switched to view mode",
|
|
33
|
-
"noEditText": "You do not have access to edit",
|
|
34
|
-
"noDeleteText": "You do not have access to delete",
|
|
35
|
-
"notFound": "No matches found",
|
|
36
|
-
"notFoundUser": "No matches found",
|
|
37
|
-
"successSaved": "Data successfully saved",
|
|
38
|
-
"hasAlreadyStatement": "There is already a pending application for this IIN",
|
|
39
|
-
"successStatementCreation": "Application successfully created",
|
|
40
|
-
"deletedMember": "Member deleted successfully",
|
|
41
|
-
"undefinedError": "Something went wrong",
|
|
42
|
-
"noProductPermission": "You do not have access to this product",
|
|
43
|
-
"noStatementPermission": "You do not have access to this application",
|
|
44
|
-
"formFieldEmptyWarning": "You need to fill in some fields and save the member",
|
|
45
|
-
"needToRunStatement": "You need to create an application",
|
|
46
|
-
"shouldBeOneInsured": "You cannot delete the only insured person",
|
|
47
|
-
"readyStatementMembers": "Data of all members saved successfully",
|
|
48
|
-
"successRecalculation": "Recalculation done successfully",
|
|
49
|
-
"dataHasNotChanged": "Data has not been changed",
|
|
50
|
-
"calculated": "Calculation completed",
|
|
51
|
-
"copiedSuccessfully": "Link successfully copied",
|
|
52
|
-
"smsSendSuccessfully": "SMS successfully sent",
|
|
53
|
-
"errorFormField": "Fill in the field: {text}",
|
|
54
|
-
"fillFormFieldError": "You need to fill in the {text} data",
|
|
55
|
-
"fillOneFieldError": "You need to fill in at least one of the {text} fields",
|
|
56
|
-
"notSavedMember": "You need to save the current {text} data",
|
|
57
|
-
"copied": "Copied",
|
|
58
|
-
"clientNotFound": "Client with this IIN not found",
|
|
59
|
-
"needCalculate": "You need to calculate the insurance premium",
|
|
60
|
-
"incorrectInput": "The value entered is incorrect",
|
|
61
|
-
"error": "An error occurred",
|
|
62
|
-
"applicationDeleted": "Application deleted",
|
|
63
|
-
"emptyProductConditions": "Product and calculation conditions data are not filled in",
|
|
64
|
-
"emptyHealthAnketa": "Health questionnaire data for the Insured is not filled in",
|
|
65
|
-
"emptyHealthAnketaPolicyholder": "Health questionnaire data for the Policyholder is not filled in",
|
|
66
|
-
"emptyCriticalAnketa": "Critical illness questionnaire data is not filled in",
|
|
67
|
-
"successOperation": "Operation completed successfully",
|
|
68
|
-
"noAssignee": "You need to take the task in progress",
|
|
69
|
-
"canDoOnlyAssignee": "Task is in progress and you do not have access",
|
|
70
|
-
"successDataClear": "Data successfully cleared",
|
|
71
|
-
"noTasksForYou": "The list of tasks assigned to your role is empty",
|
|
72
|
-
"youCanNotStartApplication": "You do not have access to start the application",
|
|
73
|
-
"hasNewApplicationState": "Outdated application",
|
|
74
|
-
"reloadEverySeconds": "Refresh can be done every {text} seconds",
|
|
75
|
-
"successReload": "Refreshed",
|
|
76
|
-
"sendEverySeconds": "SMS can be sent every {text} seconds",
|
|
77
|
-
"waitForClient": "Awaiting client confirmation",
|
|
78
|
-
"noSuchProduct": "Error when navigating: incorrect link",
|
|
79
|
-
"affiliationDocumentNotUploaded": "File not attached in the underwriting board decision",
|
|
80
|
-
"documentNumberWasNotFilled": "Document number and date were not filled",
|
|
81
|
-
"valueShouldBeHigher": "The value should be higher than {text} percent",
|
|
82
|
-
"valueShouldBeBetween": "The value should be between {floor} and {ceil} percent",
|
|
83
|
-
"needAgreement": "You need to obtain client's consent",
|
|
84
|
-
"successOtp": "Confirmation code sent successfully",
|
|
85
|
-
"hasSuccessOtp": "Client has already provided consent",
|
|
86
|
-
"tokenExpire": "Waiting time has expired",
|
|
87
|
-
"requiredBeneficiary": "You need to specify beneficiary's data",
|
|
88
|
-
"requiredInsured": "You need to specify insured person's data",
|
|
89
|
-
"needToRecalculate": "You need to recalculate the product conditions",
|
|
90
|
-
"noUrl": "No link available",
|
|
91
|
-
"pickFamilyMember": "Pick a family member"
|
|
92
|
-
},
|
|
93
|
-
"buttons": {
|
|
94
|
-
"createStatement": "Create Statement",
|
|
95
|
-
"add": "Add",
|
|
96
|
-
"userLogin": "Login",
|
|
97
|
-
"password": "Password",
|
|
98
|
-
"login": "Log in",
|
|
99
|
-
"save": "Save",
|
|
100
|
-
"back": "Back",
|
|
101
|
-
"sign": "Sign",
|
|
102
|
-
"toApprove": "Send for Approval",
|
|
103
|
-
"calculate": "Calculate",
|
|
104
|
-
"return": "Return",
|
|
105
|
-
"create": "Create",
|
|
106
|
-
"becomeAgent": "Become an Agent",
|
|
107
|
-
"close": "Close",
|
|
108
|
-
"reload": "Refresh",
|
|
109
|
-
"makeIssueInvoice": "Create Invoice",
|
|
110
|
-
"open": "Open",
|
|
111
|
-
"edit": "Edit",
|
|
112
|
-
"editApplication": "Edit Application",
|
|
113
|
-
"cancel": "Cancel",
|
|
114
|
-
"cancelApplication": "Cancel Application",
|
|
115
|
-
"viewApplication": "View Application",
|
|
116
|
-
"approve": "Approve",
|
|
117
|
-
"rejectStatement": "Reject",
|
|
118
|
-
"returnStatement": "Return for Revision",
|
|
119
|
-
"claimTask": "Claim Task",
|
|
120
|
-
"InsuranceContract": "Insurance Contract",
|
|
121
|
-
"PaymentSchedule": "Payment Schedule",
|
|
122
|
-
"clear": "Clear Data",
|
|
123
|
-
"delete": "Delete",
|
|
124
|
-
"deleteMember": "Delete Member",
|
|
125
|
-
"enterData": "Enter Data",
|
|
126
|
-
"viewMode": "Switch to View Mode",
|
|
127
|
-
"view": "View",
|
|
128
|
-
"recalculate": "Recalculate",
|
|
129
|
-
"createInvoice": "Create Invoice",
|
|
130
|
-
"fromInsis": "From INSIS Information System",
|
|
131
|
-
"fromGBDFL": "From State Database of Individuals",
|
|
132
|
-
"fromGKB": "From State Credit Bureau",
|
|
133
|
-
"sendSMS": "Send SMS",
|
|
134
|
-
"toPayment": "Go to Payment",
|
|
135
|
-
"calcSum": "Calculate Sum",
|
|
136
|
-
"calcPremium": "Calculate Premium",
|
|
137
|
-
"accept": "Approve",
|
|
138
|
-
"reject": "Reject",
|
|
139
|
-
"pay": "Pay"
|
|
140
|
-
},
|
|
141
|
-
"dialog": {
|
|
142
|
-
"title": "Confirmation",
|
|
143
|
-
"exit": "Are you sure you want to exit?",
|
|
144
|
-
"exitApp": "Are you sure you want to exit? Data will be cleared.",
|
|
145
|
-
"dataWillClear": "Data will be cleared",
|
|
146
|
-
"cancel": "Are you sure you want to cancel the application?",
|
|
147
|
-
"clear": "Are you sure you want to clear the participant's data?",
|
|
148
|
-
"delete": "Are you sure you want to delete the participant?",
|
|
149
|
-
"sent": "Link has been sent",
|
|
150
|
-
"sentText": "Link has been sent to number {phoneNumber}. Can be resent in {minutes}:{seconds} seconds",
|
|
151
|
-
"sentSMS": "SMS has been sent",
|
|
152
|
-
"sentTextSMS": "SMS has been sent to number {phoneNumber}. Can be resent in {minutes}:{seconds} seconds",
|
|
153
|
-
"deleteFile": "Are you sure you want to delete the file?",
|
|
154
|
-
"continue": "Continue",
|
|
155
|
-
"correctSum": "Is the insurance premium amount correct?",
|
|
156
|
-
"sign": "Confirmation of signature",
|
|
157
|
-
"pay": "Payment confirmation",
|
|
158
|
-
"familyMember": "Choose a family member"
|
|
159
|
-
},
|
|
160
|
-
"sign": {
|
|
161
|
-
"chooseDoc": "Choose documents to sign",
|
|
162
|
-
"signed": "Signed with digital signature",
|
|
163
|
-
"chooseMethod": "Choose signing method",
|
|
164
|
-
"downloadDoc": "Download document for signing",
|
|
165
|
-
"downloadSignedDoc": "Download Signed Document",
|
|
166
|
-
"signPaper": "Sign on paper",
|
|
167
|
-
"recipientNumber": "Recipient's phone number",
|
|
168
|
-
"signCloud": "Sign via cloud digital signature",
|
|
169
|
-
"copyCloud": "Copy link for cloud digital signature",
|
|
170
|
-
"codeSendNumber": "Code sent to number:",
|
|
171
|
-
"codeFromSMS": "Code from SMS",
|
|
172
|
-
"signEgov": "Sign with eGov mobile",
|
|
173
|
-
"showQR": "Show QR code",
|
|
174
|
-
"timer": "You have created an invoice, it will become inactive in 00:59 seconds"
|
|
175
|
-
},
|
|
176
|
-
"questionnaireType": {
|
|
177
|
-
"byHealth": "Health questionnaire for the Insured",
|
|
178
|
-
"byCritical": "Critical illness questionnaire for the Insured",
|
|
179
|
-
"answerAllNo": "Answer No to all",
|
|
180
|
-
"pleaseAnswer": "Please answer {text} questions"
|
|
181
|
-
},
|
|
182
|
-
"questionnaireHealth": "Health questionnaire for the Insured",
|
|
183
|
-
"chooseAll": "Select all",
|
|
184
|
-
"statement": "Statement",
|
|
185
|
-
"childInfo": "Child info",
|
|
186
|
-
"policyholderForm": "Policyholder",
|
|
187
|
-
"policyholderAndInsured": "Insured / Policyholder",
|
|
188
|
-
"policyholderAndInsuredSame": "Insured / Policyholder are the same person",
|
|
189
|
-
"insuredForm": "Insured",
|
|
190
|
-
"beneficiaryForm": "Beneficiary",
|
|
191
|
-
"beneficialOwnerForm": "Beneficial Owner",
|
|
192
|
-
"policyholdersRepresentativeForm": "Policyholder's Representative",
|
|
193
|
-
"productConditions": "Product Conditions and Calculations",
|
|
194
|
-
"underwriterDecision": "Underwriter's Decision",
|
|
195
|
-
"recalculationInfo": "Data for recalculation",
|
|
196
|
-
"generalConditions": "General Insurance Conditions",
|
|
197
|
-
"isPolicyholderInsured": "Is the policyholder also insured?",
|
|
198
|
-
"isPolicyholderIPDL": "Does the Insured / Policyholder or their family members and close relatives belong to and/or have connections to a foreign public official?",
|
|
199
|
-
"isMemberIPDL": "Indication of belonging to and/or connections to a public official, their spouse, and close relatives?",
|
|
200
|
-
"isPolicyholderBeneficiary": "Is the policyholder also the beneficiary?",
|
|
201
|
-
"hasRepresentative": "Is the contract signed by a representative?",
|
|
202
|
-
"isActOwnBehalf": "Is the client acting on their own behalf and in their own interests?",
|
|
203
|
-
"coverPeriod": "Coverage Period",
|
|
204
|
-
"requestedSumInsured": "Requested Sum Insured",
|
|
205
|
-
"insurancePremiumPerMonth": "Insurance Premium per Month",
|
|
206
|
-
"noStatementCalculator": "Cost calculator without entering data",
|
|
207
|
-
"agreement": "Agreement",
|
|
208
|
-
"clientsStatement": "Client's Statement",
|
|
209
|
-
"document": "Document",
|
|
210
|
-
"documents": "Documents",
|
|
211
|
-
"statementAndSurvey": "Statement and Questionnaire",
|
|
212
|
-
"underwriterDecisionDocument": "",
|
|
213
|
-
"clientsCard": "Client Card",
|
|
214
|
-
"insuranceProduct": "Insurance Product",
|
|
215
|
-
"historyStatementsAndStatuses": "Application History and Statuses",
|
|
216
|
-
"applicationNumber": "Application Number: ",
|
|
217
|
-
"operationList": "Operation List",
|
|
218
|
-
"payCalendar": "Payment Calendar",
|
|
219
|
-
"signedDoc": "Signed Document (Bayterek project)",
|
|
220
|
-
"percent": "Percent ",
|
|
221
|
-
"chooseSource": "Choose data source",
|
|
222
|
-
"sumAndPremium": "Insurance Premium {paymentPeriod}: {insurancePremiumPerMonth}₸\nRequested Sum Insured: {requestedSumInsured}₸",
|
|
223
|
-
"recalculation": "Recalculation",
|
|
224
|
-
"survey": "Questionnaire",
|
|
225
|
-
"productConditionsForm": {
|
|
226
|
-
"coverPeriod": "Insurance Period",
|
|
227
|
-
"payPeriod": "Insurance Premium Payment Period",
|
|
228
|
-
"processIndexRate": "Requested indexation rate (from 3% to 7%)",
|
|
229
|
-
"processPaymentPeriod": "Frequency of insurance premium payment:",
|
|
230
|
-
"requestedSumInsured": "Insurance Amount",
|
|
231
|
-
"sumInsured": "Insurance Amount",
|
|
232
|
-
"insurancePremiumPerMonth": "Insurance Premium",
|
|
233
|
-
"hint": "The amount is calculated automatically",
|
|
234
|
-
"additional": "Additional Insurance Conditions",
|
|
235
|
-
"possibilityToChange": "Possibility to change the insurance amount and premiums (indexation)",
|
|
236
|
-
"conditions": "Insurance Premium Payment Conditions",
|
|
237
|
-
"processTariff": "Tariff",
|
|
238
|
-
"riskGroup": "Risk Group",
|
|
239
|
-
"requestedProductConditions": "Requested Insurance Conditions",
|
|
240
|
-
"coverPeriodFrom3to20": "Insurance Period (from 3 to 20 years)",
|
|
241
|
-
"insurancePremiumAmount": "Insurance Premium Amount"
|
|
242
|
-
},
|
|
243
|
-
"history": {
|
|
244
|
-
"addRegNumber": "Number",
|
|
245
|
-
"number": "Application Number",
|
|
246
|
-
"iin": "IIN",
|
|
247
|
-
"client": "Client",
|
|
248
|
-
"product": "Product",
|
|
249
|
-
"status": "Application Status",
|
|
250
|
-
"assignee": "Assignee",
|
|
251
|
-
"initiator": "Initiator",
|
|
252
|
-
"reason": "Reason",
|
|
253
|
-
"dateCreated": "Start Date",
|
|
254
|
-
"factEndDate": "Completion Date",
|
|
255
|
-
"decision": "Status",
|
|
256
|
-
"userFullName": "Assignee"
|
|
257
|
-
},
|
|
258
|
-
"labels": {
|
|
259
|
-
"search": "Search",
|
|
260
|
-
"searchByIIN": "Search by IIN",
|
|
261
|
-
"chooseScannedDoc": "Choose scanned document",
|
|
262
|
-
"inputText": "Enter text",
|
|
263
|
-
"waitingStatus": "Waiting",
|
|
264
|
-
"finished": "Finished",
|
|
265
|
-
"chooseDoc": "Choose document",
|
|
266
|
-
"filter": "Filter",
|
|
267
|
-
"iinFioNumber": "IIN / Full Name / Application Number",
|
|
268
|
-
"userInfo": "User Data",
|
|
269
|
-
"userFullName": "Full Name",
|
|
270
|
-
"userRoles": "Roles",
|
|
271
|
-
"noUserRoles": "No roles",
|
|
272
|
-
"welcome": "Welcome",
|
|
273
|
-
"information": "Additional Data",
|
|
274
|
-
"policyNumber": "Policy Number",
|
|
275
|
-
"statusCode": "Application Status",
|
|
276
|
-
"initiator": "Initiator"
|
|
277
|
-
},
|
|
278
|
-
"placeholders": {
|
|
279
|
-
"login": "Login",
|
|
280
|
-
"password": "Password"
|
|
281
|
-
},
|
|
282
|
-
"rules": {
|
|
283
|
-
"required": "Field is required",
|
|
284
|
-
"cyrillic": "Field should contain only Cyrillic characters",
|
|
285
|
-
"email": "Invalid email address",
|
|
286
|
-
"numbers": "Field should contain only numbers",
|
|
287
|
-
"numbersSymbols": "Field should contain numbers",
|
|
288
|
-
"ageExceeds": "Year cannot exceed 50 years",
|
|
289
|
-
"sums": "Field should contain only numbers",
|
|
290
|
-
"iinRight": "IIN must consist of 12 digits",
|
|
291
|
-
"onlySymbols": "Field should not contain numbers",
|
|
292
|
-
"phoneFormat": "Phone number should contain 11 digits",
|
|
293
|
-
"date": "Invalid date format",
|
|
294
|
-
"age": "Field should be a number",
|
|
295
|
-
"exceedDate": "Date should not exceed the current date",
|
|
296
|
-
"coverPeriod": "Minimum insurance period is 5 years",
|
|
297
|
-
"fillData": "Fill in the data",
|
|
298
|
-
"requestedSumInsuredMycar": "Maximum sum should not exceed 60 million",
|
|
299
|
-
"ageMycar": "Age threshold from 21 to 65",
|
|
300
|
-
"noResident": "Denied for non-residents",
|
|
301
|
-
"policyholderAgeLimit": "Policyholder's age must be at least 18 years",
|
|
302
|
-
"beneficiaryAgeLimit": "On the date of signing the policy, beneficiary's age must not exceed 15 years"
|
|
303
|
-
},
|
|
304
|
-
"code": "CES",
|
|
305
|
-
"fontSize": "Font Size",
|
|
306
|
-
"policyholdersRepresentative": {
|
|
307
|
-
"name": "Full Name",
|
|
308
|
-
"PowerOfAttorney": "Power of Attorney",
|
|
309
|
-
"NameParentCase": "Representative's Full Name in the Genitive Case",
|
|
310
|
-
"basisDocKz": "Acting on the basis of a document (KZ)",
|
|
311
|
-
"basisDocRu": "Acting on the basis of a document (RU)",
|
|
312
|
-
"basisDocRuParentCase": "Acting on the basis of a document in the Genitive Case (RU)",
|
|
313
|
-
"numberDoc": "Number of document confirming authority",
|
|
314
|
-
"numberVisa": "Number of migration card",
|
|
315
|
-
"numberLicense": "License number",
|
|
316
|
-
"confirmAuthority": "Is the person who signed the document confirming authority a Notary?",
|
|
317
|
-
"documentIssuers": "Issuing authority's name"
|
|
318
|
-
},
|
|
319
|
-
"payment": {
|
|
320
|
-
"method": "Payment Method",
|
|
321
|
-
"chooseMethod": "Choose payment method",
|
|
322
|
-
"payConditions": "Payment conditions",
|
|
323
|
-
"issueInvoice": "Issue invoice for payment",
|
|
324
|
-
"copyUrl": "Copy payment link",
|
|
325
|
-
"copyBill": "Copy payment invoice",
|
|
326
|
-
"sendBill": "Send payment invoice via SMS",
|
|
327
|
-
"anyCard": "Online payment with any bank card",
|
|
328
|
-
"terminalHalyk": "Through Halyk Bank terminal",
|
|
329
|
-
"homebankContractNumber": "By contract number in Homebank",
|
|
330
|
-
"homebankIIN": "By IIN in Homebank",
|
|
331
|
-
"accountingDepartment": "Through organization's accounting department",
|
|
332
|
-
"kaspi": "Through Kaspi.kz",
|
|
333
|
-
"recipientNumber": "SMS recipient number"
|
|
334
|
-
},
|
|
335
|
-
"form": {
|
|
336
|
-
"migrationCard": "",
|
|
337
|
-
"postIndex": "Postal Code",
|
|
338
|
-
"name": "Name",
|
|
339
|
-
"bin": "BIN",
|
|
340
|
-
"fullName": "Full Name",
|
|
341
|
-
"notChosen": "Not chosen",
|
|
342
|
-
"personalData": "Personal Data",
|
|
343
|
-
"iin": "IIN",
|
|
344
|
-
"lastName": "Last Name",
|
|
345
|
-
"firstName": "First Name",
|
|
346
|
-
"middleName": "Middle Name",
|
|
347
|
-
"birthDate": "Date of Birth",
|
|
348
|
-
"signDate": "Calculation Date",
|
|
349
|
-
"age": "Age",
|
|
350
|
-
"gender": "Gender",
|
|
351
|
-
"familyStatus": "Marital Status",
|
|
352
|
-
"relations": "Degree of Relationship",
|
|
353
|
-
"percentageOfPayoutAmount": "Percentage of Payout Amount",
|
|
354
|
-
"jobData": "Employment Data",
|
|
355
|
-
"job": "Profession",
|
|
356
|
-
"jobPosition": "Job Position",
|
|
357
|
-
"jobPlace": "Place of Work",
|
|
358
|
-
"placeRegistration": "Place of Residence or Registration",
|
|
359
|
-
"placePermanent": "Permanent Address",
|
|
360
|
-
"sameAddress": "Is the address the same as the Insured's address?",
|
|
361
|
-
"Country": "Country",
|
|
362
|
-
"Province": "Region",
|
|
363
|
-
"RegionType": "Locality Type",
|
|
364
|
-
"Region": "Region",
|
|
365
|
-
"City": "City",
|
|
366
|
-
"Quarter": "Quarter",
|
|
367
|
-
"MicroDistrict": "Microdistrict",
|
|
368
|
-
"Street": "Street",
|
|
369
|
-
"NumberHouse": "House No.",
|
|
370
|
-
"NumberApartment": "Apt. No.",
|
|
371
|
-
"birthData": "Place of Birth",
|
|
372
|
-
"documentData": "Documents",
|
|
373
|
-
"documentType": "Document Type",
|
|
374
|
-
"documentNumber": "Document Number",
|
|
375
|
-
"date": "Date",
|
|
376
|
-
"documentIssuers": "Issued by",
|
|
377
|
-
"documentDate": "Date of Issue",
|
|
378
|
-
"documentExpire": "Expiration Date",
|
|
379
|
-
"signOfResidency": "Residency Indicator",
|
|
380
|
-
"signOfIPDL": "IPDL Indicator",
|
|
381
|
-
"countryOfCitizenship": "Country of Citizenship",
|
|
382
|
-
"countryOfTaxResidency": "Country of Tax Residency",
|
|
383
|
-
"addTaxResidency": "Specify if different country of tax residency is selected",
|
|
384
|
-
"economySectorCode": "Economy Sector Code",
|
|
385
|
-
"contactsData": "Contacts",
|
|
386
|
-
"phoneNumber": "Phone Number",
|
|
387
|
-
"homePhone": "Home Phone Number",
|
|
388
|
-
"email": "Email Address",
|
|
389
|
-
"otpCode": "Confirmation Code",
|
|
390
|
-
"salesChanell": "Sales Channel",
|
|
391
|
-
"manager": "Manager",
|
|
392
|
-
"attachManager": "Attach to Manager",
|
|
393
|
-
"agent": "Agent"
|
|
394
|
-
},
|
|
395
|
-
"agreementBlock": {
|
|
396
|
-
"title": "Consent to the collection and processing of personal data",
|
|
397
|
-
"text": "I hereby provide JSC Halyk-Life (BIN 051140004354) and/or organizations belonging to the Halyk Financial Group (Shareholder of JSC Halyk-Life (BIN 940140000385) and its subsidiaries), reinsurance organizations, organizations for the formation and maintenance of insurance databases (BIN 120940011577), a legal entity engaged in the attraction of pension contributions and pension payments (BIN 971240002115), a legal entity engaged in the provision of government services by the decision of the Government of the Republic of Kazakhstan (BIN 160440007161), operators/owners of government databases with my personal data and information related to me and my close relatives, from all sources and databases, including those containing medical, tax, banking secrecy, pension savings secrecy, and other legally protected secrets, recorded on electronic, paper, and/or other material media, for the purpose of JSC Halyk-Life performing its functions as an insurance organization and the above-mentioned organizations providing financial and other services, including those necessary for filling/forming applications and contracts, as well as for my proper identification, including, but not limited to: surname, first name, patronymic, citizenship, data of the identity document, individual identification number, date and data of birth, gender, nationality, photo, biometric data, health status, banking details, information on legal capacity, information necessary for maintaining communication, information on the amount of pension savings and redemption amount, other data/information received and transferred at the current moment and that may be received and transferred in the future, from all/any possible sources, including any databases, including databases of owners of government databases, organizations for the formation and maintenance of insurance databases, a legal entity engaged in the attraction of pension contributions and pension payments, a legal entity engaged in the provision of government services by the decision of the Government of the Republic of Kazakhstan, which will be or have become known to JSC Halyk-Life in the course of its activities and/or within the framework of civil-legal and other relations with counterparties under the respective contract, I provide JSC Halyk-Life with the opportunity to transfer my personal data to authorized bodies, the Shareholder of JSC Halyk-Life and its subsidiaries, affiliated persons of JSC Halyk-Life, organizations for the formation and maintenance of insurance databases, operators of government databases, and other third parties associated, both currently and in the future, with the circumstances or legal relations of JSC Halyk-Life, and any third parties when JSC Halyk-Life is obligated or entitled to take such actions in accordance with the requirements of legislation and/or internal documents. This consent is valid during the legal capacity of JSC Halyk-Life (its legal successor)."
|
|
398
|
-
}
|
|
399
|
-
}
|