hl-core 0.0.9-beta.27 → 0.0.9-beta.29
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/components/Complex/MessageBlock.vue +1 -1
- package/components/Complex/Page.vue +1 -1
- package/components/Form/DynamicForm.vue +18 -0
- package/components/Form/ManagerAttachment.vue +51 -12
- package/components/Input/DynamicInput.vue +22 -0
- package/components/Input/FileInput.vue +8 -2
- package/components/Input/SwitchInput.vue +64 -0
- package/components/Input/TextInput.vue +156 -0
- package/components/Layout/Drawer.vue +15 -3
- package/components/Layout/Header.vue +1 -1
- package/components/Layout/SettingsPanel.vue +1 -3
- package/components/Menu/MenuNav.vue +2 -2
- package/components/Pages/Anketa.vue +7 -7
- package/components/Pages/ContragentForm.vue +6 -6
- package/components/Pages/Documents.vue +4 -6
- package/components/Pages/MemberForm.vue +30 -30
- package/components/Pages/ProductAgreement.vue +1 -8
- package/components/Pages/ProductConditions.vue +22 -22
- package/components/Panel/PanelHandler.vue +88 -6
- package/components/Panel/RightPanelCloser.vue +7 -0
- package/composables/classes.ts +101 -108
- package/composables/constants.ts +1 -1
- package/composables/index.ts +66 -0
- package/layouts/default.vue +42 -3
- package/locales/ru.json +56 -5
- package/package.json +1 -1
- package/store/data.store.ts +21 -15
- package/store/extractStore.ts +17 -0
- package/types/form.ts +73 -0
- package/types/index.ts +4 -3
package/composables/classes.ts
CHANGED
|
@@ -946,7 +946,13 @@ export class DataStoreClass {
|
|
|
946
946
|
open: boolean;
|
|
947
947
|
overlay: boolean;
|
|
948
948
|
title: string;
|
|
949
|
-
clear:
|
|
949
|
+
clear: () => void;
|
|
950
|
+
};
|
|
951
|
+
rightPanel: {
|
|
952
|
+
open: boolean;
|
|
953
|
+
overlay: boolean;
|
|
954
|
+
title: string;
|
|
955
|
+
clear: () => void;
|
|
950
956
|
};
|
|
951
957
|
historyPageIndex: number;
|
|
952
958
|
historyPageSize: number;
|
|
@@ -1102,13 +1108,24 @@ export class DataStoreClass {
|
|
|
1102
1108
|
open: false,
|
|
1103
1109
|
overlay: false,
|
|
1104
1110
|
title: '',
|
|
1105
|
-
clear:
|
|
1111
|
+
clear: () => {
|
|
1106
1112
|
const panelActions = document.getElementById('panel-actions');
|
|
1107
1113
|
if (panelActions) {
|
|
1108
1114
|
panelActions.innerHTML = '';
|
|
1109
1115
|
}
|
|
1110
1116
|
},
|
|
1111
1117
|
};
|
|
1118
|
+
this.rightPanel = {
|
|
1119
|
+
open: false,
|
|
1120
|
+
overlay: false,
|
|
1121
|
+
title: '',
|
|
1122
|
+
clear: () => {
|
|
1123
|
+
const panelActions = document.getElementById('right-panel-actions');
|
|
1124
|
+
if (panelActions) {
|
|
1125
|
+
panelActions.innerHTML = '';
|
|
1126
|
+
}
|
|
1127
|
+
},
|
|
1128
|
+
};
|
|
1112
1129
|
this.panelAction = null;
|
|
1113
1130
|
this.historyPageIndex = 1;
|
|
1114
1131
|
this.historyPageSize = 10;
|
|
@@ -1211,7 +1228,6 @@ export class FormStoreClass {
|
|
|
1211
1228
|
signedContractFormData: any;
|
|
1212
1229
|
lfb: {
|
|
1213
1230
|
clients: ClientV2[];
|
|
1214
|
-
fixInsAmount: Value[];
|
|
1215
1231
|
policyholder: MemberV2;
|
|
1216
1232
|
hasAccidentIncidents: boolean;
|
|
1217
1233
|
accidentIncidents: AccidentIncidents[];
|
|
@@ -1220,7 +1236,6 @@ export class FormStoreClass {
|
|
|
1220
1236
|
beneficialOwnersIndex: number;
|
|
1221
1237
|
isPolicyholderBeneficialOwner: boolean;
|
|
1222
1238
|
clientId: string | null;
|
|
1223
|
-
policyholderFile: any;
|
|
1224
1239
|
};
|
|
1225
1240
|
additionalInsuranceTerms: AddCover[];
|
|
1226
1241
|
additionalInsuranceTermsWithout: AddCover[];
|
|
@@ -1318,7 +1333,6 @@ export class FormStoreClass {
|
|
|
1318
1333
|
this.signedContractFormData = null;
|
|
1319
1334
|
this.lfb = {
|
|
1320
1335
|
clients: [],
|
|
1321
|
-
fixInsAmount: [],
|
|
1322
1336
|
policyholder: new MemberV2(),
|
|
1323
1337
|
hasAccidentIncidents: true,
|
|
1324
1338
|
policyholderActivities: [new PolicyholderActivity()],
|
|
@@ -1327,7 +1341,6 @@ export class FormStoreClass {
|
|
|
1327
1341
|
isPolicyholderBeneficialOwner: false,
|
|
1328
1342
|
accidentIncidents: [],
|
|
1329
1343
|
clientId: null,
|
|
1330
|
-
policyholderFile: null,
|
|
1331
1344
|
};
|
|
1332
1345
|
this.additionalInsuranceTerms = [];
|
|
1333
1346
|
this.additionalInsuranceTermsWithout = [];
|
|
@@ -1414,121 +1427,125 @@ export class FormStoreClass {
|
|
|
1414
1427
|
}
|
|
1415
1428
|
|
|
1416
1429
|
export class MemberV2 {
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
showTaxResidentCountry: string | null;
|
|
1430
|
-
};
|
|
1431
|
-
identityCard?: {
|
|
1430
|
+
iin: string | null;
|
|
1431
|
+
phoneNumber: string | null;
|
|
1432
|
+
firstName: string | null;
|
|
1433
|
+
middleName: string | null;
|
|
1434
|
+
lastName: string | null;
|
|
1435
|
+
citizenship: Value;
|
|
1436
|
+
email: string | null;
|
|
1437
|
+
resident: Value;
|
|
1438
|
+
taxResidentCountry: Value;
|
|
1439
|
+
economySectorCode: Value;
|
|
1440
|
+
isActualAddressEqualLegalAddres: boolean;
|
|
1441
|
+
identityDocument?: {
|
|
1432
1442
|
documentType: Value;
|
|
1433
1443
|
documentNumber: string | null;
|
|
1434
1444
|
series: string | null;
|
|
1435
|
-
|
|
1436
|
-
|
|
1445
|
+
issuedBy: Value;
|
|
1446
|
+
validUntil: string | null;
|
|
1437
1447
|
};
|
|
1438
|
-
|
|
1448
|
+
bankInfo: {
|
|
1439
1449
|
bin: string | null;
|
|
1440
1450
|
bankName: Value;
|
|
1441
1451
|
iik: string | null;
|
|
1442
1452
|
bik: string | null;
|
|
1443
1453
|
kbe: string | null;
|
|
1444
1454
|
};
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1455
|
+
address: Address;
|
|
1456
|
+
workDetails: {
|
|
1457
|
+
workplace: string | null;
|
|
1458
|
+
position: string | null;
|
|
1459
|
+
jobDuties: string | null;
|
|
1460
|
+
};
|
|
1461
|
+
companyAddress: Address;
|
|
1462
|
+
authorityDetails: {
|
|
1463
|
+
basis: string | null;
|
|
1464
|
+
documentNumber: string | null;
|
|
1451
1465
|
date: string | null;
|
|
1452
1466
|
};
|
|
1453
|
-
|
|
1454
|
-
|
|
1467
|
+
organizationInfo: {
|
|
1468
|
+
bin: string | null;
|
|
1455
1469
|
organizationName: string | null;
|
|
1470
|
+
kbe: string | null;
|
|
1471
|
+
resident: Value;
|
|
1472
|
+
taxResidentCountry: Value;
|
|
1456
1473
|
economySectorCode: Value;
|
|
1457
1474
|
typeOfEconomicActivity: string | null;
|
|
1475
|
+
organizationPhone: string | null;
|
|
1476
|
+
organizationEmail: string | null;
|
|
1477
|
+
organizationInternetResource: string | null;
|
|
1478
|
+
organizationStartDate: string | null;
|
|
1479
|
+
activityTypes: {
|
|
1480
|
+
activityTypeName: string | null;
|
|
1481
|
+
empoloyeeCount: number | null;
|
|
1482
|
+
}[];
|
|
1458
1483
|
};
|
|
1459
|
-
|
|
1460
|
-
|
|
1484
|
+
isLeader?: boolean;
|
|
1485
|
+
beneficalOwnerQuest?: {
|
|
1461
1486
|
order: number;
|
|
1462
1487
|
text: string | null;
|
|
1463
1488
|
answer: boolean | null;
|
|
1464
1489
|
}[];
|
|
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
|
-
// };
|
|
1487
1490
|
constructor() {
|
|
1488
|
-
this.
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
showTaxResidentCountry: null,
|
|
1501
|
-
};
|
|
1502
|
-
this.identityCard = {
|
|
1491
|
+
this.iin = null;
|
|
1492
|
+
this.phoneNumber = null;
|
|
1493
|
+
this.firstName = null;
|
|
1494
|
+
this.middleName = null;
|
|
1495
|
+
this.lastName = null;
|
|
1496
|
+
this.citizenship = new Value();
|
|
1497
|
+
this.email = null;
|
|
1498
|
+
this.resident = new Value();
|
|
1499
|
+
this.taxResidentCountry = new Value();
|
|
1500
|
+
this.economySectorCode = new Value();
|
|
1501
|
+
this.isActualAddressEqualLegalAddres = true;
|
|
1502
|
+
this.identityDocument = {
|
|
1503
1503
|
documentType: new Value(),
|
|
1504
1504
|
documentNumber: null,
|
|
1505
1505
|
series: null,
|
|
1506
|
-
|
|
1507
|
-
|
|
1506
|
+
issuedBy: new Value(),
|
|
1507
|
+
validUntil: null,
|
|
1508
1508
|
};
|
|
1509
|
-
this.
|
|
1509
|
+
this.bankInfo = {
|
|
1510
1510
|
bin: null,
|
|
1511
1511
|
bankName: new Value(),
|
|
1512
1512
|
iik: null,
|
|
1513
1513
|
bik: null,
|
|
1514
1514
|
kbe: null,
|
|
1515
1515
|
};
|
|
1516
|
-
this.
|
|
1517
|
-
this.
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1516
|
+
this.address = new Address();
|
|
1517
|
+
this.workDetails = {
|
|
1518
|
+
workplace: null,
|
|
1519
|
+
position: null,
|
|
1520
|
+
jobDuties: null,
|
|
1521
|
+
};
|
|
1522
|
+
this.companyAddress = new Address();
|
|
1523
|
+
this.authorityDetails = {
|
|
1524
|
+
basis: null,
|
|
1525
|
+
documentNumber: null,
|
|
1522
1526
|
date: null,
|
|
1523
1527
|
};
|
|
1524
|
-
this.
|
|
1525
|
-
|
|
1528
|
+
this.organizationInfo = {
|
|
1529
|
+
bin: null,
|
|
1526
1530
|
organizationName: null,
|
|
1531
|
+
kbe: null,
|
|
1532
|
+
resident: new Value(),
|
|
1533
|
+
taxResidentCountry: new Value(),
|
|
1527
1534
|
economySectorCode: new Value(),
|
|
1528
1535
|
typeOfEconomicActivity: null,
|
|
1536
|
+
organizationPhone: null,
|
|
1537
|
+
organizationEmail: null,
|
|
1538
|
+
organizationInternetResource: null,
|
|
1539
|
+
organizationStartDate: null,
|
|
1540
|
+
activityTypes: [
|
|
1541
|
+
{
|
|
1542
|
+
activityTypeName: null,
|
|
1543
|
+
empoloyeeCount: null,
|
|
1544
|
+
},
|
|
1545
|
+
],
|
|
1529
1546
|
};
|
|
1530
|
-
this.
|
|
1531
|
-
this.
|
|
1547
|
+
this.isLeader = true;
|
|
1548
|
+
this.beneficalOwnerQuest = [
|
|
1532
1549
|
{
|
|
1533
1550
|
order: 0,
|
|
1534
1551
|
text: 'Отметка о наличии/отсутствии физического лица (лиц), которому прямо или косвенно принадлежат более 25 % долей участия в уставном капитале либо размещенных (за вычетом привилегированных и выкупленных обществом) акций юридического лица',
|
|
@@ -1545,30 +1562,6 @@ export class MemberV2 {
|
|
|
1545
1562
|
answer: null,
|
|
1546
1563
|
},
|
|
1547
1564
|
];
|
|
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
|
-
// };
|
|
1572
1565
|
}
|
|
1573
1566
|
}
|
|
1574
1567
|
|
package/composables/constants.ts
CHANGED
|
@@ -16,7 +16,7 @@ export const constants = Object.freeze({
|
|
|
16
16
|
checkcontragent: 1,
|
|
17
17
|
checkcontract: 2,
|
|
18
18
|
},
|
|
19
|
-
extractedProducts: ['dso'],
|
|
19
|
+
extractedProducts: ['dso', 'uu'],
|
|
20
20
|
editableStatuses: [Statuses.StartForm, Statuses.EditBeneficiaryForm, Statuses.EditForm],
|
|
21
21
|
documentsLinkVisibleStatuses: [
|
|
22
22
|
Statuses.DocumentsSignedFrom,
|
package/composables/index.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { useDisplay } from 'vuetify';
|
|
|
2
2
|
import jwt_decode from 'jwt-decode';
|
|
3
3
|
import { XMLParser } from 'fast-xml-parser';
|
|
4
4
|
import { AxiosError } from 'axios';
|
|
5
|
+
import { FieldTypes } from '../types/form';
|
|
5
6
|
|
|
6
7
|
export const getBaseCredentials = () => {
|
|
7
8
|
return {
|
|
@@ -284,3 +285,68 @@ export const getLastDayOfMonth = (year: number, month: number) => {
|
|
|
284
285
|
const date = new Date();
|
|
285
286
|
return new Date(year, month + 1, 0, (date.getTimezoneOffset() / 60) * -1).toISOString();
|
|
286
287
|
};
|
|
288
|
+
|
|
289
|
+
export const FieldBase = ({
|
|
290
|
+
label = '',
|
|
291
|
+
placeholder = '',
|
|
292
|
+
readonly = false,
|
|
293
|
+
disabled = false,
|
|
294
|
+
modelValue = null,
|
|
295
|
+
iconName = null,
|
|
296
|
+
rules = [],
|
|
297
|
+
maxLength = null,
|
|
298
|
+
clearable = true,
|
|
299
|
+
hint = undefined,
|
|
300
|
+
suffix = null,
|
|
301
|
+
maska = null,
|
|
302
|
+
}: InputBase): InputBase =>
|
|
303
|
+
({
|
|
304
|
+
label,
|
|
305
|
+
placeholder,
|
|
306
|
+
readonly,
|
|
307
|
+
disabled,
|
|
308
|
+
modelValue,
|
|
309
|
+
iconName,
|
|
310
|
+
rules,
|
|
311
|
+
maxLength,
|
|
312
|
+
clearable,
|
|
313
|
+
hint,
|
|
314
|
+
suffix,
|
|
315
|
+
maska,
|
|
316
|
+
} as InputBase);
|
|
317
|
+
|
|
318
|
+
export const TextInput = ({ ...rest }: Partial<TextInput>): TextInput => {
|
|
319
|
+
return {
|
|
320
|
+
...FieldBase(rest),
|
|
321
|
+
type: FieldTypes.TEXT,
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
|
|
325
|
+
export const SwitchInput = ({ ...rest }: Partial<SwitchInput>): SwitchInput => {
|
|
326
|
+
return {
|
|
327
|
+
...FieldBase(rest),
|
|
328
|
+
type: FieldTypes.SWITCH,
|
|
329
|
+
direction: 'horizontal',
|
|
330
|
+
trueValue: null,
|
|
331
|
+
falseValue: null,
|
|
332
|
+
labeling: false,
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
|
|
336
|
+
export const NumberInput = ({ ...rest }: Partial<NumberInput>): NumberInput => {
|
|
337
|
+
return {
|
|
338
|
+
...FieldBase(rest),
|
|
339
|
+
type: FieldTypes.NUMBER,
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
|
|
343
|
+
export const dynamic = <T>(obj: T, key: keyof T) => {
|
|
344
|
+
return computed({
|
|
345
|
+
get: () => {
|
|
346
|
+
return obj[key];
|
|
347
|
+
},
|
|
348
|
+
set: (val: any) => {
|
|
349
|
+
obj[key] = val;
|
|
350
|
+
},
|
|
351
|
+
});
|
|
352
|
+
};
|
package/layouts/default.vue
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="h-full z-[1]" :class="[$dataStore.hasLayoutMargins ? 'lg:mx-[22px] lg:my-[33px] lg:shadow-xl' : '']">
|
|
3
3
|
<div :class="[$styles.greenBg]" class="hidden z-[-1] lg:block absolute left-0 top-0 h-[200px] w-full"></div>
|
|
4
|
-
<section class="flex h-full" :class="$styles.blueBgLight">
|
|
4
|
+
<section class="flex h-full relative" :class="$styles.blueBgLight">
|
|
5
5
|
<base-menu-nav
|
|
6
6
|
v-if="$dataStore.showNav"
|
|
7
7
|
:selected="$dataStore.menu.selectedItem"
|
|
8
8
|
:title="$dataStore.menu.title ?? 'Страховые продукты'"
|
|
9
9
|
:has-back="$dataStore.menu.hasBack ?? false"
|
|
10
10
|
:back-icon="$dataStore.menu.backIcon ?? 'mdi-arrow-left'"
|
|
11
|
-
:more-icon="$dataStore.menu.moreIcon ?? 'mdi-
|
|
12
|
-
:has-more="'hasMore' in $route.meta
|
|
11
|
+
:more-icon="$dataStore.menu.moreIcon ?? 'mdi-dots-vertical'"
|
|
12
|
+
:has-more="'hasMore' in $route.meta ? !!$route.meta.hasMore : true"
|
|
13
13
|
:class="{
|
|
14
14
|
// @ts-ignore
|
|
15
15
|
'!hidden': !$display().lgAndUp.value && !!$dataStore.menu.selectedItem.title,
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
</template>
|
|
24
24
|
</base-menu-nav>
|
|
25
25
|
<slot></slot>
|
|
26
|
+
<base-drawer which-panel="rightPanel" :panel-title="$dataStore.rightPanel.title" side="right" />
|
|
26
27
|
<base-settings-panel />
|
|
27
28
|
</section>
|
|
28
29
|
</div>
|
|
@@ -44,6 +45,44 @@ const onLink = async (item: MenuItem) => {
|
|
|
44
45
|
const onBack = async (item: MenuItem) => {
|
|
45
46
|
if (dataStore.menu.onBack) await dataStore.menu.onBack(item);
|
|
46
47
|
};
|
|
48
|
+
|
|
49
|
+
watch(
|
|
50
|
+
() => dataStore.settings.open,
|
|
51
|
+
() => {
|
|
52
|
+
if (dataStore.settings.open === true && dataStore.panel.open === true) {
|
|
53
|
+
dataStore.panel.open = false;
|
|
54
|
+
dataStore.panelAction = null;
|
|
55
|
+
}
|
|
56
|
+
if (dataStore.settings.open === true && dataStore.rightPanel.open === true) {
|
|
57
|
+
dataStore.rightPanel.open = false;
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
watch(
|
|
63
|
+
() => dataStore.rightPanel.open,
|
|
64
|
+
() => {
|
|
65
|
+
if (dataStore.rightPanel.open === true && dataStore.panel.open === true) {
|
|
66
|
+
dataStore.panel.open = false;
|
|
67
|
+
dataStore.panelAction = null;
|
|
68
|
+
}
|
|
69
|
+
if (dataStore.rightPanel.open === true && dataStore.settings.open === true) {
|
|
70
|
+
dataStore.settings.open = false;
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
watch(
|
|
76
|
+
() => dataStore.panel.open,
|
|
77
|
+
() => {
|
|
78
|
+
if (dataStore.panel.open === true && dataStore.settings.open === true) {
|
|
79
|
+
dataStore.settings.open = false;
|
|
80
|
+
}
|
|
81
|
+
if (dataStore.panel.open === true && dataStore.rightPanel.open === true) {
|
|
82
|
+
dataStore.rightPanel.open = false;
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
);
|
|
47
86
|
</script>
|
|
48
87
|
<style>
|
|
49
88
|
.mainpage,
|
package/locales/ru.json
CHANGED
|
@@ -130,7 +130,8 @@
|
|
|
130
130
|
"templateSentToEmail": "Шаблона отправлен на почту",
|
|
131
131
|
"fileOnlyBelow5mb": "Максимальный размер документа для загрузки - 5 МБ.",
|
|
132
132
|
"fileOnlyBelow20mb": "Максимальный размер документа для загрузки - 20 МБ.",
|
|
133
|
-
"onlyPDF": "Загружать документы можно только в формате PDF"
|
|
133
|
+
"onlyPDF": "Загружать документы можно только в формате PDF",
|
|
134
|
+
"notAllDocumentsAttached": "Не все документы вложены"
|
|
134
135
|
},
|
|
135
136
|
"notSignedContract": "Неподписанный Договор",
|
|
136
137
|
"Contract": "Договор страхования",
|
|
@@ -205,7 +206,11 @@
|
|
|
205
206
|
"sendOnPaper": "Отправить на бумажном носителе",
|
|
206
207
|
"export": "Экспорт",
|
|
207
208
|
"fromGBDUL": "ГБДЮЛ",
|
|
208
|
-
"fromKGD": "КГД"
|
|
209
|
+
"fromKGD": "КГД",
|
|
210
|
+
"generatePrintedForms": "Сформировать печатные формы",
|
|
211
|
+
"downloadStatement": "Скачать заявление",
|
|
212
|
+
"downloadApplication": "Скачать приложение №1",
|
|
213
|
+
"downloadPowerOfAttorney": "Скачать доверенность"
|
|
209
214
|
},
|
|
210
215
|
"dialog": {
|
|
211
216
|
"title": "Подтверждение",
|
|
@@ -448,7 +453,12 @@
|
|
|
448
453
|
"createdDate": "Дата добавления",
|
|
449
454
|
"isActive": "Активен",
|
|
450
455
|
"countryName": "Место жительства",
|
|
451
|
-
"countryResidence": "Налоговое резидентство"
|
|
456
|
+
"countryResidence": "Налоговое резидентство",
|
|
457
|
+
"complianceStatement": "Заключение службы комплайенс",
|
|
458
|
+
"parameters": "Параметры",
|
|
459
|
+
"chooseCheckType": "Выберите режим проверки",
|
|
460
|
+
"contracts": "Контракты",
|
|
461
|
+
"contragents": "Контрагенты"
|
|
452
462
|
},
|
|
453
463
|
"agent": {
|
|
454
464
|
"currency": "Валюта",
|
|
@@ -641,6 +651,7 @@
|
|
|
641
651
|
"reset": "Сбросить",
|
|
642
652
|
"toExcel": "Экспорт в Excel",
|
|
643
653
|
"condition": "Условие",
|
|
654
|
+
"sum": "Сумма",
|
|
644
655
|
"bet": "Ставка",
|
|
645
656
|
"statistics": "Статистика",
|
|
646
657
|
"progressBar": "Шкала прогресса",
|
|
@@ -678,7 +689,11 @@
|
|
|
678
689
|
"jsonObject": "JSON значение",
|
|
679
690
|
"epayPage": "Страница на ePay",
|
|
680
691
|
"checkWithDoc": "Сверьте с документом",
|
|
681
|
-
"inDetails": "Подробно"
|
|
692
|
+
"inDetails": "Подробно",
|
|
693
|
+
"attachContract": "Вложить договор",
|
|
694
|
+
"attachStatement": "Вложить заявление",
|
|
695
|
+
"attachApplication": "Вложить приложение №1",
|
|
696
|
+
"attachPowerOfAttorney": "Вложить доверенность"
|
|
682
697
|
},
|
|
683
698
|
"placeholders": {
|
|
684
699
|
"login": "Логин",
|
|
@@ -768,6 +783,7 @@
|
|
|
768
783
|
"job": "Профессия",
|
|
769
784
|
"jobPosition": "Должность",
|
|
770
785
|
"jobPlace": "Место работы",
|
|
786
|
+
"jobDesk": "Занимаемая должность и точная описание служебных обязанностей",
|
|
771
787
|
"placeRegistration": "Место жительство или регистрации",
|
|
772
788
|
"placePermanent": "Постоянный адрес проживания",
|
|
773
789
|
"sameAddress": "Совпадает ли адрес с адресом Страхователя?",
|
|
@@ -808,7 +824,29 @@
|
|
|
808
824
|
"agent": "Агент",
|
|
809
825
|
"insurancePay": "Страховая выплата подлежит осуществлению",
|
|
810
826
|
"firstNameLat": "Имя (На латинице)",
|
|
811
|
-
"lastNameLat": "Фамилия (На латинице)"
|
|
827
|
+
"lastNameLat": "Фамилия (На латинице)",
|
|
828
|
+
"phDocuments": "Документы Страхователя",
|
|
829
|
+
"insDocuments": "Документы Застрахованного / Выгодоприобретателя",
|
|
830
|
+
"insuredBeneficiaryData": "Сведения о Застрахованном / Выгодоприобретателе",
|
|
831
|
+
"identyDocument": "Документ подтверждающий личность",
|
|
832
|
+
"bankStatement": "Справка из банка",
|
|
833
|
+
"benefDoc": "Документ подтверждающий личность Бенефициарного собственника",
|
|
834
|
+
"insActBasis": "Страхователь действует на основании (Устав. доверенность, приказ и тп)",
|
|
835
|
+
"insActBasisKz": "Сақтанушы (Жарғы, сенімхат, бұйрық және т.б.) негізінде әрекет етеді",
|
|
836
|
+
"insurerAuthority": "Полномочия Страхователя",
|
|
837
|
+
"docNumber": "Номер документа",
|
|
838
|
+
"docDate": "Дата",
|
|
839
|
+
"docType": "Вид документа",
|
|
840
|
+
"issuingAuthority": "Орган выдачи",
|
|
841
|
+
"validUntil": "Действует до",
|
|
842
|
+
"validFrom": "Выдан от",
|
|
843
|
+
"identityDocument": "Документ удостоверяющий личность",
|
|
844
|
+
"toggleContactPerson": "Отметка о наличии (отсутсвии) Контактного лица Застрахованного",
|
|
845
|
+
"contactPersonData": "Сведения о Контактном лице Застрахованного",
|
|
846
|
+
"registrationPlaceOfContactPerson": "Место жительства или регистрации Контактного лица Застрахованного",
|
|
847
|
+
"identityCardOfContactPerson": "Документ удостоверяющий личность Контактного лица Застрахованного",
|
|
848
|
+
"recipientDocs": "Документы Получателя",
|
|
849
|
+
"recipientData": "Сведения о Получателе"
|
|
812
850
|
},
|
|
813
851
|
"bankDetailsForm": {
|
|
814
852
|
"title": "Банковские реквизиты",
|
|
@@ -838,7 +876,13 @@
|
|
|
838
876
|
"dataBeneficialOwner": "Данные Бенефициарного собственника",
|
|
839
877
|
"documentsBeneficialOwner": "Документы Бенефициарного собственника",
|
|
840
878
|
"coveragePeriod": "Период покрытия",
|
|
879
|
+
"attachScansSignDocs": "Вложить сканы подписанных документов",
|
|
841
880
|
"form": {
|
|
881
|
+
"calculation": "Расчеты",
|
|
882
|
+
"paymentAmount": "Размер выплаты",
|
|
883
|
+
"paymentPeriod": "Количество платежей",
|
|
884
|
+
"paymentDate": "Дата первой выплаты",
|
|
885
|
+
"recipient": "Получатель (в случае смерти Застрахованного)",
|
|
842
886
|
"nameOrganization": "Наименование организации",
|
|
843
887
|
"listSpecies": "Перечень видов",
|
|
844
888
|
"numberWorkers": "Кол-во работников",
|
|
@@ -882,6 +926,9 @@
|
|
|
882
926
|
"recalculationSection": "Раздел переменных для перерасчета"
|
|
883
927
|
}
|
|
884
928
|
},
|
|
929
|
+
"uu": {
|
|
930
|
+
"title": "Процесс урегулирования убытков"
|
|
931
|
+
},
|
|
885
932
|
"dso": {
|
|
886
933
|
"project": "ДСО",
|
|
887
934
|
"generalInfo": "Общая информация",
|
|
@@ -892,6 +939,10 @@
|
|
|
892
939
|
"consumption": "Расход",
|
|
893
940
|
"remainder": "Остаток",
|
|
894
941
|
"loans": "Займы",
|
|
942
|
+
"loanNumber": "Номер займа",
|
|
943
|
+
"rewardAmount": "Сумма вознаграждения",
|
|
944
|
+
"loanType": "Тип займа",
|
|
945
|
+
"writeOff": "Списание из ВС",
|
|
895
946
|
"paymentJournal": "Журнал оплат",
|
|
896
947
|
"startDate": "Дата начала",
|
|
897
948
|
"loanAmount": "Сумма займа",
|