@redneckz/wildless-cms-uni-blocks 0.14.734 → 0.14.736
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/bin/migration-scripts/0.14.734.js +26 -0
- package/bundle/blocks.schema.json +1 -1
- package/bundle/bundle.umd.js +66 -87
- package/bundle/bundle.umd.min.js +1 -1
- package/bundle/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/bundle/services/retail/inputs.d.ts +1 -1
- package/bundle/services/retail/model/RetailFormContent.d.ts +1 -8
- package/dist/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/dist/components/ApplicationForm/getInitialFormState.js +2 -2
- package/dist/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/dist/components/ApplicationLeadForm/applicationFormData.js +11 -11
- package/dist/components/ApplicationLeadForm/applicationFormData.js.map +1 -1
- package/dist/services/retail/content.js +51 -72
- package/dist/services/retail/content.js.map +1 -1
- package/dist/services/retail/inputs.d.ts +1 -1
- package/dist/services/retail/inputs.js +1 -1
- package/dist/services/retail/inputs.js.map +1 -1
- package/dist/services/retail/model/RetailFormContent.d.ts +1 -8
- package/lib/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/lib/components/ApplicationForm/getInitialFormState.js +2 -2
- package/lib/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/lib/components/ApplicationLeadForm/applicationFormData.js +11 -11
- package/lib/components/ApplicationLeadForm/applicationFormData.js.map +1 -1
- package/lib/services/retail/content.js +51 -72
- package/lib/services/retail/content.js.map +1 -1
- package/lib/services/retail/inputs.d.ts +1 -1
- package/lib/services/retail/inputs.js +1 -1
- package/lib/services/retail/inputs.js.map +1 -1
- package/lib/services/retail/model/RetailFormContent.d.ts +1 -8
- package/mobile/bundle/bundle.umd.js +66 -87
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/bundle/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/mobile/bundle/services/retail/inputs.d.ts +1 -1
- package/mobile/bundle/services/retail/model/RetailFormContent.d.ts +1 -8
- package/mobile/dist/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/mobile/dist/components/ApplicationForm/getInitialFormState.js +2 -2
- package/mobile/dist/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/mobile/dist/components/ApplicationLeadForm/applicationFormData.js +11 -11
- package/mobile/dist/components/ApplicationLeadForm/applicationFormData.js.map +1 -1
- package/mobile/dist/services/retail/content.js +51 -72
- package/mobile/dist/services/retail/content.js.map +1 -1
- package/mobile/dist/services/retail/inputs.d.ts +1 -1
- package/mobile/dist/services/retail/inputs.js +1 -1
- package/mobile/dist/services/retail/inputs.js.map +1 -1
- package/mobile/dist/services/retail/model/RetailFormContent.d.ts +1 -8
- package/mobile/lib/components/ApplicationForm/ApplicationFormContent.d.ts +2 -28
- package/mobile/lib/components/ApplicationForm/getInitialFormState.js +2 -2
- package/mobile/lib/components/ApplicationForm/getInitialFormState.js.map +1 -1
- package/mobile/lib/components/ApplicationLeadForm/applicationFormData.js +11 -11
- package/mobile/lib/components/ApplicationLeadForm/applicationFormData.js.map +1 -1
- package/mobile/lib/services/retail/content.js +51 -72
- package/mobile/lib/services/retail/content.js.map +1 -1
- package/mobile/lib/services/retail/inputs.d.ts +1 -1
- package/mobile/lib/services/retail/inputs.js +1 -1
- package/mobile/lib/services/retail/inputs.js.map +1 -1
- package/mobile/lib/services/retail/model/RetailFormContent.d.ts +1 -8
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +0 -126
- package/mobile/src/components/ApplicationForm/ApplicationFormContent.ts +2 -33
- package/mobile/src/components/ApplicationForm/getInitialFormState.tsx +2 -2
- package/mobile/src/components/ApplicationLeadForm/ApplicationLeadForm.example.json +0 -11
- package/mobile/src/components/ApplicationLeadForm/applicationFormData.tsx +11 -11
- package/mobile/src/services/retail/content.tsx +51 -72
- package/mobile/src/services/retail/inputs.tsx +1 -1
- package/mobile/src/services/retail/model/RetailFormContent.ts +1 -11
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +0 -126
- package/src/components/ApplicationForm/ApplicationForm.fixture.mobile.tsx +114 -136
- package/src/components/ApplicationForm/ApplicationForm.fixture.tsx +115 -136
- package/src/components/ApplicationForm/ApplicationFormContent.ts +2 -33
- package/src/components/ApplicationForm/getInitialFormState.tsx +2 -2
- package/src/components/ApplicationLeadForm/ApplicationLeadForm.example.json +0 -11
- package/src/components/ApplicationLeadForm/applicationFormData.tsx +11 -11
- package/src/icons/IconName.ts +4 -4
- package/src/services/retail/content.tsx +51 -72
- package/src/services/retail/inputs.tsx +1 -1
- package/src/services/retail/model/RetailFormContent.ts +1 -11
|
@@ -19,15 +19,8 @@ export declare type FilledByEsiaProps = {
|
|
|
19
19
|
/** @title Заполняется через госуслуги */
|
|
20
20
|
filledByEsia?: boolean;
|
|
21
21
|
};
|
|
22
|
-
export declare type
|
|
22
|
+
export declare type FieldRetailDef = Required & TextProps & LabelProps & ConditionFieldProps & FilledByEsiaProps & {
|
|
23
23
|
name?: NameFieldDef;
|
|
24
24
|
dadata?: boolean;
|
|
25
25
|
};
|
|
26
|
-
/**
|
|
27
|
-
* @title Поле ввода
|
|
28
|
-
* @default { "fieldType": "common" }
|
|
29
|
-
*/
|
|
30
|
-
export declare type FieldRetailDef = FieldDefaultDef & TextProps & {
|
|
31
|
-
fieldType: 'common';
|
|
32
|
-
};
|
|
33
26
|
export {};
|
|
@@ -2909,7 +2909,7 @@
|
|
|
2909
2909
|
serviceType: SERVICE_TYPES[0],
|
|
2910
2910
|
feedbackMethod: FEEDBACK_METHOD[0],
|
|
2911
2911
|
serviceDirection: SERVICE_DIRECTIONS[0],
|
|
2912
|
-
vedTypes: VED_TYPES[0],
|
|
2912
|
+
vedTypes: VED_TYPES[0].id,
|
|
2913
2913
|
birthday: undefined,
|
|
2914
2914
|
isClient: false,
|
|
2915
2915
|
onlineCheckout: false,
|
|
@@ -2921,7 +2921,7 @@
|
|
|
2921
2921
|
const getInitialFormState$3 = (inputs, typeForm = '') => {
|
|
2922
2922
|
const formState = Object.fromEntries(inputs.map((_) => [
|
|
2923
2923
|
_.name,
|
|
2924
|
-
(_
|
|
2924
|
+
(_?.name === 'vedTypes' && _?.defaultValue) || initialFormState$1[_.name || ''],
|
|
2925
2925
|
]));
|
|
2926
2926
|
return { ...formState, typeForm: { key: typeForm, text: '' } };
|
|
2927
2927
|
};
|
|
@@ -2981,21 +2981,21 @@
|
|
|
2981
2981
|
{
|
|
2982
2982
|
columns: 2,
|
|
2983
2983
|
inputs: [
|
|
2984
|
-
{
|
|
2985
|
-
{
|
|
2986
|
-
{
|
|
2987
|
-
{
|
|
2988
|
-
{
|
|
2989
|
-
{
|
|
2984
|
+
{ name: 'surname', required: true, dadata: true },
|
|
2985
|
+
{ name: 'name', required: true, dadata: true },
|
|
2986
|
+
{ name: 'middleName', dadata: true },
|
|
2987
|
+
{ name: 'limitedBirthday', required: true },
|
|
2988
|
+
{ name: 'phone', required: true },
|
|
2989
|
+
{ name: 'email', required: true, dadata: true },
|
|
2990
2990
|
],
|
|
2991
2991
|
},
|
|
2992
2992
|
{
|
|
2993
2993
|
inputs: [
|
|
2994
|
-
{
|
|
2995
|
-
{
|
|
2996
|
-
{
|
|
2997
|
-
{
|
|
2998
|
-
{
|
|
2994
|
+
{ name: 'processPersonalDataFlg', required: true },
|
|
2995
|
+
{ name: 'consentProviderFlg', required: true },
|
|
2996
|
+
{ name: 'consentOthersFlg', required: true },
|
|
2997
|
+
{ name: 'consentInformFlg' },
|
|
2998
|
+
{ name: 'consentPfrFlg' },
|
|
2999
2999
|
],
|
|
3000
3000
|
},
|
|
3001
3001
|
];
|
|
@@ -4453,6 +4453,7 @@
|
|
|
4453
4453
|
regionRetail: (props) => jsx(RegionRetailField, { ...props }),
|
|
4454
4454
|
infoCard: (props) => jsx(InfoCardField, { ...props }),
|
|
4455
4455
|
calculator: (props) => jsx(CreditCalcField, { ...props }),
|
|
4456
|
+
confirmationIncome: (props) => jsx(ConfirmationIncomeField, { ...props }),
|
|
4456
4457
|
};
|
|
4457
4458
|
const InputRetailCardMap = {
|
|
4458
4459
|
addressCourier: (props) => jsx(AddressField, { ...props }),
|
|
@@ -4460,7 +4461,6 @@
|
|
|
4460
4461
|
currency: (props) => jsx(CurrencyField, { ...props }),
|
|
4461
4462
|
cardCategory: (props) => jsx(CardCategoryField, { ...props }),
|
|
4462
4463
|
codeWord: (props) => jsx(CodeWordField, { ...props }),
|
|
4463
|
-
confirmationIncome: (props) => jsx(ConfirmationIncomeField, { ...props }),
|
|
4464
4464
|
methodObtain: (props) => jsx(MethodObtainField, { ...props }),
|
|
4465
4465
|
deliveryDate: (props) => jsx(DeliveryDateFiels, { ...props }),
|
|
4466
4466
|
};
|
|
@@ -7323,30 +7323,28 @@
|
|
|
7323
7323
|
columns: 2,
|
|
7324
7324
|
inputs: [
|
|
7325
7325
|
{
|
|
7326
|
-
fieldType: 'common',
|
|
7327
7326
|
name: 'surname',
|
|
7328
7327
|
required: true,
|
|
7329
7328
|
dadata: true,
|
|
7330
7329
|
filledByEsia: true,
|
|
7331
7330
|
},
|
|
7332
|
-
{
|
|
7333
|
-
{
|
|
7334
|
-
{
|
|
7335
|
-
{
|
|
7336
|
-
{
|
|
7337
|
-
{
|
|
7338
|
-
{
|
|
7331
|
+
{ name: 'name', required: true, dadata: true, filledByEsia: true },
|
|
7332
|
+
{ name: 'middleName', dadata: true, filledByEsia: true },
|
|
7333
|
+
{ name: 'sex', required: true },
|
|
7334
|
+
{ name: 'limitedBirthday', required: true, filledByEsia: true },
|
|
7335
|
+
{ name: 'birthPlace', required: true, filledByEsia: true },
|
|
7336
|
+
{ name: 'phone', required: true, filledByEsia: true },
|
|
7337
|
+
{ name: 'email', required: true, dadata: true },
|
|
7339
7338
|
],
|
|
7340
7339
|
},
|
|
7341
7340
|
{
|
|
7342
7341
|
title: 'Паспортные данные',
|
|
7343
7342
|
columns: 2,
|
|
7344
7343
|
inputs: [
|
|
7345
|
-
{
|
|
7346
|
-
{
|
|
7347
|
-
{
|
|
7344
|
+
{ name: 'dulSerie', required: true, filledByEsia: true },
|
|
7345
|
+
{ name: 'dulNumber', required: true, filledByEsia: true },
|
|
7346
|
+
{ name: 'dulIssueDateField', required: true, filledByEsia: true },
|
|
7348
7347
|
{
|
|
7349
|
-
fieldType: 'common',
|
|
7350
7348
|
name: 'dulSubdivisionCode',
|
|
7351
7349
|
required: true,
|
|
7352
7350
|
dadata: true,
|
|
@@ -7357,14 +7355,12 @@
|
|
|
7357
7355
|
{
|
|
7358
7356
|
inputs: [
|
|
7359
7357
|
{
|
|
7360
|
-
fieldType: 'common',
|
|
7361
7358
|
name: 'dulIssuedBy',
|
|
7362
7359
|
required: true,
|
|
7363
7360
|
dadata: true,
|
|
7364
7361
|
filledByEsia: true,
|
|
7365
7362
|
},
|
|
7366
7363
|
{
|
|
7367
|
-
fieldType: 'common',
|
|
7368
7364
|
name: 'education',
|
|
7369
7365
|
required: true,
|
|
7370
7366
|
},
|
|
@@ -7378,18 +7374,17 @@
|
|
|
7378
7374
|
{
|
|
7379
7375
|
inputs: [
|
|
7380
7376
|
{
|
|
7381
|
-
fieldType: 'common',
|
|
7382
7377
|
name: 'addressRegistration',
|
|
7383
7378
|
required: true,
|
|
7384
7379
|
dadata: true,
|
|
7385
7380
|
filledByEsia: true,
|
|
7386
7381
|
},
|
|
7387
|
-
{
|
|
7382
|
+
{ name: 'addressMatch' },
|
|
7388
7383
|
],
|
|
7389
7384
|
},
|
|
7390
7385
|
{
|
|
7391
7386
|
columns: 2,
|
|
7392
|
-
inputs: [{
|
|
7387
|
+
inputs: [{ name: 'participantDateRegistration', required: true }],
|
|
7393
7388
|
},
|
|
7394
7389
|
{
|
|
7395
7390
|
title: 'Адрес фактического проживания (место пребывания РФ)',
|
|
@@ -7397,10 +7392,10 @@
|
|
|
7397
7392
|
},
|
|
7398
7393
|
{
|
|
7399
7394
|
columns: 2,
|
|
7400
|
-
inputs: [{
|
|
7395
|
+
inputs: [{ name: 'housing', required: true }],
|
|
7401
7396
|
},
|
|
7402
7397
|
{
|
|
7403
|
-
inputs: [{
|
|
7398
|
+
inputs: [{ name: 'addressFact', required: true, dadata: true }],
|
|
7404
7399
|
},
|
|
7405
7400
|
];
|
|
7406
7401
|
const EMPLOYMENT_CONTENT = [
|
|
@@ -7411,7 +7406,6 @@
|
|
|
7411
7406
|
{
|
|
7412
7407
|
inputs: [
|
|
7413
7408
|
{
|
|
7414
|
-
fieldType: 'common',
|
|
7415
7409
|
name: 'infoCard',
|
|
7416
7410
|
label: 'Клиент на момент оформления заявки на кредит должен быть: официально трудоустроен более 6 месяцев, ' +
|
|
7417
7411
|
'если Клиент получает з/п на счет РСХБ, то трудоустроен более 3 месяцев, не должен находиться в декретном отпуске',
|
|
@@ -7420,51 +7414,49 @@
|
|
|
7420
7414
|
},
|
|
7421
7415
|
{
|
|
7422
7416
|
inputs: [
|
|
7423
|
-
{
|
|
7424
|
-
{
|
|
7417
|
+
{ name: 'employment', required: true },
|
|
7418
|
+
{ name: 'organizationName', required: true, dadata: true },
|
|
7425
7419
|
],
|
|
7426
7420
|
},
|
|
7427
7421
|
{
|
|
7428
7422
|
columns: 2,
|
|
7429
7423
|
inputs: [
|
|
7430
|
-
{
|
|
7431
|
-
{
|
|
7424
|
+
{ name: 'inn', required: true, dadata: true },
|
|
7425
|
+
{ name: 'legalForm', required: true },
|
|
7432
7426
|
],
|
|
7433
7427
|
},
|
|
7434
7428
|
{
|
|
7435
7429
|
inputs: [
|
|
7436
|
-
{
|
|
7437
|
-
{
|
|
7430
|
+
{ name: 'organization', required: true },
|
|
7431
|
+
{ name: 'amountWorkers', required: true },
|
|
7438
7432
|
],
|
|
7439
7433
|
},
|
|
7440
7434
|
{
|
|
7441
7435
|
columns: 2,
|
|
7442
7436
|
inputs: [
|
|
7443
|
-
{
|
|
7444
|
-
{
|
|
7445
|
-
{
|
|
7446
|
-
{
|
|
7447
|
-
{
|
|
7448
|
-
{
|
|
7437
|
+
{ name: 'employerActivities', required: true },
|
|
7438
|
+
{ name: 'employerOrganization', required: true },
|
|
7439
|
+
{ name: 'generalSeniority', required: true },
|
|
7440
|
+
{ name: 'lastJobExperience', required: true },
|
|
7441
|
+
{ name: 'experience5Years', required: true },
|
|
7442
|
+
{ name: 'jobsNumber', required: true },
|
|
7449
7443
|
],
|
|
7450
7444
|
},
|
|
7451
7445
|
{
|
|
7452
7446
|
inputs: [
|
|
7453
7447
|
{
|
|
7454
|
-
fieldType: 'common',
|
|
7455
7448
|
name: 'organizationPhone',
|
|
7456
7449
|
label: 'Телефон работодателя',
|
|
7457
7450
|
required: true,
|
|
7458
7451
|
},
|
|
7459
|
-
{
|
|
7452
|
+
{ name: 'beginDate', required: true },
|
|
7460
7453
|
],
|
|
7461
7454
|
},
|
|
7462
7455
|
{
|
|
7463
7456
|
columns: 2,
|
|
7464
7457
|
inputs: [
|
|
7465
|
-
{
|
|
7458
|
+
{ name: 'positionOrganization', required: true },
|
|
7466
7459
|
{
|
|
7467
|
-
fieldType: 'common',
|
|
7468
7460
|
name: 'partInBusiness',
|
|
7469
7461
|
required: true,
|
|
7470
7462
|
condition: { name: 'positionOrganization', values: ['BUSINESS_OWNER'] },
|
|
@@ -7476,7 +7468,7 @@
|
|
|
7476
7468
|
inputs: [],
|
|
7477
7469
|
},
|
|
7478
7470
|
{
|
|
7479
|
-
inputs: [{
|
|
7471
|
+
inputs: [{ name: 'organizationAddress', required: true, dadata: true }],
|
|
7480
7472
|
},
|
|
7481
7473
|
];
|
|
7482
7474
|
const FAMILY_STATUS_AND_INCOME_CONTENT = [
|
|
@@ -7485,18 +7477,15 @@
|
|
|
7485
7477
|
},
|
|
7486
7478
|
{
|
|
7487
7479
|
columns: 1,
|
|
7488
|
-
inputs: [{
|
|
7480
|
+
inputs: [{ name: 'familyStatus', required: true }],
|
|
7489
7481
|
},
|
|
7490
7482
|
{
|
|
7491
7483
|
columns: 1,
|
|
7492
|
-
inputs: [{
|
|
7484
|
+
inputs: [{ name: 'dependents', required: true }],
|
|
7493
7485
|
},
|
|
7494
7486
|
{
|
|
7495
7487
|
columns: 2,
|
|
7496
|
-
inputs: [
|
|
7497
|
-
{ fieldType: 'common', name: 'familyMembers' },
|
|
7498
|
-
{ fieldType: 'common', name: 'children', required: true },
|
|
7499
|
-
],
|
|
7488
|
+
inputs: [{ name: 'familyMembers' }, { name: 'children', required: true }],
|
|
7500
7489
|
},
|
|
7501
7490
|
{
|
|
7502
7491
|
title: 'Совокупный доход',
|
|
@@ -7504,7 +7493,6 @@
|
|
|
7504
7493
|
{
|
|
7505
7494
|
inputs: [
|
|
7506
7495
|
{
|
|
7507
|
-
fieldType: 'common',
|
|
7508
7496
|
name: 'infoCard',
|
|
7509
7497
|
label: 'Сумма основного и дополнительных доходов после вычета налога',
|
|
7510
7498
|
},
|
|
@@ -7512,27 +7500,27 @@
|
|
|
7512
7500
|
},
|
|
7513
7501
|
{
|
|
7514
7502
|
columns: 1,
|
|
7515
|
-
inputs: [{
|
|
7503
|
+
inputs: [{ name: 'confirmationIncome', required: true }],
|
|
7516
7504
|
},
|
|
7517
7505
|
{
|
|
7518
7506
|
columns: 1,
|
|
7519
|
-
inputs: [{
|
|
7507
|
+
inputs: [{ name: 'wages', required: true }],
|
|
7520
7508
|
},
|
|
7521
7509
|
{
|
|
7522
7510
|
columns: 1,
|
|
7523
|
-
inputs: [{
|
|
7511
|
+
inputs: [{ name: 'mandatoryPayments', required: true }],
|
|
7524
7512
|
},
|
|
7525
7513
|
{
|
|
7526
7514
|
columns: 1,
|
|
7527
|
-
inputs: [{
|
|
7515
|
+
inputs: [{ name: 'snils', required: true }],
|
|
7528
7516
|
},
|
|
7529
7517
|
{
|
|
7530
7518
|
columns: 1,
|
|
7531
|
-
inputs: [{
|
|
7519
|
+
inputs: [{ name: 'conscription', required: true }],
|
|
7532
7520
|
},
|
|
7533
7521
|
{
|
|
7534
7522
|
columns: 2,
|
|
7535
|
-
inputs: [{
|
|
7523
|
+
inputs: [{ name: 'armyIdFlg' }],
|
|
7536
7524
|
},
|
|
7537
7525
|
];
|
|
7538
7526
|
const ADDITIONAL_CONTENT = [
|
|
@@ -7542,19 +7530,19 @@
|
|
|
7542
7530
|
inputs: [],
|
|
7543
7531
|
},
|
|
7544
7532
|
{
|
|
7545
|
-
inputs: [{
|
|
7533
|
+
inputs: [{ name: 'disablePeopleFlg' }],
|
|
7546
7534
|
},
|
|
7547
7535
|
{
|
|
7548
|
-
inputs: [{
|
|
7536
|
+
inputs: [{ name: 'bankruptcyFlg' }],
|
|
7549
7537
|
},
|
|
7550
7538
|
{
|
|
7551
|
-
inputs: [{
|
|
7539
|
+
inputs: [{ name: 'shareholderFlg' }],
|
|
7552
7540
|
},
|
|
7553
7541
|
{
|
|
7554
|
-
inputs: [{
|
|
7542
|
+
inputs: [{ name: 'legalEntityName' }],
|
|
7555
7543
|
},
|
|
7556
7544
|
{
|
|
7557
|
-
inputs: [{
|
|
7545
|
+
inputs: [{ name: 'creditInRshbCd' }],
|
|
7558
7546
|
},
|
|
7559
7547
|
];
|
|
7560
7548
|
const COMMON_RETAIL_CONTENT = [
|
|
@@ -7570,10 +7558,10 @@
|
|
|
7570
7558
|
inputs: [],
|
|
7571
7559
|
},
|
|
7572
7560
|
{
|
|
7573
|
-
inputs: [{
|
|
7561
|
+
inputs: [{ name: 'regionRetail', required: true }],
|
|
7574
7562
|
},
|
|
7575
7563
|
{
|
|
7576
|
-
inputs: [{
|
|
7564
|
+
inputs: [{ name: 'addressRetail', required: true }],
|
|
7577
7565
|
},
|
|
7578
7566
|
{
|
|
7579
7567
|
title: 'Код представителя Банка',
|
|
@@ -7583,14 +7571,13 @@
|
|
|
7583
7571
|
{
|
|
7584
7572
|
inputs: [
|
|
7585
7573
|
{
|
|
7586
|
-
fieldType: 'common',
|
|
7587
7574
|
name: 'infoCard',
|
|
7588
7575
|
label: 'Если представитель Банка помогал Вам в заведении заявки, введите здесь его код',
|
|
7589
7576
|
},
|
|
7590
7577
|
],
|
|
7591
7578
|
},
|
|
7592
7579
|
{
|
|
7593
|
-
inputs: [{
|
|
7580
|
+
inputs: [{ name: 'bankEmployeeCode' }],
|
|
7594
7581
|
},
|
|
7595
7582
|
];
|
|
7596
7583
|
const DELIVERY_CREDIT_CARD_CONTENT = [
|
|
@@ -7600,7 +7587,7 @@
|
|
|
7600
7587
|
inputs: [],
|
|
7601
7588
|
},
|
|
7602
7589
|
{
|
|
7603
|
-
inputs: [{
|
|
7590
|
+
inputs: [{ name: 'methodObtain' }],
|
|
7604
7591
|
},
|
|
7605
7592
|
{
|
|
7606
7593
|
title: 'Адрес',
|
|
@@ -7610,7 +7597,6 @@
|
|
|
7610
7597
|
{
|
|
7611
7598
|
inputs: [
|
|
7612
7599
|
{
|
|
7613
|
-
fieldType: 'common',
|
|
7614
7600
|
name: 'addressCourier',
|
|
7615
7601
|
dadata: true,
|
|
7616
7602
|
condition: {
|
|
@@ -7620,7 +7606,6 @@
|
|
|
7620
7606
|
required: true,
|
|
7621
7607
|
},
|
|
7622
7608
|
{
|
|
7623
|
-
fieldType: 'common',
|
|
7624
7609
|
name: 'deliveryDate',
|
|
7625
7610
|
condition: {
|
|
7626
7611
|
name: 'methodObtain',
|
|
@@ -7629,7 +7614,6 @@
|
|
|
7629
7614
|
required: true,
|
|
7630
7615
|
},
|
|
7631
7616
|
{
|
|
7632
|
-
fieldType: 'common',
|
|
7633
7617
|
name: 'comment',
|
|
7634
7618
|
condition: {
|
|
7635
7619
|
name: 'methodObtain',
|
|
@@ -7641,7 +7625,6 @@
|
|
|
7641
7625
|
{
|
|
7642
7626
|
inputs: [
|
|
7643
7627
|
{
|
|
7644
|
-
fieldType: 'common',
|
|
7645
7628
|
name: 'regionRetail',
|
|
7646
7629
|
required: true,
|
|
7647
7630
|
condition: {
|
|
@@ -7650,7 +7633,6 @@
|
|
|
7650
7633
|
},
|
|
7651
7634
|
},
|
|
7652
7635
|
{
|
|
7653
|
-
fieldType: 'common',
|
|
7654
7636
|
name: 'addressRetail',
|
|
7655
7637
|
required: true,
|
|
7656
7638
|
condition: {
|
|
@@ -7663,7 +7645,6 @@
|
|
|
7663
7645
|
{
|
|
7664
7646
|
inputs: [
|
|
7665
7647
|
{
|
|
7666
|
-
fieldType: 'common',
|
|
7667
7648
|
name: 'infoCard',
|
|
7668
7649
|
label: 'Если представитель Банка помогал Вам в заведении заявки, введите здесь его код',
|
|
7669
7650
|
condition: {
|
|
@@ -7672,7 +7653,6 @@
|
|
|
7672
7653
|
},
|
|
7673
7654
|
},
|
|
7674
7655
|
{
|
|
7675
|
-
fieldType: 'common',
|
|
7676
7656
|
name: 'bankEmployeeCode',
|
|
7677
7657
|
condition: {
|
|
7678
7658
|
name: 'methodObtain',
|
|
@@ -7689,10 +7669,10 @@
|
|
|
7689
7669
|
},
|
|
7690
7670
|
{
|
|
7691
7671
|
inputs: [
|
|
7692
|
-
{
|
|
7693
|
-
{
|
|
7694
|
-
{
|
|
7695
|
-
{
|
|
7672
|
+
{ name: 'currency', required: true },
|
|
7673
|
+
{ name: 'paymentSystem', required: true },
|
|
7674
|
+
{ name: 'cardCategory', required: true },
|
|
7675
|
+
{ name: 'codeWord', required: true },
|
|
7696
7676
|
],
|
|
7697
7677
|
},
|
|
7698
7678
|
];
|
|
@@ -7701,7 +7681,6 @@
|
|
|
7701
7681
|
columns: 1,
|
|
7702
7682
|
inputs: [
|
|
7703
7683
|
{
|
|
7704
|
-
fieldType: 'common',
|
|
7705
7684
|
name: 'calculator',
|
|
7706
7685
|
},
|
|
7707
7686
|
],
|
|
@@ -10072,7 +10051,7 @@
|
|
|
10072
10051
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
10073
10052
|
});
|
|
10074
10053
|
|
|
10075
|
-
const packageVersion = "0.14.
|
|
10054
|
+
const packageVersion = "0.14.735";
|
|
10076
10055
|
|
|
10077
10056
|
exports.Blocks = Blocks;
|
|
10078
10057
|
exports.ContentPage = ContentPage;
|