From a47c0a6ec4bd8f874a5c843068aef1cbc69b4a25 Mon Sep 17 00:00:00 2001 From: Chika Date: Sun, 22 Nov 2020 23:57:08 +0300 Subject: [PATCH] sections: hide fields --- .../Calculation/Sections/sectionsList.ts | 43 ++++++++++--------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/src/client/Containers/Calculation/Sections/sectionsList.ts b/src/client/Containers/Calculation/Sections/sectionsList.ts index 442e7f2..3a9e7f9 100644 --- a/src/client/Containers/Calculation/Sections/sectionsList.ts +++ b/src/client/Containers/Calculation/Sections/sectionsList.ts @@ -506,27 +506,27 @@ const sections: ISection[] = [ { title: 'Параметры расчета', elements: [ - { - title: 'Комиссия, %', - Component: InputNumber, - props: { - min: '0', - max: '100', - name: 'tbxComissionPerc', - valueName: 'comissionPerc', - }, - }, - { - title: 'Комиссия, руб.', - Component: InputNumber, - props: { - min: '0', - max: '1000000000', - step: '10000.00', - name: 'tbxComissionRub', - valueName: 'comissionRub', - }, - }, + // { + // title: 'Комиссия, %', + // Component: InputNumber, + // props: { + // min: '0', + // max: '100', + // name: 'tbxComissionPerc', + // valueName: 'comissionPerc', + // }, + // }, + // { + // title: 'Комиссия, руб.', + // Component: InputNumber, + // props: { + // min: '0', + // max: '1000000000', + // step: '10000.00', + // name: 'tbxComissionRub', + // valueName: 'comissionRub', + // }, + // }, { title: 'IRR, %', Component: InputNumber, @@ -836,6 +836,7 @@ const sections: ISection[] = [ title: 'Салон приобретения', Component: Select, props: { + showSearch: true, name: 'selectDealer', valueName: 'dealer', },