hl-core 0.0.8-beta.37 → 0.0.8-beta.38
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 +2 -2
- package/components/Form/FormBlock.vue +1 -1
- package/components/Form/ManagerAttachment.vue +1 -1
- package/components/Input/PanelInput.vue +1 -1
- package/components/Layout/SettingsPanel.vue +2 -2
- package/components/Menu/MenuHover.vue +1 -1
- package/components/Menu/MenuNav.vue +1 -1
- package/components/Menu/MenuNavItem.vue +1 -1
- package/components/Pages/Anketa.vue +2 -2
- package/components/Pages/Auth.vue +2 -17
- package/components/Pages/Documents.vue +3 -3
- package/components/Pages/MemberForm.vue +2 -2
- package/components/Pages/ProductConditions.vue +18 -26
- package/components/Panel/PanelHandler.vue +2 -1
- package/composables/axios.ts +1 -1
- package/composables/index.ts +19 -0
- package/configs/i18n.ts +2 -4
- package/layouts/default.vue +1 -1
- package/nuxt.config.ts +1 -1
- package/package.json +3 -4
- package/plugins/helperFunctionsPlugins.ts +1 -1
- package/store/data.store.js +2 -2
- package/store/form.store.ts +1 -1
- package/store/member.store.ts +6 -6
- package/store/rules.js +1 -1
- package/types/env.d.ts +10 -0
- package/types/index.ts +2 -0
- package/locales/en.json +0 -584
package/api/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { useAxios } from '
|
|
2
|
-
import { Value, IDocument } from '
|
|
1
|
+
import { useAxios } from '../composables/axios';
|
|
2
|
+
import { Value, IDocument } from '../composables/classes';
|
|
3
3
|
import { AxiosRequestConfig } from 'axios';
|
|
4
4
|
|
|
5
5
|
enum Methods {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
{{ $dataStore.t('buttons.logout') }}
|
|
35
35
|
<i class="mdi mdi-logout text-xl"></i>
|
|
36
36
|
</base-panel-item>
|
|
37
|
-
<div v-if="$dataStore.settings.open" class="absolute bottom-2 w-full flex items-center justify-center opacity-30 text-sm">
|
|
37
|
+
<div v-if="$dataStore.settings.open && 'version' in pkg && pkg.version" class="absolute bottom-2 w-full flex items-center justify-center opacity-30 text-sm">
|
|
38
38
|
<p>{{ pkg.version }}</p>
|
|
39
39
|
</div>
|
|
40
40
|
<base-dialog
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
</template>
|
|
50
50
|
|
|
51
51
|
<script lang="ts" setup>
|
|
52
|
-
import pkg from '
|
|
52
|
+
import pkg from '../../package.json';
|
|
53
53
|
const dialogSignOut = ref(false);
|
|
54
54
|
const dataStore = useDataStore();
|
|
55
55
|
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
</template>
|
|
123
123
|
|
|
124
124
|
<script lang="ts">
|
|
125
|
-
import { Value } from '
|
|
125
|
+
import { Value } from '../../composables/classes';
|
|
126
126
|
|
|
127
127
|
export default defineComponent({
|
|
128
128
|
setup() {
|
|
@@ -146,7 +146,7 @@ export default defineComponent({
|
|
|
146
146
|
? 'surveyByCriticalBase'
|
|
147
147
|
: 'surveyByCriticalBasePolicyholder',
|
|
148
148
|
);
|
|
149
|
-
const firstQuestionList = ref<AnketaBody[]>();
|
|
149
|
+
const firstQuestionList = ref<AnketaBody[]>([]);
|
|
150
150
|
const secondQuestionList = ref<AnketaSecond[]>([]);
|
|
151
151
|
const currentQuestion = ref<AnketaBody>();
|
|
152
152
|
const currentSecond = ref<AnketaSecond>();
|
|
@@ -91,13 +91,6 @@ export default defineComponent({
|
|
|
91
91
|
const email = ref<string>();
|
|
92
92
|
const resetPasswordType = ref<string>();
|
|
93
93
|
|
|
94
|
-
const credentials = {
|
|
95
|
-
production: { login: '', password: '' },
|
|
96
|
-
test: { login: '', password: '' },
|
|
97
|
-
development: { login: 'manager', password: 'asdqwe123' },
|
|
98
|
-
vercel: { login: '', password: 'asdqwe123' },
|
|
99
|
-
};
|
|
100
|
-
|
|
101
94
|
const carouselItems = [
|
|
102
95
|
{
|
|
103
96
|
title: 'Все полисы в один клик!',
|
|
@@ -116,16 +109,8 @@ export default defineComponent({
|
|
|
116
109
|
},
|
|
117
110
|
];
|
|
118
111
|
|
|
119
|
-
const
|
|
120
|
-
|
|
121
|
-
isDev: import.meta.env.VITE_MODE === 'development',
|
|
122
|
-
isTest: import.meta.env.VITE_MODE === 'test',
|
|
123
|
-
isVercel: import.meta.env.VITE_MODE === 'vercel',
|
|
124
|
-
isProduction: import.meta.env.VITE_MODE === 'production',
|
|
125
|
-
};
|
|
126
|
-
|
|
127
|
-
const login = ref<string>(credentials[useEnv.envMode as keyof typeof credentials].login);
|
|
128
|
-
const password = ref<string>(credentials[useEnv.envMode as keyof typeof credentials].password);
|
|
112
|
+
const login = ref<string>(getBaseCredentials()[useEnv().envMode].login);
|
|
113
|
+
const password = ref<string>(getBaseCredentials()[useEnv().envMode].password);
|
|
129
114
|
|
|
130
115
|
const numAttempts = ref(0);
|
|
131
116
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</template>
|
|
27
27
|
|
|
28
28
|
<script lang="ts">
|
|
29
|
-
import { DocumentItem } from '
|
|
29
|
+
import { DocumentItem } from '../../composables/classes';
|
|
30
30
|
|
|
31
31
|
export default defineComponent({
|
|
32
32
|
setup() {
|
|
@@ -40,9 +40,9 @@ export default defineComponent({
|
|
|
40
40
|
text: '',
|
|
41
41
|
});
|
|
42
42
|
const object_list = computed(() => Object.values(formStore.signedDocumentList));
|
|
43
|
-
const unSignedList = computed(() => document_list.value.filter(doc => doc.signed === false || doc.signed === null));
|
|
43
|
+
const unSignedList = computed(() => document_list.value.filter((doc: DocumentItem) => doc.signed === false || doc.signed === null));
|
|
44
44
|
const document_list = computed(() =>
|
|
45
|
-
object_list.value.filter(obj => {
|
|
45
|
+
object_list.value.filter((obj: DocumentItem) => {
|
|
46
46
|
if (obj.fileTypeCode === '19' || obj.fileTypeCode === '5') {
|
|
47
47
|
return obj;
|
|
48
48
|
}
|
|
@@ -540,7 +540,7 @@
|
|
|
540
540
|
|
|
541
541
|
<script lang="ts">
|
|
542
542
|
import { LocationQueryValue } from 'vue-router';
|
|
543
|
-
import { Value, DocumentItem, Member } from '
|
|
543
|
+
import { Value, DocumentItem, Member } from '../../composables/classes';
|
|
544
544
|
import { uuid } from 'vue-uuid';
|
|
545
545
|
|
|
546
546
|
export default {
|
|
@@ -1187,7 +1187,7 @@ export default {
|
|
|
1187
1187
|
if (dataStore.members.beneficiaryApp.isMultiple) {
|
|
1188
1188
|
const availablePercentage =
|
|
1189
1189
|
100 -
|
|
1190
|
-
formStore.beneficiaryForm.reduce((sum, member) => {
|
|
1190
|
+
formStore.beneficiaryForm.reduce((sum: number, member: Member) => {
|
|
1191
1191
|
return sum + Number(member.percentageOfPayoutAmount);
|
|
1192
1192
|
}, 0);
|
|
1193
1193
|
if (availablePercentage >= 0 && availablePercentage <= 100) member.value.percentageOfPayoutAmount = availablePercentage;
|
|
@@ -348,7 +348,7 @@
|
|
|
348
348
|
</template>
|
|
349
349
|
|
|
350
350
|
<script lang="ts">
|
|
351
|
-
import { Value } from '
|
|
351
|
+
import { Member, Value } from '../../composables/classes';
|
|
352
352
|
|
|
353
353
|
export default defineComponent({
|
|
354
354
|
props: {
|
|
@@ -606,11 +606,14 @@ export default defineComponent({
|
|
|
606
606
|
};
|
|
607
607
|
|
|
608
608
|
const onInputInsurancePremiumPerMonth = (event: Event) => {
|
|
609
|
-
if (event.target && 'value' in event.target && event.target.value
|
|
609
|
+
if (event.target && 'value' in event.target && event.target.value) {
|
|
610
|
+
whichSum.value = 'insurancePremiumPerMonth';
|
|
610
611
|
const calculatedPremiumDollar = getNumber(event.target.value as string);
|
|
611
612
|
if (calculatedPremiumDollar) {
|
|
612
613
|
productConditionsForm.insurancePremiumPerMonth = dataStore.getNumberWithSpaces(productConditionsForm.insurancePremiumPerMonth);
|
|
613
|
-
|
|
614
|
+
if (whichProduct.value === 'halykkazyna') {
|
|
615
|
+
productConditionsForm.insurancePremiumPerMonthInDollar = dataStore.getNumberWithSpaces(calculatedPremiumDollar / dataStore.currencies.usd);
|
|
616
|
+
}
|
|
614
617
|
}
|
|
615
618
|
}
|
|
616
619
|
};
|
|
@@ -627,11 +630,14 @@ export default defineComponent({
|
|
|
627
630
|
};
|
|
628
631
|
|
|
629
632
|
const onInputSum = (event: Event) => {
|
|
630
|
-
if (event.target && 'value' in event.target && event.target.value
|
|
633
|
+
if (event.target && 'value' in event.target && event.target.value) {
|
|
634
|
+
whichSum.value = 'requestedSumInsured';
|
|
631
635
|
const calculatedSumDollar = getNumber(event.target.value as string);
|
|
632
636
|
if (calculatedSumDollar) {
|
|
633
637
|
productConditionsForm.requestedSumInsured = dataStore.getNumberWithSpaces(productConditionsForm.requestedSumInsured);
|
|
634
|
-
|
|
638
|
+
if (whichProduct.value === 'halykkazyna') {
|
|
639
|
+
productConditionsForm.requestedSumInsuredInDollar = dataStore.getNumberWithSpaces(calculatedSumDollar / dataStore.currencies.usd);
|
|
640
|
+
}
|
|
635
641
|
}
|
|
636
642
|
}
|
|
637
643
|
};
|
|
@@ -677,7 +683,7 @@ export default defineComponent({
|
|
|
677
683
|
|
|
678
684
|
const filterTermConditions = (term: AddCover) => {
|
|
679
685
|
if (term.coverTypeCode === 10) {
|
|
680
|
-
return !!formStore.insuredForm.find(member => member.iin === formStore.policyholderForm.iin) === false;
|
|
686
|
+
return !!formStore.insuredForm.find((member: Member) => member.iin === formStore.policyholderForm.iin) === false;
|
|
681
687
|
}
|
|
682
688
|
return true;
|
|
683
689
|
};
|
|
@@ -687,9 +693,15 @@ export default defineComponent({
|
|
|
687
693
|
if (v.valid) {
|
|
688
694
|
if (whichSum.value === 'requestedSumInsured') {
|
|
689
695
|
productConditionsForm.insurancePremiumPerMonth = null;
|
|
696
|
+
if (whichProduct.value === 'halykkazyna') {
|
|
697
|
+
productConditionsForm.insurancePremiumPerMonthInDollar = null;
|
|
698
|
+
}
|
|
690
699
|
}
|
|
691
700
|
if (whichSum.value === 'insurancePremiumPerMonth') {
|
|
692
701
|
productConditionsForm.requestedSumInsured = null;
|
|
702
|
+
if (whichProduct.value === 'halykkazyna') {
|
|
703
|
+
productConditionsForm.requestedSumInsuredInDollar = null;
|
|
704
|
+
}
|
|
693
705
|
}
|
|
694
706
|
if (productConditionsForm.requestedSumInsured !== '' && productConditionsForm.requestedSumInsured != null) {
|
|
695
707
|
productConditionsForm.insurancePremiumPerMonth = null;
|
|
@@ -825,26 +837,6 @@ export default defineComponent({
|
|
|
825
837
|
}
|
|
826
838
|
});
|
|
827
839
|
|
|
828
|
-
watch(
|
|
829
|
-
() => productConditionsForm.requestedSumInsured,
|
|
830
|
-
val => {
|
|
831
|
-
if (!val && whichSum.value == 'requestedSumInsured') whichSum.value = '';
|
|
832
|
-
if (val && whichSum.value != 'insurancePremiumPerMonth') {
|
|
833
|
-
whichSum.value = 'requestedSumInsured';
|
|
834
|
-
productConditionsForm.requestedSumInsured = dataStore.getNumberWithSpaces(val);
|
|
835
|
-
}
|
|
836
|
-
},
|
|
837
|
-
);
|
|
838
|
-
watch(
|
|
839
|
-
() => productConditionsForm.insurancePremiumPerMonth,
|
|
840
|
-
val => {
|
|
841
|
-
if (!val && whichSum.value == 'insurancePremiumPerMonth') whichSum.value = '';
|
|
842
|
-
if (val && whichSum.value != 'requestedSumInsured') {
|
|
843
|
-
whichSum.value = 'insurancePremiumPerMonth';
|
|
844
|
-
productConditionsForm.insurancePremiumPerMonth = dataStore.getNumberWithSpaces(val);
|
|
845
|
-
}
|
|
846
|
-
},
|
|
847
|
-
);
|
|
848
840
|
watch(
|
|
849
841
|
() => productConditionsForm.amountOfInsurancePremium,
|
|
850
842
|
val => {
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
</template>
|
|
113
113
|
|
|
114
114
|
<script lang="ts">
|
|
115
|
+
import { DocumentItem } from '../../composables/classes';
|
|
115
116
|
export default defineComponent({
|
|
116
117
|
setup() {
|
|
117
118
|
const route = useRoute();
|
|
@@ -124,7 +125,7 @@ export default defineComponent({
|
|
|
124
125
|
const phoneNumber = ref<string | null>(formStore.policyholderForm.phoneNumber ?? '');
|
|
125
126
|
const selectedClient = ref<SignUrlType>();
|
|
126
127
|
const documentDict = computed(() => dataStore.dicFileTypeList.find(i => i.nameRu === 'Решение АС'));
|
|
127
|
-
const affiliationDocument = computed(() => formStore.signedDocumentList.find(file => file.fileTypeName === 'Решение АС'));
|
|
128
|
+
const affiliationDocument = computed(() => formStore.signedDocumentList.find((file: DocumentItem) => file.fileTypeName === 'Решение АС'));
|
|
128
129
|
const affiliationData = ref<{
|
|
129
130
|
processInstanceId: string | number;
|
|
130
131
|
fileTypeId: string | number | null;
|
package/composables/axios.ts
CHANGED
package/composables/index.ts
CHANGED
|
@@ -3,6 +3,25 @@ import jwt_decode from 'jwt-decode';
|
|
|
3
3
|
import { XMLParser } from 'fast-xml-parser';
|
|
4
4
|
import { AxiosError } from 'axios';
|
|
5
5
|
|
|
6
|
+
export const getBaseCredentials = () => {
|
|
7
|
+
return {
|
|
8
|
+
production: { login: '', password: '' },
|
|
9
|
+
test: { login: '', password: '' },
|
|
10
|
+
development: { login: 'manager', password: 'asdqwe123' },
|
|
11
|
+
vercel: { login: '', password: 'asdqwe123' },
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export const useEnv = () => {
|
|
16
|
+
return {
|
|
17
|
+
envMode: import.meta.env.VITE_MODE,
|
|
18
|
+
isDev: import.meta.env.VITE_MODE === 'development',
|
|
19
|
+
isTest: import.meta.env.VITE_MODE === 'test',
|
|
20
|
+
isVercel: import.meta.env.VITE_MODE === 'vercel',
|
|
21
|
+
isProduction: import.meta.env.VITE_MODE === 'production',
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
|
|
6
25
|
export class Masks {
|
|
7
26
|
numbers: string = '#*';
|
|
8
27
|
otp: string = '# # # #';
|
package/configs/i18n.ts
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
import { createI18n } from 'vue-i18n';
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import kz from '@/locales/kz.json';
|
|
2
|
+
import ru from '../locales/ru.json';
|
|
3
|
+
import kz from '../locales/kz.json';
|
|
5
4
|
|
|
6
5
|
const instance = createI18n({
|
|
7
6
|
legacy: false,
|
|
8
7
|
globalInjection: true,
|
|
9
8
|
locale: 'ru',
|
|
10
9
|
messages: {
|
|
11
|
-
en,
|
|
12
10
|
ru,
|
|
13
11
|
kz,
|
|
14
12
|
},
|
package/layouts/default.vue
CHANGED
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hl-core",
|
|
3
|
-
"version": "0.0.8-beta.
|
|
3
|
+
"version": "0.0.8-beta.38",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "nuxt.config.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build": "nuxt build",
|
|
28
|
-
"dev": "nuxt
|
|
28
|
+
"dev": "nuxt dev",
|
|
29
29
|
"generate": "nuxt generate",
|
|
30
30
|
"preview": "nuxt preview",
|
|
31
31
|
"update:core": "git checkout -b %npm_package_version% && git add . && git commit -m \"%npm_package_version%\" && git push && git checkout main",
|
|
@@ -53,8 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@nuxt/devtools": "^0.4.5",
|
|
56
|
-
"
|
|
57
|
-
"nuxt": "^3.5.3",
|
|
56
|
+
"nuxt": "^3.6.2",
|
|
58
57
|
"prettier": "^2.8.8"
|
|
59
58
|
},
|
|
60
59
|
"dependencies": {
|
|
@@ -5,7 +5,7 @@ import VueDatePicker from '@vuepic/vue-datepicker';
|
|
|
5
5
|
import '@vuepic/vue-datepicker/dist/main.css';
|
|
6
6
|
import Vidle from 'v-idle-3';
|
|
7
7
|
import Maska from 'maska';
|
|
8
|
-
import i18n from '
|
|
8
|
+
import i18n from '../configs/i18n';
|
|
9
9
|
|
|
10
10
|
export default defineNuxtPlugin(nuxtApp => {
|
|
11
11
|
//@ts-ignore
|
package/store/data.store.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { defineStore } from 'pinia';
|
|
2
2
|
import { rules } from './rules';
|
|
3
|
-
import { i18n } from '
|
|
3
|
+
import { i18n } from '../configs/i18n';
|
|
4
4
|
import { Toast, Types, Positions, ToastOptions } from './toast';
|
|
5
5
|
import { isValidGUID, yearEnding, jwtDecode, ErrorHandler, getKeyWithPattern, getNumber, getAgeByBirthDate } from '../composables';
|
|
6
6
|
import { DataStoreClass, Contragent } from '../composables/classes';
|
|
7
|
-
import { ApiClass } from '
|
|
7
|
+
import { ApiClass } from '../api';
|
|
8
8
|
import { useFormStore } from './form.store';
|
|
9
9
|
|
|
10
10
|
export const useDataStore = defineStore('data', {
|
package/store/form.store.ts
CHANGED
package/store/member.store.ts
CHANGED
|
@@ -28,12 +28,12 @@ export const useMemberStore = defineStore('members', {
|
|
|
28
28
|
return true;
|
|
29
29
|
},
|
|
30
30
|
hasMemberData(whichForm: MemberKeys, whichIndex?: number, key: string = 'id', emptyValue: any = 0) {
|
|
31
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
31
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
32
32
|
return typeof whichIndex === 'number' ? this.formStore[whichForm][whichIndex][key] != emptyValue : this.formStore[whichForm][key] != emptyValue;
|
|
33
33
|
},
|
|
34
34
|
canMemberCleared(whichForm: MemberKeys, whichIndex?: number) {
|
|
35
35
|
if (!whichForm) return false;
|
|
36
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
36
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
37
37
|
if (typeof whichIndex === 'number') {
|
|
38
38
|
return this.formStore[whichForm][whichIndex].id === 0 && (!!this.formStore[whichForm][whichIndex].iin || !!this.formStore[whichForm][whichIndex].phoneNumber);
|
|
39
39
|
} else {
|
|
@@ -42,7 +42,7 @@ export const useMemberStore = defineStore('members', {
|
|
|
42
42
|
},
|
|
43
43
|
canMemberDeleted(whichForm: MemberKeys, whichIndex?: number) {
|
|
44
44
|
if (!whichForm) return false;
|
|
45
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
45
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
46
46
|
if (typeof whichIndex === 'number') {
|
|
47
47
|
if (whichIndex > 0) {
|
|
48
48
|
return true;
|
|
@@ -142,7 +142,7 @@ export const useMemberStore = defineStore('members', {
|
|
|
142
142
|
},
|
|
143
143
|
clearMember(whichForm: MemberKeys, whichIndex?: number) {
|
|
144
144
|
if (!whichForm) return false;
|
|
145
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
145
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
146
146
|
if (whichForm === this.formStore.policyholderFormKey || whichForm === this.formStore.policyholdersRepresentativeFormKey) {
|
|
147
147
|
//@ts-ignore
|
|
148
148
|
this.formStore[whichForm] = this.getMemberClass(whichForm);
|
|
@@ -158,7 +158,7 @@ export const useMemberStore = defineStore('members', {
|
|
|
158
158
|
},
|
|
159
159
|
async deleteMember(taskId: string, whichForm: MemberKeys, whichIndex?: number, refetch: boolean = true) {
|
|
160
160
|
if (!whichForm) return false;
|
|
161
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
161
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
162
162
|
try {
|
|
163
163
|
const memberCode = this.getMemberCode(whichForm);
|
|
164
164
|
const memberData = this.getMemberFromApplication(whichForm, whichIndex);
|
|
@@ -267,7 +267,7 @@ export const useMemberStore = defineStore('members', {
|
|
|
267
267
|
},
|
|
268
268
|
addMember(whichForm: MemberKeys) {
|
|
269
269
|
if (!whichForm) return false;
|
|
270
|
-
if (!this.isStatementEditible(whichForm)) return false;
|
|
270
|
+
if (!this.isStatementEditible(whichForm as string)) return false;
|
|
271
271
|
const limit = this.dataStore.members[this.getMemberApplicationCode(whichForm)!].limit;
|
|
272
272
|
if (typeof limit === 'number') {
|
|
273
273
|
if (this.formStore[whichForm].length < limit) {
|
package/store/rules.js
CHANGED
package/types/env.d.ts
ADDED
package/types/index.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export {};
|
|
2
2
|
|
|
3
3
|
declare global {
|
|
4
|
+
type EnvModes = 'development' | 'test' | 'vercel' | 'production';
|
|
5
|
+
type Projects = 'aml' | 'baiterek' | 'bolashak' | 'calculator' | 'compliance' | 'efo' | 'gons' | 'halykkazyna' | 'liferenta' | 'lifetrip' | 'lka' | 'mycar';
|
|
4
6
|
type MemberKeys = keyof ReturnType<typeof useFormStore>;
|
|
5
7
|
type MemberFormTypes = 'policyholderForm' | 'insuredForm' | 'beneficiaryForm' | 'beneficialOwnerForm' | 'policyholdersRepresentativeForm' | 'productConditionsForm';
|
|
6
8
|
type PanelTypes = 'settings' | 'panel';
|
package/locales/en.json
DELETED
|
@@ -1,584 +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
|
-
"membersLimit": "The number of these members has been exceeded. The limit is: {text}",
|
|
25
|
-
"hasAlreadyMember": "Member with such IIN is already in statement",
|
|
26
|
-
"noIinOrPhone": "Missing data to send SMS",
|
|
27
|
-
"ESBDErrorMessage": "Incorrect data entered for this IIN",
|
|
28
|
-
"phoneNotFoundInBMG": "Enter a number registered in BMG or register the contragent in BMG",
|
|
29
|
-
"errorSumOrPercentage": "The percentage of payout amount cannot be less than or greater than 100",
|
|
30
|
-
"fileWasDeleted": "File successfully deleted",
|
|
31
|
-
"attachManagerError": "Attach the request to the manager",
|
|
32
|
-
"viewErrorText": "You are currently in view mode or do not have access",
|
|
33
|
-
"editModeText": "You have switched to edit mode",
|
|
34
|
-
"viewModeText": "You have switched to view mode",
|
|
35
|
-
"noEditText": "You do not have access to edit",
|
|
36
|
-
"noDeleteText": "You do not have access to delete",
|
|
37
|
-
"notFound": "No matches found",
|
|
38
|
-
"notFoundUser": "No matches found",
|
|
39
|
-
"successSaved": "Data successfully saved",
|
|
40
|
-
"hasAlreadyStatement": "There is already a pending application for this IIN",
|
|
41
|
-
"successStatementCreation": "Application successfully created",
|
|
42
|
-
"deletedMember": "Member deleted successfully",
|
|
43
|
-
"undefinedError": "Something went wrong",
|
|
44
|
-
"noProductPermission": "You do not have access to this product",
|
|
45
|
-
"noStatementPermission": "You do not have access to this application",
|
|
46
|
-
"formFieldEmptyWarning": "You need to fill in some fields and save the member",
|
|
47
|
-
"needToRunStatement": "You need to create an application",
|
|
48
|
-
"shouldBeOneInsured": "You cannot delete the only insured person",
|
|
49
|
-
"readyStatementMembers": "Data of all members saved successfully",
|
|
50
|
-
"successRecalculation": "Recalculation done successfully",
|
|
51
|
-
"dataHasNotChanged": "Data has not been changed",
|
|
52
|
-
"calculated": "Calculation completed",
|
|
53
|
-
"copiedSuccessfully": "Link successfully copied",
|
|
54
|
-
"smsSendSuccessfully": "SMS successfully sent",
|
|
55
|
-
"errorFormField": "Fill in the field: {text}",
|
|
56
|
-
"fillFormFieldError": "You need to fill in the {text} data",
|
|
57
|
-
"fillOneFieldError": "You need to fill in at least one of the {text} fields",
|
|
58
|
-
"notSavedMember": "You need to save the current {text} data",
|
|
59
|
-
"copied": "Copied",
|
|
60
|
-
"clientNotFound": "Contragent with this IIN not found",
|
|
61
|
-
"needCalculate": "You need to calculate the insurance premium",
|
|
62
|
-
"incorrectInput": "The value entered is incorrect",
|
|
63
|
-
"error": "An error occurred",
|
|
64
|
-
"applicationDeleted": "Application deleted",
|
|
65
|
-
"emptyProductConditions": "Product and calculation conditions data are not filled in",
|
|
66
|
-
"emptyHealthAnketa": "Health questionnaire data for the Insured is not filled in",
|
|
67
|
-
"emptyHealthAnketaPolicyholder": "Health questionnaire data for the Policyholder is not filled in",
|
|
68
|
-
"emptyCriticalAnketa": "Critical illness questionnaire data is not filled in",
|
|
69
|
-
"successOperation": "Operation completed successfully",
|
|
70
|
-
"noAssignee": "You need to take the task in progress",
|
|
71
|
-
"canDoOnlyAssignee": "Task is in progress and you do not have access",
|
|
72
|
-
"successDataClear": "Data successfully cleared",
|
|
73
|
-
"noTasksForYou": "The list of tasks assigned to your role is empty",
|
|
74
|
-
"youCanNotStartApplication": "You do not have access to start the application",
|
|
75
|
-
"hasNewApplicationState": "Outdated application",
|
|
76
|
-
"reloadEverySeconds": "Refresh can be done every {text} seconds",
|
|
77
|
-
"successReload": "Refreshed",
|
|
78
|
-
"sendEverySeconds": "SMS can be sent every {text} seconds",
|
|
79
|
-
"waitForClient": "Awaiting contragent confirmation",
|
|
80
|
-
"noSuchProduct": "Error when navigating: incorrect link",
|
|
81
|
-
"affiliationDocumentNotUploaded": "File not attached in the underwriting board decision",
|
|
82
|
-
"documentNumberWasNotFilled": "Document number and date were not filled",
|
|
83
|
-
"valueShouldBeHigher": "The value should be higher than {text} percent",
|
|
84
|
-
"valueShouldBeBetween": "The value should be between {floor} and {ceil} percent",
|
|
85
|
-
"needAgreement": "You need to obtain contragent's consent",
|
|
86
|
-
"successOtp": "Confirmation code sent successfully",
|
|
87
|
-
"hasSuccessOtp": "Contragent has already provided consent",
|
|
88
|
-
"tokenExpire": "Waiting time has expired",
|
|
89
|
-
"requiredBeneficiary": "You need to specify beneficiary's data",
|
|
90
|
-
"requiredInsured": "You need to specify insured person's data",
|
|
91
|
-
"needToRecalculate": "You need to recalculate the product conditions",
|
|
92
|
-
"noUrl": "No link available",
|
|
93
|
-
"pickFamilyMember": "Pick a family member",
|
|
94
|
-
"numberRegistered": "Регистрационный номер успешно записан в реестр",
|
|
95
|
-
"requiredMember": "В заявке должен присутствовать {text}",
|
|
96
|
-
"client": "страхователь",
|
|
97
|
-
"insured": "застрахованный",
|
|
98
|
-
"beneficiary": "выгодоприобретатель",
|
|
99
|
-
"beneficialOwner": "бенефициарный собственник",
|
|
100
|
-
"spokesman": "представитель страхователя",
|
|
101
|
-
"noPermission": "You have no permission on {text}",
|
|
102
|
-
"courseChanged": "The exchange rate of the NB RK has changed, it is necessary to return it for revision and make a recalculation"
|
|
103
|
-
},
|
|
104
|
-
"buttons": {
|
|
105
|
-
"dataInput": "Input",
|
|
106
|
-
"createStatement": "Create Statement",
|
|
107
|
-
"add": "Add",
|
|
108
|
-
"userLogin": "Login",
|
|
109
|
-
"password": "Password",
|
|
110
|
-
"login": "Log in",
|
|
111
|
-
"exit": "Exit",
|
|
112
|
-
"logout": "Log out",
|
|
113
|
-
"save": "Save",
|
|
114
|
-
"back": "Back",
|
|
115
|
-
"sign": "Sign",
|
|
116
|
-
"toApprove": "Send for Approval",
|
|
117
|
-
"calculate": "Calculate",
|
|
118
|
-
"return": "Return",
|
|
119
|
-
"create": "Create",
|
|
120
|
-
"becomeAgent": "Become an Agent",
|
|
121
|
-
"close": "Close",
|
|
122
|
-
"reload": "Refresh",
|
|
123
|
-
"makeIssueInvoice": "Create Invoice",
|
|
124
|
-
"open": "Open",
|
|
125
|
-
"edit": "Edit",
|
|
126
|
-
"editApplication": "Edit Application",
|
|
127
|
-
"cancel": "Cancel",
|
|
128
|
-
"cancelApplication": "Cancel Application",
|
|
129
|
-
"viewApplication": "View Application",
|
|
130
|
-
"approve": "Approve",
|
|
131
|
-
"rejectStatement": "Reject",
|
|
132
|
-
"returnStatement": "Return for Revision",
|
|
133
|
-
"claimTask": "Claim Task",
|
|
134
|
-
"InsuranceContract": "Insurance Contract",
|
|
135
|
-
"PaymentSchedule": "Payment Schedule",
|
|
136
|
-
"clear": "Clear Data",
|
|
137
|
-
"delete": "Delete",
|
|
138
|
-
"deleteMember": "Delete Member",
|
|
139
|
-
"enterData": "Enter Data",
|
|
140
|
-
"viewMode": "Switch to View Mode",
|
|
141
|
-
"view": "View",
|
|
142
|
-
"recalculate": "Recalculate",
|
|
143
|
-
"createInvoice": "Create Invoice",
|
|
144
|
-
"fromInsis": "From INSIS Information System",
|
|
145
|
-
"fromGBDFL": "From State Database of Individuals",
|
|
146
|
-
"fromGKB": "Data on the Policyholder's child",
|
|
147
|
-
"sendSMS": "Send SMS",
|
|
148
|
-
"sendOtp": "Send OTP",
|
|
149
|
-
"check": "Check",
|
|
150
|
-
"toPayment": "Go to Payment",
|
|
151
|
-
"calcSum": "Calculate Sum",
|
|
152
|
-
"calcPremium": "Calculate Premium",
|
|
153
|
-
"accept": "Approve",
|
|
154
|
-
"reject": "Reject",
|
|
155
|
-
"pay": "Pay",
|
|
156
|
-
"register": "Registration reestr number",
|
|
157
|
-
"send": "Send",
|
|
158
|
-
"toStatement": "Continue checkout",
|
|
159
|
-
"affiliate": "Attach Underwriter CD",
|
|
160
|
-
"more": "More",
|
|
161
|
-
"reset": "Reset"
|
|
162
|
-
},
|
|
163
|
-
"dialog": {
|
|
164
|
-
"title": "Confirmation",
|
|
165
|
-
"exit": "Are you sure you want to exit?",
|
|
166
|
-
"exitApp": "Are you sure you want to exit? Data will be cleared.",
|
|
167
|
-
"dataWillClear": "Data will be cleared",
|
|
168
|
-
"cancel": "Are you sure you want to cancel the application?",
|
|
169
|
-
"clear": "Are you sure you want to clear the participant's data?",
|
|
170
|
-
"delete": "Are you sure you want to delete the participant?",
|
|
171
|
-
"sent": "Link has been sent",
|
|
172
|
-
"sentText": "Link has been sent to number {phoneNumber}. Can be resent in {minutes}:{seconds} seconds",
|
|
173
|
-
"sentSMS": "SMS has been sent",
|
|
174
|
-
"sentTextSMS": "SMS has been sent to number {phoneNumber}. Can be resent in {minutes}:{seconds} seconds",
|
|
175
|
-
"deleteFile": "Are you sure you want to delete the file?",
|
|
176
|
-
"continue": "Continue",
|
|
177
|
-
"correctSum": "Is the insurance premium amount correct?",
|
|
178
|
-
"sign": "Are you sure you want to sign?",
|
|
179
|
-
"pay": "Are you sure you want to pay?",
|
|
180
|
-
"familyMember": "Pick family member",
|
|
181
|
-
"register": "Вы действительно хотите добавить в реестр данного ребенка?",
|
|
182
|
-
"toApprove": "Are you sure you want to send to approve?",
|
|
183
|
-
"affiliate": "Вы действительно хотите добавить решение андеррайтингового совета?"
|
|
184
|
-
},
|
|
185
|
-
"sign": {
|
|
186
|
-
"chooseDoc": "Choose documents to sign",
|
|
187
|
-
"signed": "Signed with digital signature",
|
|
188
|
-
"chooseMethod": "Choose signing method",
|
|
189
|
-
"downloadDoc": "Download document for signing",
|
|
190
|
-
"downloadSignedDoc": "Download Signed Document",
|
|
191
|
-
"signPaper": "Sign on paper",
|
|
192
|
-
"recipientNumber": "Recipient's phone number",
|
|
193
|
-
"signCloud": "Sign via cloud digital signature",
|
|
194
|
-
"copyCloud": "Copy link for cloud digital signature",
|
|
195
|
-
"codeSendNumber": "Code sent to number:",
|
|
196
|
-
"codeFromSMS": "Code from SMS",
|
|
197
|
-
"signEgov": "Sign with eGov mobile",
|
|
198
|
-
"showQR": "Show QR code",
|
|
199
|
-
"timer": "You have created an invoice, it will become inactive in 00:59 seconds"
|
|
200
|
-
},
|
|
201
|
-
"questionnaireType": {
|
|
202
|
-
"byHealth": "Health questionnaire for the Insured",
|
|
203
|
-
"byCritical": "Critical illness questionnaire for the Insured",
|
|
204
|
-
"answerAllNo": "Answer No to all",
|
|
205
|
-
"pleaseAnswer": "Please answer {text} questions"
|
|
206
|
-
},
|
|
207
|
-
"questionnaireHealth": "Health questionnaire for the Insured",
|
|
208
|
-
"chooseAll": "Select all",
|
|
209
|
-
"statement": "Statement",
|
|
210
|
-
"childInfo": "Child info",
|
|
211
|
-
"policyholderForm": "Policyholder",
|
|
212
|
-
"policyholderAndInsured": "Insured / Policyholder",
|
|
213
|
-
"policyholderAndInsuredSame": "Insured / Policyholder are the same person",
|
|
214
|
-
"insuredForm": "Insured",
|
|
215
|
-
"beneficiaryForm": "Beneficiary",
|
|
216
|
-
"beneficialOwnerForm": "Beneficial Owner",
|
|
217
|
-
"policyholdersRepresentativeForm": "Policyholder's Representative",
|
|
218
|
-
"productConditions": "Product Conditions and Calculations",
|
|
219
|
-
"underwriterDecision": "Underwriter's Decision",
|
|
220
|
-
"recalculationInfo": "Data for recalculation",
|
|
221
|
-
"generalConditions": "General Insurance Conditions",
|
|
222
|
-
"isPolicyholderInsured": "Is the policyholder also insured?",
|
|
223
|
-
"isPolicyholderIPDL": "Does the Insured / Policyholder or their family members and close relatives belong to and/or have connections to a foreign public official?",
|
|
224
|
-
"isMemberIPDL": "Indication of belonging to and/or connections to a public official, their spouse, and close relatives?",
|
|
225
|
-
"isPolicyholderBeneficiary": "Is the policyholder also the beneficiary?",
|
|
226
|
-
"hasRepresentative": "Is the contract signed by a representative?",
|
|
227
|
-
"isActOwnBehalf": "Is the contragent acting on their own behalf and in their own interests?",
|
|
228
|
-
"coverPeriod": "Coverage Period",
|
|
229
|
-
"requestedSumInsured": "Requested Sum Insured",
|
|
230
|
-
"insurancePremiumPerMonth": "Insurance Premium per Month",
|
|
231
|
-
"noStatementCalculator": "Cost calculator without entering data",
|
|
232
|
-
"calculator": "Calculator",
|
|
233
|
-
"agreement": "Agreement",
|
|
234
|
-
"clientsStatement": "Contragent's Statement",
|
|
235
|
-
"document": "Document",
|
|
236
|
-
"documents": "Documents",
|
|
237
|
-
"invoiceData": "Payment info",
|
|
238
|
-
"statementAndSurvey": "Statement and Questionnaire",
|
|
239
|
-
"underwriterDecisionDocument": "",
|
|
240
|
-
"clientsCard": "Contragent Card",
|
|
241
|
-
"insuranceProduct": "Insurance Product",
|
|
242
|
-
"historyStatementsAndStatuses": "Application History and Statuses",
|
|
243
|
-
"applicationNumber": "Application Number: ",
|
|
244
|
-
"operationList": "Operation List",
|
|
245
|
-
"payCalendar": "Payment Calendar",
|
|
246
|
-
"signedDoc": "Signed Document (Bayterek project)",
|
|
247
|
-
"percent": "Percent ",
|
|
248
|
-
"chooseSource": "Choose data source",
|
|
249
|
-
"sumAndPremium": "Insurance Premium {paymentPeriod}: {insurancePremiumPerMonth}₸\nRequested Sum Insured: {requestedSumInsured}₸",
|
|
250
|
-
"recalculation": "Recalculation",
|
|
251
|
-
"survey": "Questionnaire",
|
|
252
|
-
"calculationAnnuityPayments": "Calculation of annuity payments",
|
|
253
|
-
"productConditionsForm": {
|
|
254
|
-
"coverPeriod": "Insurance Period",
|
|
255
|
-
"payPeriod": "Insurance Premium Payment Period",
|
|
256
|
-
"processIndexRate": "Requested indexation rate (from 3% to 7%)",
|
|
257
|
-
"processPaymentPeriod": "Frequency of insurance premium payment:",
|
|
258
|
-
"requestedSumInsured": "Insurance Amount",
|
|
259
|
-
"requestedSumInsuredInTenge": "Insurance Amount in tenge",
|
|
260
|
-
"requestedSumInsuredInDollar": "Insurance Amount in dollars",
|
|
261
|
-
"sumInsured": "Insurance Amount",
|
|
262
|
-
"insurancePremiumPerMonth": "Insurance Premium",
|
|
263
|
-
"hint": "The amount is calculated automatically",
|
|
264
|
-
"additional": "Additional Insurance Conditions",
|
|
265
|
-
"possibilityToChange": "Possibility to change the insurance amount and premiums (indexation)",
|
|
266
|
-
"conditions": "Insurance Premium Payment Conditions",
|
|
267
|
-
"processTariff": "Tariff",
|
|
268
|
-
"riskGroup": "Risk Group",
|
|
269
|
-
"requestedProductConditions": "Requested Insurance Conditions",
|
|
270
|
-
"coverPeriodFrom3to20": "Insurance Period (from 3 to 20 years)",
|
|
271
|
-
"insurancePremiumAmount": "Insurance Premium Amount in tenge",
|
|
272
|
-
"insurancePremiumAmountInDollar": "Amount of the Insurance premium (insurance fee) in dollars",
|
|
273
|
-
"coverPeriodFrom2to20": "Cover Period (from 2y to 20y)",
|
|
274
|
-
"dollarExchangeRateNBRK": "NBRK dollar exchange rate",
|
|
275
|
-
"contractDate": "Contract date",
|
|
276
|
-
"guaranteedTermAnnuityPayments": "Guaranteed term of annuity payments",
|
|
277
|
-
"guaranteedPeriod": "Specify the period of the guaranteed period",
|
|
278
|
-
"typeAnnuityInsurance": "Requested type of annuity insurance",
|
|
279
|
-
"termAnnuityPayments": "Requested term of annuity payments",
|
|
280
|
-
"periodAnnuityPayment": "Requested annuity payment period",
|
|
281
|
-
"amountAnnuityPayments": "The requested amount of annuity payments"
|
|
282
|
-
},
|
|
283
|
-
"history": {
|
|
284
|
-
"addRegNumber": "Number",
|
|
285
|
-
"number": "Application Number",
|
|
286
|
-
"iin": "IIN",
|
|
287
|
-
"client": "Client",
|
|
288
|
-
"contragent": "Contrangent",
|
|
289
|
-
"product": "Product",
|
|
290
|
-
"status": "Application Status",
|
|
291
|
-
"assignee": "Assignee",
|
|
292
|
-
"initiator": "Initiator",
|
|
293
|
-
"reason": "Reason",
|
|
294
|
-
"dateCreated": "Start Date",
|
|
295
|
-
"factEndDate": "Completion Date",
|
|
296
|
-
"decision": "Status",
|
|
297
|
-
"userFullName": "Assignee"
|
|
298
|
-
},
|
|
299
|
-
"agent": {
|
|
300
|
-
"menu": "Меню",
|
|
301
|
-
"main": "Главное",
|
|
302
|
-
"reports": "Отчеты",
|
|
303
|
-
"report": "Отчет",
|
|
304
|
-
"notifications": "Уведомления",
|
|
305
|
-
"support": "Тех. поддержка",
|
|
306
|
-
"agentsInfo": "Сведения о страховых агентах",
|
|
307
|
-
"info": "Данные об агенте",
|
|
308
|
-
"about": "Сведения об Агенте",
|
|
309
|
-
"level": "Уровень",
|
|
310
|
-
"subAgents": "Суб-агенты",
|
|
311
|
-
"done": "Оформлено договоров",
|
|
312
|
-
"myContracts": "Оформлено договоров",
|
|
313
|
-
"nextLevel": "Следующий уровень {text}",
|
|
314
|
-
"leftMy": "Осталось оформить лично",
|
|
315
|
-
"leftAll": "Осталось оформить всего",
|
|
316
|
-
"donePolicies": "Оформлено полисов",
|
|
317
|
-
"successStat": "Статистика успешных сделок",
|
|
318
|
-
"doneMy": "Оформлено лично",
|
|
319
|
-
"doneAll": "Всего оформлено",
|
|
320
|
-
"progressAll": "Прогресс за все время работы",
|
|
321
|
-
"subagentsCalled": "Привлечено суб-агентов",
|
|
322
|
-
"myActivity": "Моя активность",
|
|
323
|
-
"teamActivity": "Активность команды",
|
|
324
|
-
"careerUp": "Карьерная лестница",
|
|
325
|
-
"direction": "Дирекция",
|
|
326
|
-
"leader": "Руководитель",
|
|
327
|
-
"agentic": "Агенство",
|
|
328
|
-
"agentCurator": "Куратор агента",
|
|
329
|
-
"agentId": "ID агента",
|
|
330
|
-
"reportType": "Тип отчета",
|
|
331
|
-
"reportFile": "Файл отчета",
|
|
332
|
-
"reportDate": "Отчетная дата",
|
|
333
|
-
"paymentJournal": "Журнал оплаты",
|
|
334
|
-
"journal": {
|
|
335
|
-
"incomeKz": "Приходы KZT",
|
|
336
|
-
"outcomeKz": "Расходы KZT",
|
|
337
|
-
"leftKz": "Остаток KZT",
|
|
338
|
-
"description": "Описание",
|
|
339
|
-
"delayMonth": "Месяц просрочки"
|
|
340
|
-
},
|
|
341
|
-
"unallocatedPayments": "Нераспределенные платежи",
|
|
342
|
-
"unallocation": {
|
|
343
|
-
"paymentId": "ID платежа",
|
|
344
|
-
"voucherNumber": "Номер ваучера",
|
|
345
|
-
"voucherDate": "Дата ваучера",
|
|
346
|
-
"voucherStatus": "Статус ваучера"
|
|
347
|
-
},
|
|
348
|
-
"unpaidPremiums": "Неоплаченные премии",
|
|
349
|
-
"unpaidDelay": "Просрочка",
|
|
350
|
-
"reportText": {
|
|
351
|
-
"reward": "Награда",
|
|
352
|
-
"cuWith": "Общие единицы с",
|
|
353
|
-
"cuBy": "Общие единицы по",
|
|
354
|
-
"puWith": "Личные единицы с",
|
|
355
|
-
"puBy": "Личные единицы по",
|
|
356
|
-
"minLevel": "Минимальный уровень",
|
|
357
|
-
"minNumOfSubs": "Мин. количество подчиненных",
|
|
358
|
-
"subsLevel": "Уровни подчиненных",
|
|
359
|
-
"daysAfter": "Дни после договора"
|
|
360
|
-
},
|
|
361
|
-
"supportText": {
|
|
362
|
-
"toChat": "Чат с тех. поддержкой"
|
|
363
|
-
},
|
|
364
|
-
"test": {
|
|
365
|
-
"testing": "Тестирование",
|
|
366
|
-
"results": "Результаты тестирования",
|
|
367
|
-
"type": "Вид тестирования",
|
|
368
|
-
"date": "Дата прохождения тестирования",
|
|
369
|
-
"resultInProcents": "Результат тестирования в процентах"
|
|
370
|
-
}
|
|
371
|
-
},
|
|
372
|
-
"jobApplication": {
|
|
373
|
-
"title": "Заявление на трудоустройсво",
|
|
374
|
-
"sent": "Заявление отправлено в страховую компанию",
|
|
375
|
-
"whichRegion": "Агентом какого региона вы хотите стать",
|
|
376
|
-
"requisites": "Реквизиты",
|
|
377
|
-
"conductReport": "Справка о несудимости",
|
|
378
|
-
"diplom": "Диплом",
|
|
379
|
-
"new": "Подать заявление"
|
|
380
|
-
},
|
|
381
|
-
"labels": {
|
|
382
|
-
"newVersion": "New",
|
|
383
|
-
"code": "Code",
|
|
384
|
-
"codes": "Codes",
|
|
385
|
-
"listType": "List type",
|
|
386
|
-
"editDate": "Edit date",
|
|
387
|
-
"addDate": "Created date",
|
|
388
|
-
"type": "Type",
|
|
389
|
-
"naming": "Name",
|
|
390
|
-
"countryName": "Country name",
|
|
391
|
-
"dicts": "Dictionaries",
|
|
392
|
-
"aml": "AML",
|
|
393
|
-
"amlLong": "Anti Money Laundering",
|
|
394
|
-
"efoLong": "EFO",
|
|
395
|
-
"efo": "EFO",
|
|
396
|
-
"lkaLong": "LKA",
|
|
397
|
-
"lka": "LKA",
|
|
398
|
-
"photo": "Фото",
|
|
399
|
-
"attachPhoto": "Вложить фото",
|
|
400
|
-
"form": "Форма",
|
|
401
|
-
"toSign": "Отправить на подпись",
|
|
402
|
-
"contract": "Договор",
|
|
403
|
-
"sections": "Разделы",
|
|
404
|
-
"chat": "Чат",
|
|
405
|
-
"today": "Сегодня",
|
|
406
|
-
"message": "Сообщение",
|
|
407
|
-
"category": "Категория",
|
|
408
|
-
"debt": "Долг",
|
|
409
|
-
"premiumDate": "Дата премии",
|
|
410
|
-
"delayDays": "Дни просрочки",
|
|
411
|
-
"dischargeDate": "Дата выписки",
|
|
412
|
-
"covering": "Покрытие",
|
|
413
|
-
"agentsContacts": "Контакты агента",
|
|
414
|
-
"clientsContacts": "Контакты страхователя",
|
|
415
|
-
"agentNumber": "Номер агента",
|
|
416
|
-
"additionalStatus": "Дополнительный статус",
|
|
417
|
-
"activeTime": "Время действия",
|
|
418
|
-
"statementNumber": "Номер заявления",
|
|
419
|
-
"dogovorDate": "Дата договора",
|
|
420
|
-
"dateCreated": "Дата создания",
|
|
421
|
-
"fileName": "Имя файла",
|
|
422
|
-
"reset": "Сбросить",
|
|
423
|
-
"toExcel": "Экспорт в Excel",
|
|
424
|
-
"condition": "Условие",
|
|
425
|
-
"bet": "Ставка",
|
|
426
|
-
"statistics": "Статистика",
|
|
427
|
-
"progressBar": "Шкала прогресса",
|
|
428
|
-
"toAgent": "Оформить",
|
|
429
|
-
"notification": "Уведомление",
|
|
430
|
-
"news": "Новости",
|
|
431
|
-
"profile": "Профиль",
|
|
432
|
-
"needAuth": "You are required to authorize",
|
|
433
|
-
"welcomeHL": "Welcome to Halyk Life",
|
|
434
|
-
"resetType": "Pick resetting method",
|
|
435
|
-
"resetPassword": "Forgot password?",
|
|
436
|
-
"search": "Search",
|
|
437
|
-
"searchByIIN": "Search by IIN",
|
|
438
|
-
"chooseScannedDoc": "Choose scanned document",
|
|
439
|
-
"inputText": "Enter text",
|
|
440
|
-
"waitingStatus": "Waiting",
|
|
441
|
-
"finished": "Finished",
|
|
442
|
-
"chooseDoc": "Choose document",
|
|
443
|
-
"filter": "Filter",
|
|
444
|
-
"iinFioNumber": "IIN / Full Name / Application Number",
|
|
445
|
-
"userInfo": "User Data",
|
|
446
|
-
"userFullName": "Full Name",
|
|
447
|
-
"userRoles": "Roles",
|
|
448
|
-
"noUserRoles": "No roles",
|
|
449
|
-
"welcome": "Welcome",
|
|
450
|
-
"information": "Additional Data",
|
|
451
|
-
"policyNumber": "Policy Number",
|
|
452
|
-
"statusCode": "Application Status",
|
|
453
|
-
"initiator": "Initiator",
|
|
454
|
-
"iin&bin": "IIN/BIN",
|
|
455
|
-
"insurerIin": "Insured IIN",
|
|
456
|
-
"insurerLongName": "Insured Full Name",
|
|
457
|
-
"policyholderLongName": "Policyholder Full Name",
|
|
458
|
-
"jsonObject": "JSON value",
|
|
459
|
-
"epayPage": "ePay page"
|
|
460
|
-
},
|
|
461
|
-
"placeholders": {
|
|
462
|
-
"login": "Login",
|
|
463
|
-
"password": "Password"
|
|
464
|
-
},
|
|
465
|
-
"rules": {
|
|
466
|
-
"required": "Field is required",
|
|
467
|
-
"cyrillic": "Field should contain only Cyrillic characters",
|
|
468
|
-
"email": "Invalid email address",
|
|
469
|
-
"numbers": "Field should contain only numbers",
|
|
470
|
-
"numbersSymbols": "Field should contain numbers",
|
|
471
|
-
"ageExceeds": "Year cannot exceed 50 years",
|
|
472
|
-
"age18": "Contragent should be adult",
|
|
473
|
-
"sums": "Field should contain only numbers",
|
|
474
|
-
"iinRight": "IIN must consist of 12 digits",
|
|
475
|
-
"onlySymbols": "Field should not contain numbers",
|
|
476
|
-
"phoneFormat": "Phone number should contain 11 digits",
|
|
477
|
-
"date": "Invalid date format",
|
|
478
|
-
"age": "Field should be a number",
|
|
479
|
-
"exceedDate": "Date should not exceed the current date",
|
|
480
|
-
"coverPeriod": "Minimum insurance period is 5 years",
|
|
481
|
-
"fillData": "Fill in the data",
|
|
482
|
-
"requestedSumInsuredMycar": "Maximum sum should not exceed 60 million",
|
|
483
|
-
"ageMycar": "Age threshold from 21 to 65",
|
|
484
|
-
"noResident": "Denied for non-residents",
|
|
485
|
-
"policyholderAgeLimit": "Policyholder's age must be at least 18 years",
|
|
486
|
-
"beneficiaryAgeLimit": "On the date of signing the policy, beneficiary's age must not exceed 15 years"
|
|
487
|
-
},
|
|
488
|
-
"code": "CES",
|
|
489
|
-
"fontSize": "Font Size",
|
|
490
|
-
"policyholdersRepresentative": {
|
|
491
|
-
"name": "Full Name",
|
|
492
|
-
"PowerOfAttorney": "Power of Attorney",
|
|
493
|
-
"NameParentCase": "Representative's Full Name in the Genitive Case",
|
|
494
|
-
"basisDocKz": "Acting on the basis of a document (KZ)",
|
|
495
|
-
"basisDocRu": "Acting on the basis of a document (RU)",
|
|
496
|
-
"basisDocRuParentCase": "Acting on the basis of a document in the Genitive Case (RU)",
|
|
497
|
-
"numberDoc": "Number of document confirming authority",
|
|
498
|
-
"numberVisa": "Number of migration card",
|
|
499
|
-
"numberLicense": "License number",
|
|
500
|
-
"confirmAuthority": "Is the person who signed the document confirming authority a Notary?",
|
|
501
|
-
"documentIssuers": "Issuing authority's name"
|
|
502
|
-
},
|
|
503
|
-
"payment": {
|
|
504
|
-
"method": "Payment Method",
|
|
505
|
-
"chooseMethod": "Choose payment method",
|
|
506
|
-
"payConditions": "Payment conditions",
|
|
507
|
-
"issueInvoice": "Issue invoice for payment",
|
|
508
|
-
"copyUrl": "Copy payment link",
|
|
509
|
-
"copyBill": "Copy payment invoice",
|
|
510
|
-
"sendBill": "Send payment invoice via SMS",
|
|
511
|
-
"anyCard": "Online payment with any bank card",
|
|
512
|
-
"terminalHalyk": "Through Halyk Bank terminal",
|
|
513
|
-
"homebankContractNumber": "By contract number in Homebank",
|
|
514
|
-
"homebankIIN": "By IIN in Homebank",
|
|
515
|
-
"accountingDepartment": "Through organization's accounting department",
|
|
516
|
-
"kaspi": "Through Kaspi.kz",
|
|
517
|
-
"recipientNumber": "SMS recipient number"
|
|
518
|
-
},
|
|
519
|
-
"form": {
|
|
520
|
-
"migrationCard": "",
|
|
521
|
-
"postIndex": "Postal Code",
|
|
522
|
-
"name": "Name",
|
|
523
|
-
"bin": "BIN",
|
|
524
|
-
"fullName": "Full Name",
|
|
525
|
-
"notChosen": "Not chosen",
|
|
526
|
-
"personalData": "Personal Data",
|
|
527
|
-
"iin": "IIN",
|
|
528
|
-
"lastName": "Last Name",
|
|
529
|
-
"firstName": "First Name",
|
|
530
|
-
"middleName": "Middle Name",
|
|
531
|
-
"birthDate": "Date of Birth",
|
|
532
|
-
"signDate": "Calculation Date",
|
|
533
|
-
"age": "Age",
|
|
534
|
-
"gender": "Gender",
|
|
535
|
-
"familyStatus": "Marital Status",
|
|
536
|
-
"relations": "Degree of Relationship",
|
|
537
|
-
"percentageOfPayoutAmount": "Percentage of Payout Amount",
|
|
538
|
-
"jobData": "Employment Data",
|
|
539
|
-
"job": "Profession",
|
|
540
|
-
"jobPosition": "Job Position",
|
|
541
|
-
"jobPlace": "Place of Work",
|
|
542
|
-
"placeRegistration": "Place of Residence or Registration",
|
|
543
|
-
"placePermanent": "Permanent Address",
|
|
544
|
-
"sameAddress": "Is the address the same as the Insured's address?",
|
|
545
|
-
"Country": "Country",
|
|
546
|
-
"Province": "Region",
|
|
547
|
-
"RegionType": "Locality Type",
|
|
548
|
-
"Region": "Region",
|
|
549
|
-
"City": "City",
|
|
550
|
-
"Quarter": "Quarter",
|
|
551
|
-
"MicroDistrict": "Microdistrict",
|
|
552
|
-
"Street": "Street",
|
|
553
|
-
"NumberHouse": "House No.",
|
|
554
|
-
"NumberApartment": "Apt. No.",
|
|
555
|
-
"birthData": "Place of Birth",
|
|
556
|
-
"documentData": "Documents",
|
|
557
|
-
"documentType": "Document Type",
|
|
558
|
-
"documentNumber": "Document Number",
|
|
559
|
-
"date": "Date",
|
|
560
|
-
"documentIssuers": "Issued by",
|
|
561
|
-
"documentDate": "Date of Issue",
|
|
562
|
-
"documentExpire": "Expiration Date",
|
|
563
|
-
"signOfResidency": "Residency Indicator",
|
|
564
|
-
"signOfIPDL": "IPDL Indicator",
|
|
565
|
-
"countryOfCitizenship": "Country of Citizenship",
|
|
566
|
-
"countryOfTaxResidency": "Country of Tax Residency",
|
|
567
|
-
"addTaxResidency": "Specify if different country of tax residency is selected",
|
|
568
|
-
"economySectorCode": "Economy Sector Code",
|
|
569
|
-
"contactsData": "Contacts",
|
|
570
|
-
"phoneNumber": "Phone Number",
|
|
571
|
-
"homePhone": "Home Phone Number",
|
|
572
|
-
"email": "Email Address",
|
|
573
|
-
"otpCode": "Confirmation Code",
|
|
574
|
-
"salesChanell": "Sales Channel",
|
|
575
|
-
"manager": "Manager",
|
|
576
|
-
"attachManager": "Manager",
|
|
577
|
-
"agent": "Agent",
|
|
578
|
-
"insurancePay": "Insurance payment is subject to implementation"
|
|
579
|
-
},
|
|
580
|
-
"agreementBlock": {
|
|
581
|
-
"title": "Consent to the collection and processing of personal data",
|
|
582
|
-
"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)."
|
|
583
|
-
}
|
|
584
|
-
}
|