17 lines
756 B
TypeScript
17 lines
756 B
TypeScript
import type { FormTabRows } from '../../lib/render-rows';
|
|
|
|
export const id = 'leasing';
|
|
export const title = 'Лизинг';
|
|
|
|
export const rows: FormTabRows = [
|
|
[['selectProduct'], { gridTemplateColumns: '1fr' }],
|
|
[['tbxLeaseObjectPrice', 'tbxVATInLeaseObjectPrice', 'tbxLeaseObjectPriceWthtVAT']],
|
|
[['selectSupplierCurrency', 'tbxSupplierDiscountRub', 'tbxSupplierDiscountPerc']],
|
|
[['tbxFirstPaymentPerc', 'tbxFirstPaymentRub']],
|
|
[['tbxLeasingPeriod', 'tbxSaleBonus']],
|
|
[['selectSubsidy', 'tbxSubsidySum'], { gridTemplateColumns: ['1fr', '2fr 1fr'] }],
|
|
[['selectImportProgram', 'tbxImportProgramSum', 'tbxAddEquipmentPrice']],
|
|
[['radioLastPaymentRule'], { gridTemplateColumns: '1fr' }],
|
|
[['tbxLastPaymentPerc', 'tbxLastPaymentRub']],
|
|
];
|