interface Cell {
name: string;
isForAll: boolean;
value: number | string;
types?: any;
}
interface Cells {
client_price: Cell[];
selfcost: Cell[];
}
let cells: Cells = {
client_price: [
{
name: 'Цена клиента за 1 ед переплета',
isForAll: true,
value: order.finance.client_price.binding_unit,
},
{
name: 'Сумма закупа не выше (тенге)',
isForAll: false,
types: order.finance.client_price.types,
value: 'client_price_per_unit',
},
],
selfcost: [
{
name: 'Цена клиента за 1 ед переплета',
isForAll: true,
value: order.finance.client_price.binding_unit,
},
{
name: 'Сумма закупа не выше (тенге)',
isForAll: false,
types: order.finance.client_price.types,
value: 'client_price_per_unit',
},
],
};
interface Cell {
name: string;
isForAll: boolean;
value: number | string;
types?: any;
}
let cells = {
client_price: [
{
name: 'Цена клиента за 1 ед переплета',
isForAll: true,
value: 1,
},
{
name: 'Сумма закупа не выше (тенге)',
isForAll: false,
types: 1,
value: 'client_price_per_unit',
},
] as Cell[],
selfcost: [
{
name: 'Цена клиента за 1 ед переплета',
isForAll: true,
value: 1,
},
{
name: 'Сумма закупа не выше (тенге)',
isForAll: false,
types: 1,
value: 'client_price_per_unit',
},
] as Cell[],
};