34 lines
642 B
TypeScript
34 lines
642 B
TypeScript
import { IGroup } from 'core/types/Calculation/components';
|
|
|
|
export const controlsList: IGroup[] = [
|
|
{
|
|
title: 'Выбор Интереса/ЛС',
|
|
blocks: [
|
|
{
|
|
elements: ['selectLead', 'selectOpportunity'],
|
|
},
|
|
],
|
|
},
|
|
{ blocks: [{ elements: ['cbxRecalcWithRevision', 'selectQuote'] }] },
|
|
{
|
|
blocks: [
|
|
{
|
|
elements: ['btnCalculate'],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Параметры расчета',
|
|
blocks: [
|
|
{
|
|
elements: [
|
|
'labelIrrInfo',
|
|
'radioCalcType',
|
|
'tbxIRR_Perc',
|
|
'tbxTotalPayments',
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|