19 lines
715 B
TypeScript
19 lines
715 B
TypeScript
/* eslint-disable object-curly-newline */
|
|
import type { FormComponentConfig } from '../../lib/renderFormComponent';
|
|
|
|
const config: FormComponentConfig = {
|
|
id: 'leasing',
|
|
title: 'Лизинг',
|
|
rows: [
|
|
[['selectProduct'], { gridTemplateColumns: '1fr' }],
|
|
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
|
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
|
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
|
[['tbxLeasingPeriod', 'tbxSaleBonus', 'tbxRedemptionPaymentSum']],
|
|
[['selectSubsidy', 'labelSubsidySum']],
|
|
[['tbxLastPaymentPerc', 'tbxLastPaymentRub', 'radioLastPaymentRule']],
|
|
],
|
|
};
|
|
|
|
export default config;
|