hl-core 0.0.9-beta.51 → 0.0.9-beta.53
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/base.api.ts +11 -0
- package/components/Pages/Documents.vue +100 -21
- package/components/Pages/MemberForm.vue +25 -20
- package/components/Pages/ProductConditions.vue +57 -25
- package/components/Panel/PanelHandler.vue +39 -21
- package/composables/classes.ts +21 -15
- package/composables/constants.ts +2 -4
- package/composables/index.ts +24 -1
- package/locales/ru.json +17 -5
- package/package.json +3 -3
- package/store/data.store.ts +104 -52
- package/store/rules.ts +1 -5
- package/types/enum.ts +2 -0
- package/types/index.ts +5 -4
|
@@ -34,15 +34,21 @@
|
|
|
34
34
|
<base-btn :text="$dataStore.t('buttons.sendElectronically')" :disabled="isElectronicDisabled" :loading="loading" @click="handleSignAction('electronic')" />
|
|
35
35
|
<base-btn :text="$dataStore.t('buttons.generatePrintedForms')" :disabled="isScansDisabled" :loading="loading" @click="handleSignAction('scans')" />
|
|
36
36
|
<base-btn :text="$dataStore.t('buttons.sendEgovMob')" :disabled="isQrDisabled" :loading="loading" @click="handleSignAction('qr')" />
|
|
37
|
-
<base-btn v-if="$dataStore.isPension" text="
|
|
38
|
-
<base-btn
|
|
37
|
+
<base-btn v-if="$dataStore.isPension" :text="$dataStore.t('buttons.signWithSignature')" :loading="loading" @click="handleSignAction('signature')" />
|
|
38
|
+
<base-btn
|
|
39
|
+
v-if="$dataStore.isPension"
|
|
40
|
+
:text="$dataStore.t('buttons.signWithSignatureXML')"
|
|
41
|
+
:disabled="isQrXmlDisabled"
|
|
42
|
+
:loading="loading"
|
|
43
|
+
@click="handleSignAction('qrXml')"
|
|
44
|
+
/>
|
|
39
45
|
</div>
|
|
40
46
|
<div v-if="isPaperContract" :class="[$styles.flexColNav]">
|
|
41
47
|
<base-btn :text="$dataStore.t('buttons.downloadContract')" :loading="$dataStore.isButtonsLoading" @click="generateDocument" />
|
|
42
48
|
</div>
|
|
43
49
|
<div v-if="isScansDocuments" :class="[$styles.flexColNav]">
|
|
44
50
|
<div v-if="$dataStore.isPension">
|
|
45
|
-
<div v-if="processCode ==
|
|
51
|
+
<div v-if="processCode == 19">
|
|
46
52
|
<div v-if="formStore.applicationData.statusCode === 'ContractSignedByAuthorizedPerson' || formStore.applicationData.statusCode === 'ContractSignedFrom'">
|
|
47
53
|
<base-btn :text="$dataStore.t('buttons.downloadContract')" :loading="$dataStore.isButtonsLoading" @click="$dataStore.generatePDFDocument('PA_Contract', '38')" />
|
|
48
54
|
<base-form-section class="mt-4 flex flex-col !gap-2" :title="$dataStore.t('clients.attachScansSignDocs')">
|
|
@@ -82,7 +88,7 @@
|
|
|
82
88
|
</base-form-section>
|
|
83
89
|
</div>
|
|
84
90
|
</div>
|
|
85
|
-
<div v-else>
|
|
91
|
+
<div :class="[$styles.flexColNav]" v-else>
|
|
86
92
|
<base-btn :text="$dataStore.t('buttons.downloadStatement')" @click="downloadTemplate(constants.documentTypes.statement, 'docx')" />
|
|
87
93
|
<base-btn :text="$dataStore.t('buttons.downloadContract')" @click="downloadTemplate(constants.documentTypes.contract, 'doc')" />
|
|
88
94
|
<base-btn :text="$dataStore.t('buttons.downloadApplication')" @click="downloadTemplate(constants.documentTypes.application1, 'vnd.ms-excel')" />
|
|
@@ -263,7 +269,15 @@ export default defineComponent({
|
|
|
263
269
|
const phoneNumber = ref<string | null>(formStore.policyholderForm.phoneNumber ?? '');
|
|
264
270
|
const selectedClient = ref<SignUrlType>();
|
|
265
271
|
const documentDict = computed(() => dataStore.dicFileTypeList.find(i => i.nameRu === 'Решение АС'));
|
|
266
|
-
const
|
|
272
|
+
const pensionForm = formStore.applicationData?.pensionApp ?? undefined;
|
|
273
|
+
const needsAgreement = computed(
|
|
274
|
+
() =>
|
|
275
|
+
formStore.applicationData.statusCode === 'ContractSignedFrom' &&
|
|
276
|
+
((pensionForm.compulsoryContractAmount && pensionForm.compulsoryContractAmount !== 0) ||
|
|
277
|
+
(pensionForm.compulsoryProfContractAmount && pensionForm.compulsoryProfContractAmount !== 0) ||
|
|
278
|
+
(pensionForm.voluntaryContractAmount && pensionForm.voluntaryContractAmount !== 0)),
|
|
279
|
+
);
|
|
280
|
+
const consentGiven = computed(() => !!formStore.signedDocumentList.find(i => i.fileTypeCode === '43')?.signed && needsAgreement.value);
|
|
267
281
|
const affiliationDocument = computed(() => formStore.signedDocumentList.find((file: DocumentItem) => file.fileTypeName === 'Решение АС'));
|
|
268
282
|
const affiliationData = ref<{
|
|
269
283
|
processInstanceId: string | number;
|
|
@@ -522,46 +536,49 @@ export default defineComponent({
|
|
|
522
536
|
return true;
|
|
523
537
|
});
|
|
524
538
|
const isPaperDisabled = computed(() => {
|
|
525
|
-
if (dataStore.isGons
|
|
539
|
+
if (dataStore.isGons) {
|
|
526
540
|
return false;
|
|
527
541
|
}
|
|
528
542
|
return true;
|
|
529
543
|
});
|
|
530
544
|
const isElectronicDisabled = computed(() => {
|
|
531
|
-
if (dataStore.isGons) {
|
|
545
|
+
if (dataStore.isGons || dataStore.isLifeBusiness || dataStore.isGns) {
|
|
532
546
|
return true;
|
|
533
547
|
}
|
|
534
|
-
if (
|
|
548
|
+
if (formStore.applicationData.statusCode === 'ContractSignedByAuthorizedPerson') {
|
|
535
549
|
return true;
|
|
536
550
|
}
|
|
551
|
+
if (needsAgreement.value) {
|
|
552
|
+
if (!consentGiven.value && dataStore.isPension) {
|
|
553
|
+
return true;
|
|
554
|
+
}
|
|
555
|
+
}
|
|
537
556
|
return false;
|
|
538
557
|
});
|
|
539
558
|
const isScansDisabled = computed(() => {
|
|
540
559
|
if (dataStore.isGons) {
|
|
541
560
|
return true;
|
|
542
561
|
}
|
|
543
|
-
if (
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
return true;
|
|
562
|
+
if (needsAgreement.value) {
|
|
563
|
+
if (!consentGiven.value && dataStore.isPension && formStore.applicationData.statusCode !== 'ContractSignedFrom') {
|
|
564
|
+
return true;
|
|
565
|
+
}
|
|
548
566
|
}
|
|
549
567
|
return false;
|
|
550
568
|
});
|
|
551
569
|
const isQrDisabled = computed(() => {
|
|
552
|
-
if (
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
return false;
|
|
570
|
+
if (needsAgreement.value) {
|
|
571
|
+
if (!consentGiven.value && dataStore.isPension) {
|
|
572
|
+
return true;
|
|
573
|
+
}
|
|
557
574
|
}
|
|
558
575
|
return true;
|
|
559
576
|
});
|
|
560
577
|
const isQrXmlDisabled = computed(() => {
|
|
561
|
-
if (consentGiven.value &&
|
|
562
|
-
return
|
|
578
|
+
if (consentGiven.value && needsAgreement.value) {
|
|
579
|
+
return false;
|
|
563
580
|
}
|
|
564
|
-
return
|
|
581
|
+
return true;
|
|
565
582
|
});
|
|
566
583
|
const downloadTemplate = async (documentType: number, fileType: string) => {
|
|
567
584
|
await dataStore.downloadTemplate(documentType, fileType, formStore.applicationData.processInstanceId);
|
|
@@ -813,6 +830,7 @@ export default defineComponent({
|
|
|
813
830
|
isQrXmlDisabled,
|
|
814
831
|
choosePayActions,
|
|
815
832
|
consentGiven,
|
|
833
|
+
needsAgreement,
|
|
816
834
|
};
|
|
817
835
|
},
|
|
818
836
|
});
|
package/composables/classes.ts
CHANGED
|
@@ -438,7 +438,7 @@ export class Member extends Person {
|
|
|
438
438
|
familyStatus: Value;
|
|
439
439
|
isTerror: null;
|
|
440
440
|
relationDegree: Value;
|
|
441
|
-
isDisability:
|
|
441
|
+
isDisability: boolean;
|
|
442
442
|
disabilityGroup: Value | null;
|
|
443
443
|
percentageOfPayoutAmount: string | number | null;
|
|
444
444
|
_cyrPattern: RegExp;
|
|
@@ -454,6 +454,7 @@ export class Member extends Person {
|
|
|
454
454
|
documentsList: ContragentDocuments[];
|
|
455
455
|
isInsuredUnderage?: boolean = false;
|
|
456
456
|
bankInfo: BankInfoClass;
|
|
457
|
+
transferContractCompany: Value;
|
|
457
458
|
identityDocument: {
|
|
458
459
|
documentType: Value;
|
|
459
460
|
documentNumber: string | null;
|
|
@@ -507,7 +508,7 @@ export class Member extends Person {
|
|
|
507
508
|
address = null,
|
|
508
509
|
familyStatus = new Value(),
|
|
509
510
|
relationDegree = new Value(),
|
|
510
|
-
isDisability =
|
|
511
|
+
isDisability = false,
|
|
511
512
|
disabilityGroupId = new Value(),
|
|
512
513
|
percentageOfPayoutAmount = null,
|
|
513
514
|
migrationCard = null,
|
|
@@ -594,6 +595,7 @@ export class Member extends Person {
|
|
|
594
595
|
this.parsedDocument = null;
|
|
595
596
|
this.hasAgreement = null;
|
|
596
597
|
this.bankInfo = new BankInfoClass();
|
|
598
|
+
this.transferContractCompany = new Value();
|
|
597
599
|
this.identityDocument = {
|
|
598
600
|
documentType: new Value(),
|
|
599
601
|
documentNumber: null,
|
|
@@ -638,7 +640,7 @@ export class Member extends Person {
|
|
|
638
640
|
this.familyStatus = new Value();
|
|
639
641
|
this.isTerror = null;
|
|
640
642
|
this.relationDegree = new Value();
|
|
641
|
-
this.isDisability =
|
|
643
|
+
this.isDisability = false;
|
|
642
644
|
this.disabilityGroup = null;
|
|
643
645
|
this.percentageOfPayoutAmount = null;
|
|
644
646
|
this.gotFromInsis = true;
|
|
@@ -737,6 +739,7 @@ export class ProductConditions {
|
|
|
737
739
|
annualIncome: string | null;
|
|
738
740
|
processIndexRate: Value;
|
|
739
741
|
processGfot: Value;
|
|
742
|
+
transferContractCompany: Value;
|
|
740
743
|
requestedSumInsured: number | string | null;
|
|
741
744
|
requestedSumInsuredInDollar: number | string | null;
|
|
742
745
|
insurancePremiumPerMonth: number | string | null;
|
|
@@ -784,6 +787,7 @@ export class ProductConditions {
|
|
|
784
787
|
annualIncome = null,
|
|
785
788
|
processIndexRate = new Value(),
|
|
786
789
|
processGfot = new Value(),
|
|
790
|
+
transferContractCompany = new Value(),
|
|
787
791
|
requestedSumInsured = null,
|
|
788
792
|
insurancePremiumPerMonth = null,
|
|
789
793
|
establishingGroupDisabilityFromThirdYear = null,
|
|
@@ -833,6 +837,7 @@ export class ProductConditions {
|
|
|
833
837
|
this.annualIncome = annualIncome;
|
|
834
838
|
this.processIndexRate = processIndexRate;
|
|
835
839
|
this.processGfot = processGfot;
|
|
840
|
+
this.transferContractCompany = transferContractCompany;
|
|
836
841
|
this.requestedSumInsured = requestedSumInsured;
|
|
837
842
|
this.insurancePremiumPerMonth = insurancePremiumPerMonth;
|
|
838
843
|
this.establishingGroupDisabilityFromThirdYear = establishingGroupDisabilityFromThirdYear;
|
|
@@ -1007,7 +1012,7 @@ export class DataStoreClass {
|
|
|
1007
1012
|
disabilityGroups: Value[];
|
|
1008
1013
|
relations: Value[];
|
|
1009
1014
|
banks: Value[];
|
|
1010
|
-
|
|
1015
|
+
transferContractCompanies: Value[];
|
|
1011
1016
|
processTariff: Value[];
|
|
1012
1017
|
insurancePay: Value[];
|
|
1013
1018
|
questionRefs: Value[];
|
|
@@ -1190,7 +1195,7 @@ export class DataStoreClass {
|
|
|
1190
1195
|
this.relations = [];
|
|
1191
1196
|
this.processTariff = [];
|
|
1192
1197
|
this.banks = [];
|
|
1193
|
-
this.
|
|
1198
|
+
this.transferContractCompanies = [];
|
|
1194
1199
|
this.insurancePay = [];
|
|
1195
1200
|
this.residents = [];
|
|
1196
1201
|
this.ipdl = [new Value(1, null), new Value(2, 'Да'), new Value(3, 'Нет')];
|
|
@@ -1585,6 +1590,11 @@ export class PhysGroupClass extends BaseGroupClass {
|
|
|
1585
1590
|
placeOfBirth: Value;
|
|
1586
1591
|
workDetails: { workplace: string; position: string; jobDuties: string };
|
|
1587
1592
|
hasContactPerson: boolean;
|
|
1593
|
+
authorityDetails: {
|
|
1594
|
+
basis: Value;
|
|
1595
|
+
documentNumber: string | null;
|
|
1596
|
+
date: string | null;
|
|
1597
|
+
};
|
|
1588
1598
|
constructor() {
|
|
1589
1599
|
super();
|
|
1590
1600
|
this.lastName = '';
|
|
@@ -1595,16 +1605,17 @@ export class PhysGroupClass extends BaseGroupClass {
|
|
|
1595
1605
|
this.placeOfBirth = new Value();
|
|
1596
1606
|
this.workDetails = { workplace: '', position: '', jobDuties: '' };
|
|
1597
1607
|
this.hasContactPerson = false;
|
|
1608
|
+
this.authorityDetails = {
|
|
1609
|
+
basis: new Value(),
|
|
1610
|
+
documentNumber: null,
|
|
1611
|
+
date: null,
|
|
1612
|
+
};
|
|
1598
1613
|
}
|
|
1599
1614
|
}
|
|
1600
1615
|
|
|
1601
1616
|
export class GroupMember extends PhysGroupClass {
|
|
1602
1617
|
isLeader: boolean;
|
|
1603
|
-
|
|
1604
|
-
basis: Value;
|
|
1605
|
-
documentNumber: string | null;
|
|
1606
|
-
date: string | null;
|
|
1607
|
-
};
|
|
1618
|
+
|
|
1608
1619
|
typeOfEconomicActivity: Value;
|
|
1609
1620
|
activityTypes: { activityTypeName: string; empoloyeeCount: number }[];
|
|
1610
1621
|
beneficalOwnerQuest: { order: number; text: string; answer: boolean | null }[];
|
|
@@ -1614,11 +1625,6 @@ export class GroupMember extends PhysGroupClass {
|
|
|
1614
1625
|
super();
|
|
1615
1626
|
// Client
|
|
1616
1627
|
this.isLeader = false;
|
|
1617
|
-
this.authorityDetails = {
|
|
1618
|
-
basis: new Value(),
|
|
1619
|
-
documentNumber: null,
|
|
1620
|
-
date: null,
|
|
1621
|
-
};
|
|
1622
1628
|
this.typeOfEconomicActivity = new Value();
|
|
1623
1629
|
this.activityTypes = [];
|
|
1624
1630
|
this.beneficalOwnerQuest = [
|
package/composables/constants.ts
CHANGED
|
@@ -17,6 +17,7 @@ export const constants = Object.freeze({
|
|
|
17
17
|
amuletlife: 15,
|
|
18
18
|
gns: 16,
|
|
19
19
|
prepensionannuity: 18,
|
|
20
|
+
pensionannuitynew: 19,
|
|
20
21
|
},
|
|
21
22
|
amlProducts: {
|
|
22
23
|
checkcontragent: 1,
|
|
@@ -54,11 +55,8 @@ export const constants = Object.freeze({
|
|
|
54
55
|
Statuses.ContractSignedFrom,
|
|
55
56
|
Statuses.AttachAppContractForm,
|
|
56
57
|
Statuses.PreparationDossierForm,
|
|
57
|
-
Statuses.DsoUsnsForm,
|
|
58
|
-
Statuses.AccountantForm,
|
|
59
|
-
Statuses.ContractSignedByAuthorizedPerson,
|
|
60
58
|
],
|
|
61
|
-
rejectApplicationStatuses: [Statuses.StartForm, Statuses.AttachAppContractForm],
|
|
59
|
+
rejectApplicationStatuses: [Statuses.StartForm, Statuses.AttachAppContractForm, Statuses.DsoUsnsForm, Statuses.AccountantForm, Statuses.ContractSignedByAuthorizedPerson, Statuses.ContractSignedFrom],
|
|
62
60
|
gbdErrors: ['INVALID', 'TIMEOUT', 'ERROR', 'NOT_FOUND'],
|
|
63
61
|
roles: Roles,
|
|
64
62
|
actions: Actions,
|
package/composables/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ export const useEnv = () => {
|
|
|
17
17
|
export class Masks {
|
|
18
18
|
numbers: string = '#*';
|
|
19
19
|
otp: string = '# # # #';
|
|
20
|
+
spacedNumbers: string = '### ### ### ### ### ### ###';
|
|
20
21
|
iin: string = '###-###-###-###';
|
|
21
22
|
phone: string = '+7 (7##) ### ## ##';
|
|
22
23
|
date: string = '##.##.####';
|
|
@@ -98,6 +99,8 @@ export const formatPhone = (phone: string) => {
|
|
|
98
99
|
return phone?.replace(/(\(|\)|\+| )/g, '');
|
|
99
100
|
};
|
|
100
101
|
|
|
102
|
+
export const cleanWhiteSpace = (str: string) => String(str).replace(/\s+/g, '');
|
|
103
|
+
|
|
101
104
|
export const jwtDecode = (token: string): any => {
|
|
102
105
|
if (token) return jwt_decode(token);
|
|
103
106
|
else return null;
|
|
@@ -190,6 +193,7 @@ export const ErrorHandler = (err: unknown, errorText?: string) => {
|
|
|
190
193
|
console.log(err);
|
|
191
194
|
if (useDataStore) {
|
|
192
195
|
const dataStore = useDataStore();
|
|
196
|
+
if (typeof err === 'string') dataStore.showToaster('error', err);
|
|
193
197
|
if (err instanceof AxiosError) {
|
|
194
198
|
if ('response' in err && err.response && err.response.data) {
|
|
195
199
|
if (err.response.data === Object(err.response.data) && 'errors' in err.response.data && 'title' in err.response.data && 'traceId' in err.response.data) {
|
|
@@ -336,7 +340,17 @@ export const getLastDayOfMonth = (year: number, month: number) => {
|
|
|
336
340
|
return new Date(year, month + 1, 0, (date.getTimezoneOffset() / 60) * -1).toISOString();
|
|
337
341
|
};
|
|
338
342
|
|
|
339
|
-
type WhichValuePerEnv =
|
|
343
|
+
type WhichValuePerEnv =
|
|
344
|
+
| 'qrGenUrl'
|
|
345
|
+
| 'qrXmlGenUrl'
|
|
346
|
+
| 'gatewayApiUrl'
|
|
347
|
+
| 'gatewayApiUrlLocal'
|
|
348
|
+
| 'baseApi'
|
|
349
|
+
| 'baseApiLocal'
|
|
350
|
+
| 'efoBaseApi'
|
|
351
|
+
| 'efoBaseApiLocal'
|
|
352
|
+
| 'amlBaseApi'
|
|
353
|
+
| 'amlBaseApiLocal';
|
|
340
354
|
|
|
341
355
|
export const getStrValuePerEnv = (which: WhichValuePerEnv) => {
|
|
342
356
|
const valuesPerEnv: {
|
|
@@ -515,3 +529,12 @@ export const callDocumentReader = async (imageBase64: string | string[]) => {
|
|
|
515
529
|
return ErrorHandler(err);
|
|
516
530
|
}
|
|
517
531
|
};
|
|
532
|
+
|
|
533
|
+
export const validateResponseStructure = <T>(res: ResponseStructure<T>) => {
|
|
534
|
+
if (res && res.code === 0) {
|
|
535
|
+
return res.data;
|
|
536
|
+
} else {
|
|
537
|
+
useDataStore().showToaster('error', res.message);
|
|
538
|
+
return null;
|
|
539
|
+
}
|
|
540
|
+
};
|
package/locales/ru.json
CHANGED
|
@@ -223,14 +223,17 @@
|
|
|
223
223
|
"downloadPARefundStatement": "Скачать заявление на страхование возврат в ЕНПФ ПА",
|
|
224
224
|
"downloadPARefundAgreement": "Скачать согласие возврат в ЕНПФ ПА",
|
|
225
225
|
"sendEgovMob": "Отправить на подпись через Egov Mobile",
|
|
226
|
-
"signWithSignature": "Подписать
|
|
226
|
+
"signWithSignature": "Подписать с помощью ЭЦП",
|
|
227
|
+
"signWithSignatureXML": "Подписать Согласие через Egov QrXML",
|
|
227
228
|
"sendToPay": "Отправить на оплату",
|
|
228
229
|
"payEpay": "Оплатить через EPAY",
|
|
229
230
|
"payOffline": "Оплатить офлайн",
|
|
230
231
|
"paymentInvoice": "Cчет на оплату",
|
|
231
232
|
"finishApplication": "Завершить заявку",
|
|
232
233
|
"generateConract": "Сгенерировать Договор",
|
|
233
|
-
"signContract": "Заключить Договор"
|
|
234
|
+
"signContract": "Заключить Договор",
|
|
235
|
+
"sendDosie": "Отправить досье",
|
|
236
|
+
"downloadPaymentInvoice": "Скачать счет на оплату"
|
|
234
237
|
},
|
|
235
238
|
"dialog": {
|
|
236
239
|
"title": "Подтверждение",
|
|
@@ -266,7 +269,10 @@
|
|
|
266
269
|
"register": "Вы действительно хотите добавить в реестр данного ребенка?",
|
|
267
270
|
"toApprove": "Вы действительно хотите отправить на согласование?",
|
|
268
271
|
"affiliate": "Вы действительно хотите добавить решение андеррайтингового совета?",
|
|
269
|
-
"choosePay": "Вы действительно хотите выбрать метод оплаты?"
|
|
272
|
+
"choosePay": "Вы действительно хотите выбрать метод оплаты?",
|
|
273
|
+
"searchBeneficiary":"Выполните поиск договоров по ИИН Выгодоприобретателя",
|
|
274
|
+
"searchFoundBeneficiary":"По данному ИИН уже имеется договор. Создание заявки по продукту “ГОНС” - невозможно.",
|
|
275
|
+
"searchNotFoundBeneficiary":"По данному ИИН договор не найден. Нажмите “Создать” для создания новой заявки по продукту “ГОНС”"
|
|
270
276
|
},
|
|
271
277
|
"sign": {
|
|
272
278
|
"chooseDoc": "Выберите документы для подписание",
|
|
@@ -439,7 +445,8 @@
|
|
|
439
445
|
"dateCreated": "Дата начала",
|
|
440
446
|
"factEndDate": "Дата завершения",
|
|
441
447
|
"decision": "Статус",
|
|
442
|
-
"userFullName": "Исполнитель"
|
|
448
|
+
"userFullName": "Исполнитель",
|
|
449
|
+
"stage":"Этап"
|
|
443
450
|
},
|
|
444
451
|
"aml": {
|
|
445
452
|
"contractSignDate": "Дата заключение контракта",
|
|
@@ -534,6 +541,7 @@
|
|
|
534
541
|
"transferContractAmount": "Выкупная сумма, в тенге",
|
|
535
542
|
"guaranteedPeriod": "Гарантированный период страховых выплат (от 1 до 35, в годах)",
|
|
536
543
|
"isOPPV": "Включите, если есть ОППВ",
|
|
544
|
+
"isOPPVTransfer": "Выкупная сумма содержит суммы ОППВ?",
|
|
537
545
|
"annuityConditions": "Условия аннуитетных выплат",
|
|
538
546
|
"role": "Роль",
|
|
539
547
|
"frequencyPayments": "Периодичность аннуитетной выплаты",
|
|
@@ -560,7 +568,10 @@
|
|
|
560
568
|
"dossierPA": "Форма Описи страхового досье ПА (docx)",
|
|
561
569
|
"transferContractCompany": "Наименование КСЖ",
|
|
562
570
|
"transferContractFirstPaymentDate": "Дата начала выплат по договору с КСЖ",
|
|
563
|
-
"companyName": "Наименование компании по страхованию жизни"
|
|
571
|
+
"companyName": "Наименование компании по страхованию жизни",
|
|
572
|
+
"bankInvalid": "Некорректные банковские данные",
|
|
573
|
+
"globalId": "Уникальный номер договора (globalId)",
|
|
574
|
+
"oppvMonthsCheck": "ВНИМАНИЕ! НЕОБХОДИМО ПРОВЕРИТЬ НАЛИЧИЕ ОТЧИСЛЕНИЙ 60 МЕСЯЦЕВ ПО ПРИЗНАКУ 'ОППВ'"
|
|
564
575
|
},
|
|
565
576
|
"agent": {
|
|
566
577
|
"currency": "Валюта",
|
|
@@ -811,6 +822,7 @@
|
|
|
811
822
|
},
|
|
812
823
|
"rules": {
|
|
813
824
|
"required": "Поле обязательно",
|
|
825
|
+
"fileRequired": "Файл обязательно",
|
|
814
826
|
"cyrillic": "Поле должно содержать только кириллические символы",
|
|
815
827
|
"latin": "Поле должно содержать только латинские символы",
|
|
816
828
|
"email": "Неправильный адрес электронной почты",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hl-core",
|
|
3
|
-
"version": "0.0.9-beta.
|
|
3
|
+
"version": "0.0.9-beta.53",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "nuxt.config.ts",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"dev": "nuxt dev",
|
|
29
29
|
"generate": "nuxt generate",
|
|
30
30
|
"preview": "nuxt preview",
|
|
31
|
-
"tk:all": "cd .. && cd amuletlife && yarn typecheck && cd .. && cd baiterek && yarn typecheck && cd .. && cd bolashak && yarn typecheck && cd .. && cd calc && yarn typecheck && cd .. && cd daskamkorlyk && yarn typecheck && cd .. && cd efo && yarn typecheck && cd .. && cd gons && yarn typecheck && cd .. && cd halykkazyna && yarn typecheck && cd .. && cd lifebusiness && yarn typecheck && cd .. && cd gns && yarn typecheck && cd .. && cd liferenta && yarn typecheck && cd .. && cd lifetrip && yarn typecheck && cd .. && cd
|
|
32
|
-
"i:all": "cd .. && cd amuletlife && yarn && cd .. && cd baiterek && yarn && cd .. && cd bolashak && yarn && cd .. && cd calc && yarn && cd .. && cd daskamkorlyk && yarn && cd .. && cd efo && yarn && cd .. && cd gons && yarn && cd .. && cd halykkazyna && yarn && cd .. && cd lifebusiness && yarn && cd .. && cd gns && yarn && cd .. && cd liferenta && yarn && cd .. && cd lifetrip && yarn && cd .. && cd
|
|
31
|
+
"tk:all": "cd .. && cd amuletlife && yarn typecheck && cd .. && cd baiterek && yarn typecheck && cd .. && cd bolashak && yarn typecheck && cd .. && cd calc && yarn typecheck && cd .. && cd daskamkorlyk && yarn typecheck && cd .. && cd efo && yarn typecheck && cd .. && cd gons && yarn typecheck && cd .. && cd halykkazyna && yarn typecheck && cd .. && cd lifebusiness && yarn typecheck && cd .. && cd gns && yarn typecheck && cd .. && cd liferenta && yarn typecheck && cd .. && cd lifetrip && yarn typecheck && cd .. && cd pensionannuitynew && yarn typecheck && cd .. && cd prepensionannuity && yarn typecheck && cd .. && cd core",
|
|
32
|
+
"i:all": "cd .. && cd amuletlife && yarn && cd .. && cd baiterek && yarn && cd .. && cd bolashak && yarn && cd .. && cd calc && yarn && cd .. && cd daskamkorlyk && yarn && cd .. && cd efo && yarn && cd .. && cd gons && yarn && cd .. && cd halykkazyna && yarn && cd .. && cd lifebusiness && yarn && cd .. && cd gns && yarn && cd .. && cd liferenta && yarn && cd .. && cd lifetrip && yarn && cd .. && cd pensionannuitynew && yarn && cd .. && cd prepensionannuity && yarn && cd .. && cd core",
|
|
33
33
|
"update:core": "git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main",
|
|
34
34
|
"update:aml": "cd ../../aml/aml && yarn && cd ../checkcontract && yarn && cd ../checkcontragent && yarn && cd.. && git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main && cd ../efo/core",
|
|
35
35
|
"update:lka": "cd .. && cd lka && yarn && git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main && cd .. && cd core",
|