hl-core 0.0.9-beta.25 → 0.0.9-beta.27

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.
@@ -717,6 +717,7 @@ export class ProductConditions {
717
717
  termsOfInsurance: string | null;
718
718
  annualIncome: string | null;
719
719
  processIndexRate: Value;
720
+ processGfot: Value;
720
721
  requestedSumInsured: number | string | null;
721
722
  requestedSumInsuredInDollar: number | string | null;
722
723
  insurancePremiumPerMonth: number | string | null;
@@ -760,6 +761,7 @@ export class ProductConditions {
760
761
  termsOfInsurance = null,
761
762
  annualIncome = null,
762
763
  processIndexRate = new Value(),
764
+ processGfot = new Value(),
763
765
  requestedSumInsured = null,
764
766
  insurancePremiumPerMonth = null,
765
767
  establishingGroupDisabilityFromThirdYear = null,
@@ -806,6 +808,7 @@ export class ProductConditions {
806
808
  this.termsOfInsurance = termsOfInsurance;
807
809
  this.annualIncome = annualIncome;
808
810
  this.processIndexRate = processIndexRate;
811
+ this.processGfot = processGfot;
809
812
  this.requestedSumInsured = requestedSumInsured;
810
813
  this.insurancePremiumPerMonth = insurancePremiumPerMonth;
811
814
  this.establishingGroupDisabilityFromThirdYear = establishingGroupDisabilityFromThirdYear;
@@ -979,6 +982,7 @@ export class DataStoreClass {
979
982
  accessToken: string | null = null;
980
983
  refreshToken: string | null = null;
981
984
  processIndexRate: Value[];
985
+ processGfot: Value[];
982
986
  processPaymentPeriod: Value[];
983
987
  dicAnnuityTypeList: Value[];
984
988
  processAnnuityPaymentPeriod: Value[];
@@ -995,6 +999,7 @@ export class DataStoreClass {
995
999
  ManagerPolicy: Value[];
996
1000
  AgentData: AgentData[];
997
1001
  riskGroup: Value[];
1002
+ DicCoverTypePeriod: Value[];
998
1003
  currencies: {
999
1004
  eur: number | null;
1000
1005
  usd: number | null;
@@ -1063,6 +1068,7 @@ export class DataStoreClass {
1063
1068
  this.iframeLoading = false;
1064
1069
  this.hasLayoutMargins = true;
1065
1070
  this.processIndexRate = [];
1071
+ this.processGfot = [];
1066
1072
  this.processPaymentPeriod = [];
1067
1073
  this.dicAnnuityTypeList = [];
1068
1074
  this.processAnnuityPaymentPeriod = [];
@@ -1071,6 +1077,7 @@ export class DataStoreClass {
1071
1077
  this.RegionPolicy = [];
1072
1078
  this.ManagerPolicy = [];
1073
1079
  this.AgentData = [];
1080
+ this.DicCoverTypePeriod = [];
1074
1081
  this.product = import.meta.env.VITE_PRODUCT ? (import.meta.env.VITE_PRODUCT as Projects) : null;
1075
1082
  this.showNav = true;
1076
1083
  this.menuItems = [];
@@ -1203,14 +1210,17 @@ export class FormStoreClass {
1203
1210
  isUploadedSignedContract: boolean;
1204
1211
  signedContractFormData: any;
1205
1212
  lfb: {
1206
- insurers: ClientV2[];
1213
+ clients: ClientV2[];
1207
1214
  fixInsAmount: Value[];
1208
- policyholder: PolicyholderV2;
1209
- toggleAccidents: boolean;
1215
+ policyholder: MemberV2;
1216
+ hasAccidentIncidents: boolean;
1217
+ accidentIncidents: AccidentIncidents[];
1210
1218
  policyholderActivities: PolicyholderActivity[];
1211
1219
  beneficialOwners: BeneficialOwner[];
1212
1220
  beneficialOwnersIndex: number;
1213
1221
  isPolicyholderBeneficialOwner: boolean;
1222
+ clientId: string | null;
1223
+ policyholderFile: any;
1214
1224
  };
1215
1225
  additionalInsuranceTerms: AddCover[];
1216
1226
  additionalInsuranceTermsWithout: AddCover[];
@@ -1258,6 +1268,8 @@ export class FormStoreClass {
1258
1268
  surveyByHealthBasePolicyholder: boolean;
1259
1269
  surveyByCriticalBasePolicyholder: boolean;
1260
1270
  insuranceDocument: boolean;
1271
+ policyholderActivitiesForm: boolean;
1272
+ accidentStatisticsForm: boolean;
1261
1273
  };
1262
1274
  isPolicyholderInsured: boolean = false;
1263
1275
  isPolicyholderBeneficiary: boolean = false;
@@ -1305,14 +1317,17 @@ export class FormStoreClass {
1305
1317
  this.needToScanSignedContract = false;
1306
1318
  this.signedContractFormData = null;
1307
1319
  this.lfb = {
1308
- insurers: [],
1320
+ clients: [],
1309
1321
  fixInsAmount: [],
1310
- policyholder: new PolicyholderV2(),
1311
- toggleAccidents: false,
1322
+ policyholder: new MemberV2(),
1323
+ hasAccidentIncidents: true,
1312
1324
  policyholderActivities: [new PolicyholderActivity()],
1313
1325
  beneficialOwners: [new BeneficialOwner()],
1314
1326
  beneficialOwnersIndex: 0,
1315
1327
  isPolicyholderBeneficialOwner: false,
1328
+ accidentIncidents: [],
1329
+ clientId: null,
1330
+ policyholderFile: null,
1316
1331
  };
1317
1332
  this.additionalInsuranceTerms = [];
1318
1333
  this.additionalInsuranceTermsWithout = [];
@@ -1368,6 +1383,8 @@ export class FormStoreClass {
1368
1383
  surveyByHealthBasePolicyholder: true,
1369
1384
  surveyByCriticalBasePolicyholder: true,
1370
1385
  insuranceDocument: true,
1386
+ policyholderActivitiesForm: true,
1387
+ accidentStatisticsForm: true,
1371
1388
  };
1372
1389
  this.isPolicyholderInsured = false;
1373
1390
  this.isPolicyholderBeneficiary = false;
@@ -1396,138 +1413,238 @@ export class FormStoreClass {
1396
1413
  }
1397
1414
  }
1398
1415
 
1399
- export class PolicyholderV2 {
1400
- placeholderGrounds: string | null;
1401
- documentNumber: string | null;
1402
- date: string | null;
1403
- document: any;
1404
- phoneNumber: string | null;
1405
- iin: string | null;
1406
- lastName: string | null;
1407
- firstName: string | null;
1408
- middleName: string | null;
1409
- countryOfCitizenship: Value;
1410
- namePosition: string | null;
1411
- email: string | null;
1412
- involvementForeignOfficial: boolean;
1413
- bin: string | null;
1414
- fullOrganizationName: string | null;
1415
- iik: string | null;
1416
- nameBank: Value;
1417
- bik: string | null;
1418
- kbe: string | null;
1419
- signOfResidency: Value;
1420
- countryOfTaxResidency: Value;
1421
- economySectorCode: Value;
1422
- typeEconomicActivity: string | null;
1423
- legalAddress: Address;
1416
+ export class MemberV2 {
1417
+ personalData: {
1418
+ iin: string | null;
1419
+ phone: string | null;
1420
+ email: string | null;
1421
+ firstName: string | null;
1422
+ middleName: string | null;
1423
+ lastName: string | null;
1424
+ birthDate: string | null;
1425
+ citizenship: Value;
1426
+ birthPlace: string | null;
1427
+ resident: Value;
1428
+ taxResidentCountry: Value;
1429
+ showTaxResidentCountry: string | null;
1430
+ };
1431
+ identityCard?: {
1432
+ documentType: Value;
1433
+ documentNumber: string | null;
1434
+ series: string | null;
1435
+ documentIssuer: Value;
1436
+ validity: string | null;
1437
+ };
1438
+ bankDetails: {
1439
+ bin: string | null;
1440
+ bankName: Value;
1441
+ iik: string | null;
1442
+ bik: string | null;
1443
+ kbe: string | null;
1444
+ };
1424
1445
  actualAddress: Address;
1425
- sameAddress: boolean;
1426
-
1446
+ juridicalAddressCompany: Address;
1447
+ clientPower: {
1448
+ documentBasisOn: string | null;
1449
+ documentBasisOnKz: string | null;
1450
+ docNumber: string | null;
1451
+ date: string | null;
1452
+ };
1453
+ position: string | null;
1454
+ organizationData: {
1455
+ organizationName: string | null;
1456
+ economySectorCode: Value;
1457
+ typeOfEconomicActivity: string | null;
1458
+ };
1459
+ jurAddressIsActualAddress: boolean;
1460
+ quests?: {
1461
+ order: number;
1462
+ text: string | null;
1463
+ answer: boolean | null;
1464
+ }[];
1465
+ isLeader?: boolean;
1466
+ // insuredPolicyData: {
1467
+ // insSum: 0;
1468
+ // insSumWithLoad: 0;
1469
+ // premium: 0;
1470
+ // premiumWithLoad: 0;
1471
+ // insuredRisk: {
1472
+ // lifeMultiply: 0;
1473
+ // lifeAdditive: 0;
1474
+ // disabilityMultiply: 0;
1475
+ // disabilityAdditive: 0;
1476
+ // traumaTableMultiple: 0;
1477
+ // accidentalLifeMultiply: 0;
1478
+ // accidentalLifeAdditive: 0;
1479
+ // criticalMultiply: 0;
1480
+ // criticalAdditive: 0;
1481
+ // };
1482
+ // insuredCoverData: {
1483
+ // coverTypeEnum: 1;
1484
+ // premium: 0;
1485
+ // }[];
1486
+ // };
1427
1487
  constructor() {
1428
- this.placeholderGrounds = null;
1429
- this.documentNumber = null;
1430
- this.date = null;
1431
- this.document = null;
1432
- this.phoneNumber = null;
1433
- this.iin = null;
1434
- this.lastName = null;
1435
- this.firstName = null;
1436
- this.middleName = null;
1437
- this.countryOfCitizenship = new Value();
1438
- this.namePosition = null;
1439
- this.email = null;
1440
- this.involvementForeignOfficial = false;
1441
- this.bin = null;
1442
- this.fullOrganizationName = null;
1443
- this.iik = null;
1444
- this.nameBank = new Value();
1445
- this.bik = null;
1446
- this.kbe = null;
1447
- this.signOfResidency = new Value();
1448
- this.countryOfTaxResidency = new Value();
1449
- this.economySectorCode = new Value();
1450
- this.typeEconomicActivity = null;
1451
- this.legalAddress = new Address();
1488
+ this.personalData = {
1489
+ iin: null,
1490
+ phone: null,
1491
+ email: null,
1492
+ firstName: null,
1493
+ middleName: null,
1494
+ lastName: null,
1495
+ birthDate: null,
1496
+ citizenship: new Value(),
1497
+ birthPlace: null,
1498
+ resident: new Value(),
1499
+ taxResidentCountry: new Value(),
1500
+ showTaxResidentCountry: null,
1501
+ };
1502
+ this.identityCard = {
1503
+ documentType: new Value(),
1504
+ documentNumber: null,
1505
+ series: null,
1506
+ documentIssuer: new Value(),
1507
+ validity: null,
1508
+ };
1509
+ this.bankDetails = {
1510
+ bin: null,
1511
+ bankName: new Value(),
1512
+ iik: null,
1513
+ bik: null,
1514
+ kbe: null,
1515
+ };
1452
1516
  this.actualAddress = new Address();
1453
- this.sameAddress = true;
1517
+ this.juridicalAddressCompany = new Address();
1518
+ this.clientPower = {
1519
+ documentBasisOn: null,
1520
+ documentBasisOnKz: null,
1521
+ docNumber: null,
1522
+ date: null,
1523
+ };
1524
+ this.position = null;
1525
+ this.organizationData = {
1526
+ organizationName: null,
1527
+ economySectorCode: new Value(),
1528
+ typeOfEconomicActivity: null,
1529
+ };
1530
+ this.jurAddressIsActualAddress = true;
1531
+ this.quests = [
1532
+ {
1533
+ order: 0,
1534
+ text: 'Отметка о наличии/отсутствии физического лица (лиц), которому прямо или косвенно принадлежат более 25 % долей участия в уставном капитале либо размещенных (за вычетом привилегированных и выкупленных обществом) акций юридического лица',
1535
+ answer: null,
1536
+ },
1537
+ {
1538
+ order: 1,
1539
+ text: 'Отметка о наличии/отсутствии физического лица (лиц), осуществляющего контроль над юридическим лицом по иным основаниям',
1540
+ answer: null,
1541
+ },
1542
+ {
1543
+ order: 2,
1544
+ text: 'Отметка о наличии/отсутствии физического лица (лиц) в интересах которого юридическим лицом устанавливаются деловые отношения (совершаются операции)',
1545
+ answer: null,
1546
+ },
1547
+ ];
1548
+ this.isLeader = true;
1549
+ // this.insuredPolicyData = {
1550
+ // insSum: 0,
1551
+ // insSumWithLoad: 0,
1552
+ // premium: 0,
1553
+ // premiumWithLoad: 0,
1554
+ // insuredRisk: {
1555
+ // lifeMultiply: 0,
1556
+ // lifeAdditive: 0,
1557
+ // disabilityMultiply: 0,
1558
+ // disabilityAdditive: 0,
1559
+ // traumaTableMultiple: 0,
1560
+ // accidentalLifeMultiply: 0,
1561
+ // accidentalLifeAdditive: 0,
1562
+ // criticalMultiply: 0,
1563
+ // criticalAdditive: 0,
1564
+ // },
1565
+ // insuredCoverData: [
1566
+ // {
1567
+ // coverTypeEnum: 1,
1568
+ // premium: 0,
1569
+ // },
1570
+ // ],
1571
+ // };
1454
1572
  }
1455
1573
  }
1456
1574
 
1457
1575
  export class Address {
1458
- registrationCountry: Value;
1459
- registrationProvince: Value;
1460
- registrationRegionType: Value;
1461
- registrationCity: Value;
1462
- registrationQuarter: string | null;
1463
- registrationMicroDistrict: string | null;
1464
- registrationStreet: string | null;
1465
- registrationNumberHouse: string | null;
1576
+ country: Value;
1577
+ region: Value;
1578
+ regionType: Value;
1579
+ city: Value;
1580
+ square: string | null;
1581
+ microdistrict: string | null;
1582
+ street: string | null;
1583
+ houseNumber: string | null;
1584
+ kato: string | null;
1466
1585
  constructor() {
1467
- this.registrationCountry = new Value();
1468
- this.registrationProvince = new Value();
1469
- this.registrationRegionType = new Value();
1470
- this.registrationCity = new Value();
1471
- this.registrationQuarter = null;
1472
- this.registrationMicroDistrict = null;
1473
- this.registrationStreet = null;
1474
- this.registrationNumberHouse = null;
1586
+ this.country = new Value();
1587
+ this.region = new Value();
1588
+ this.regionType = new Value();
1589
+ this.city = new Value();
1590
+ this.square = null;
1591
+ this.microdistrict = null;
1592
+ this.street = null;
1593
+ this.houseNumber = null;
1594
+ this.kato = null;
1475
1595
  }
1476
1596
  }
1477
1597
 
1478
1598
  export class PolicyholderActivity {
1479
- typeActivity: string | null;
1480
- numberEmp: string | null;
1599
+ activityTypeName: string | null;
1600
+ empoloyeeCount: string | null;
1481
1601
  constructor() {
1482
- this.typeActivity = null;
1483
- this.numberEmp = null;
1602
+ this.activityTypeName = null;
1603
+ this.empoloyeeCount = null;
1484
1604
  }
1485
1605
  }
1486
1606
 
1487
1607
  export class BeneficialOwner {
1488
- informationBO: { id: number; name: string; value: string }[];
1489
- isFirstManager: boolean;
1608
+ id: string | null;
1609
+ processInstanceId: string | number;
1610
+ insisId: number;
1490
1611
  iin: string | null;
1612
+ longName: string | null;
1613
+ isIpdl: boolean;
1614
+ isTerror: boolean;
1615
+ isIpdlCompliance: boolean;
1616
+ isTerrorCompliance: boolean;
1617
+ personType: number;
1491
1618
  lastName: string | null;
1492
1619
  firstName: string | null;
1493
1620
  middleName: string | null;
1494
- citizenship: Value;
1495
- isPublicForeignOfficial: boolean;
1496
- documentType: Value;
1497
- documentNumber: string | null;
1498
- series: string | null;
1499
- documentIssuers: Value;
1500
- documentExpire: string | null;
1501
-
1621
+ countryId: string | null;
1622
+ countryName: string | null;
1623
+ residentId: string | null;
1624
+ residentName: string | null;
1625
+ taxResidentId: string | null;
1626
+ taxResidentName: string | null;
1627
+ beneficialOwnerData: MemberV2;
1502
1628
  constructor() {
1503
- this.informationBO = [
1504
- {
1505
- id: 1,
1506
- name: 'Отметка о наличии/отсутствии физического лица (лиц), которому прямо или косвенно принадлежат более 25 % долей участия в уставном капитале либо размещенных (за вычетом привилегированных и выкупленных обществом) акций юридического лица',
1507
- value: '',
1508
- },
1509
- {
1510
- id: 2,
1511
- name: 'Отметка о наличии/отсутствии физического лица (лиц), осуществляющего контроль над юридическим лицом по иным основаниям',
1512
- value: '',
1513
- },
1514
- {
1515
- id: 3,
1516
- name: 'Отметка о наличии/отсутствии физического лица (лиц) в интересах которого юридическим лицом устанавливаются деловые отношения (совершаются операции)',
1517
- value: '',
1518
- },
1519
- ];
1520
- this.isFirstManager = false;
1629
+ this.id = null;
1630
+ this.processInstanceId = 0;
1631
+ this.insisId = 0;
1521
1632
  this.iin = null;
1633
+ this.longName = null;
1634
+ this.isIpdl = true;
1635
+ this.isTerror = true;
1636
+ this.isIpdlCompliance = true;
1637
+ this.isTerrorCompliance = true;
1638
+ this.personType = 0;
1522
1639
  this.lastName = null;
1523
1640
  this.firstName = null;
1524
1641
  this.middleName = null;
1525
- this.citizenship = new Value();
1526
- this.isPublicForeignOfficial = false;
1527
- this.documentType = new Value();
1528
- this.documentNumber = null;
1529
- this.series = null;
1530
- this.documentIssuers = new Value();
1531
- this.documentExpire = null;
1642
+ this.countryId = null;
1643
+ this.countryName = null;
1644
+ this.residentId = null;
1645
+ this.residentName = null;
1646
+ this.taxResidentId = null;
1647
+ this.taxResidentName = null;
1648
+ this.beneficialOwnerData = new MemberV2();
1532
1649
  }
1533
1650
  }
package/locales/ru.json CHANGED
@@ -126,6 +126,9 @@
126
126
  "doesHaveActiveContract": "Заключение договора невозможно. У Выгодоприобретателя имеется действующий договор",
127
127
  "needToSignContract": "Документ скачан. После подписи, необходимо вложить договор в разделе “Документы”",
128
128
  "successfullyDocSent": "Отправка документа прошла успешно",
129
+ "templateDownloaded": "Шаблон скачан",
130
+ "templateSentToEmail": "Шаблона отправлен на почту",
131
+ "fileOnlyBelow5mb": "Максимальный размер документа для загрузки - 5 МБ.",
129
132
  "fileOnlyBelow20mb": "Максимальный размер документа для загрузки - 20 МБ.",
130
133
  "onlyPDF": "Загружать документы можно только в формате PDF"
131
134
  },
@@ -200,7 +203,9 @@
200
203
  "sendElectronically": "Отправить в электронном виде",
201
204
  "goTo": "Перейти",
202
205
  "sendOnPaper": "Отправить на бумажном носителе",
203
- "export": "Экспорт"
206
+ "export": "Экспорт",
207
+ "fromGBDUL": "ГБДЮЛ",
208
+ "fromKGD": "КГД"
204
209
  },
205
210
  "dialog": {
206
211
  "title": "Подтверждение",
@@ -266,7 +271,7 @@
266
271
  "childInfo": "Данные о ребенке",
267
272
  "policyholderForm": "Страхователь",
268
273
  "policyholderAndInsured": "Застрахованный / Страхователь",
269
- "insuranceConditions":"Условия страхования",
274
+ "insuranceConditions": "Условия страхования",
270
275
  "policyholderAndInsuredSame": "Застрахованный / Страхователь является одним лицом",
271
276
  "insuredForm": "Застрахованный",
272
277
  "confidant": "Доверенное лицо",
@@ -314,6 +319,7 @@
314
319
  "createNewApp": "Создать новую заявку",
315
320
  "template": "Шаблон",
316
321
  "downloadDocument": "Скачать документ",
322
+ "downloadTemplate": "Скачать шаблон",
317
323
  "countriesLength": "Число выбранных стран",
318
324
  "productConditionsForm": {
319
325
  "coverPeriod": "Срок страхования",
@@ -351,7 +357,8 @@
351
357
  "coverPeriodMonth": "Срок страхования (в месяцах)",
352
358
  "totalRequestedSumInsured": "Общая страховая сумма",
353
359
  "totalInsurancePremiumAmount": "Общая страховая премия",
354
- "agencyPart": "Агентская переменная часть, %"
360
+ "agencyPart": "Агентская переменная часть, %",
361
+ "processGfot": "Кратность страховой суммы к ГФОТ-у"
355
362
  },
356
363
  "calculatorForm": {
357
364
  "selectedCountries": "Выбранные страны",
@@ -402,8 +409,8 @@
402
409
  "productCode": "Код продукта",
403
410
  "contract": "Контракт",
404
411
  "checks": "Проверки",
405
- "threeLetterCode": "Трехбуквенный код",
406
- "twoLetterCode": "Двухбуквенный код",
412
+ "threeLetter": "Трехбуквенный код",
413
+ "twoLetter": "Двухбуквенный код",
407
414
  "risk": "Риск:",
408
415
  "note": "Примечание",
409
416
  "name": "Наименование",
@@ -414,9 +421,9 @@
414
421
  "to": "До",
415
422
  "reasonForAffiliation": "Основание для признания аффилированности",
416
423
  "reasonForRelation": "Основание для признания связанности",
417
- "affiliationDate": "Дата появления аффилированности",
424
+ "affCreateDate": "Дата появления аффилированности",
418
425
  "relationDate": "Дата появления связанности",
419
- "expulsionDate": "Дата исключения",
426
+ "affDeletedDate": "Дата исключения",
420
427
  "applicationDate": "Дата заявки",
421
428
  "wrongData": "Некорректные данные обнаружены",
422
429
  "legalName": "Название организации",
@@ -429,7 +436,7 @@
429
436
  "controllerCheck": "Проверенно контроллером",
430
437
  "amountCurrency": "Сумма в валюте",
431
438
  "isAnotherContract ": "Подозрение что у клиента есть договор страхования в другой иностранной компании",
432
- "opf": "Организационно-правовая форма",
439
+ "shortNameRu": "Организационно-правовая форма",
433
440
  "checkType": "Тип проверки",
434
441
  "personType": "Тип клиента",
435
442
  "operationtype": "Тип операции",
@@ -437,7 +444,11 @@
437
444
  "export": "Экспорт",
438
445
  "overlapType": "Тип совпадения",
439
446
  "system": "Система",
440
- "isActive": "Активен"
447
+ "modifiedDate": "Дата редактирования",
448
+ "createdDate": "Дата добавления",
449
+ "isActive": "Активен",
450
+ "countryName": "Место жительства",
451
+ "countryResidence": "Налоговое резидентство"
441
452
  },
442
453
  "agent": {
443
454
  "currency": "Валюта",
@@ -789,6 +800,7 @@
789
800
  "phoneNumber": "Номер телефона",
790
801
  "homePhone": "Домашний номер телефон",
791
802
  "email": "Email адрес",
803
+ "sendToEmail": "Отправить на почту",
792
804
  "otpCode": "Код подтверждения",
793
805
  "salesChanell": "Канал продаж",
794
806
  "manager": "Менеджер",
@@ -798,18 +810,19 @@
798
810
  "firstNameLat": "Имя (На латинице)",
799
811
  "lastNameLat": "Фамилия (На латинице)"
800
812
  },
801
- "bankDetailsForm":{
802
- "title":"Банковские реквизиты",
813
+ "bankDetailsForm": {
814
+ "title": "Банковские реквизиты",
803
815
  "name": "Название банка",
804
816
  "BIN": "БИН банка",
817
+ "ownerIIN": "ИИН владельца",
805
818
  "BIK": "БИК банка",
806
819
  "IBANBank": "IBAN банка",
807
820
  "IBANClient": "IBAN клиента",
808
821
  "accountHolderName": "ФИО владельца счета",
809
- "accountHolderIIN": "ИИН владельца счета",
822
+ "accountHolderIIN": "ИИН владельца счета",
810
823
  "accountHolderAddress": "Адрес владельца счета"
811
824
  },
812
- "insurers": {
825
+ "clients": {
813
826
  "listInsured": "Список Застрахованных",
814
827
  "templateInsured": "Шаблон для заполнения данных Застрахованных",
815
828
  "sendListToFill": "Отправить список Страхователю для заполнения",
@@ -824,6 +837,7 @@
824
837
  "infoBeneficialOwner": "Сведения о Бенефициарном собственнике",
825
838
  "dataBeneficialOwner": "Данные Бенефициарного собственника",
826
839
  "documentsBeneficialOwner": "Документы Бенефициарного собственника",
840
+ "coveragePeriod": "Период покрытия",
827
841
  "form": {
828
842
  "nameOrganization": "Наименование организации",
829
843
  "listSpecies": "Перечень видов",
@@ -860,38 +874,51 @@
860
874
  "isFirstManager": "Бенефициарный собственник является первым руководителем",
861
875
  "iin": "ИИН (при наличии)",
862
876
  "isPublicForeignOfficial": "Отметка о принадлежности и/или причастности к публичному иностранному должностному лицу, его супруге (супругу) и близким родственникам?",
863
- "series": "Серия"
877
+ "series": "Серия",
878
+ "count": "Количество случаев",
879
+ "amount": "Сумма выплаты",
880
+ "shortDescription": "Краткое описание",
881
+ "questionnaireInsured": "Анкета Застрахованного",
882
+ "recalculationSection": "Раздел переменных для перерасчета"
864
883
  }
865
884
  },
866
- "dso":{
885
+ "dso": {
867
886
  "project": "ДСО",
868
887
  "generalInfo": "Общая информация",
869
888
  "prevStatements": "Ранее оформленные заявки",
870
889
  "title": "Сопровождение договоров/полисов",
871
890
  "warningNSJ": "На данный момент сопровождение договоров/полисов только для НСЖ",
872
- "coming":"Приход",
873
- "consumption":"Расход",
874
- "remainder":"Остаток",
875
- "loans":"Займы",
891
+ "coming": "Приход",
892
+ "consumption": "Расход",
893
+ "remainder": "Остаток",
894
+ "loans": "Займы",
876
895
  "paymentJournal": "Журнал оплат",
877
- "startDate":"Дата начала",
878
- "loanAmount":"Сумма займа",
879
- "loanStatus":"Статус займа",
880
- "numberContract":"Номер полиса / договора: ",
896
+ "startDate": "Дата начала",
897
+ "loanAmount": "Сумма займа",
898
+ "loanStatus": "Статус займа",
899
+ "numberContract": "Номер полиса / договора: ",
881
900
  "createStatement": "Создать заявление",
882
- "reasonsTerminationOfContract":{
883
- "title":"Причина возврата денежных сумм",
884
- "refundPremium":"Расторжение договора страхования и возврат страховой премии",
885
- "redemptionAmount":"Расторжение договора страхования и выплата выкупной суммы",
886
- "terminateContract":"Расторжение договора страхования",
887
- "refundPremiumWithin30days":"Расторжение договора страхования и возврат страховой премии в течении 30/40 дней с даты заключения договора страхования",
888
- "transferPremiumOrAmount":"Расторжение договора страхования и перенос выкупной суммы/страховой премии"
901
+ "redemptionAmount": "Выкупная сумма",
902
+ "bonusAmount": "Бонусная сумма",
903
+ "statementName": "Наименование Заявление ",
904
+ "termination": "Расторжение",
905
+ "change": "Изменение",
906
+ "recovery": "Восстановление",
907
+ "statementType": "Тип Заявление",
908
+ "number": "Номер",
909
+ "reasonsTerminationOfContract": {
910
+ "title": "Причина возврата денежных сумм",
911
+ "refundPremium": "Расторжение договора страхования и возврат страховой премии",
912
+ "redemptionAmount": "Расторжение договора страхования и выплата выкупной суммы",
913
+ "terminateContract": "Расторжение договора страхования",
914
+ "refundPremiumWithin30days": "Расторжение договора страхования и возврат страховой премии в течении 30/40 дней с даты заключения договора страхования",
915
+ "transferPremiumOrAmount": "Расторжение договора страхования и перенос выкупной суммы/страховой премии"
889
916
  },
890
- "needDocuments":"Необходимо вложить оригинал страхового полиса в разделе “Документы”",
891
- "hasOriginalContract":"Имеется ли оригинал страхового полиса? Да",
892
- "byAttorney":"По доверенности? Нет",
893
- "changePolicyholder":"Изменить Страхователя? Нет",
894
- "Contract/Policy/Statement":"Договор/Полис/Заявление"
917
+ "needDocuments": "Необходимо вложить оригинал страхового полиса в разделе “Документы”",
918
+ "hasOriginalContract": "Имеется ли оригинал страхового полиса? Да",
919
+ "byAttorney": "По доверенности? Нет",
920
+ "changePolicyholder": "Изменить Страхователя? Нет",
921
+ "Contract/Policy/Statement": "Договор/Полис/Заявление"
895
922
  },
896
923
  "agreementBlock": {
897
924
  "title": "Согласие на сбор и обработку пресональных данных",