import { ServiceParams } from './containers/Service/ServiceContext'; const services: ServiceParams[] = [ { route: 'products', name: 'Товары', nameSingular: 'Товар', tableFields: [ { key: 'name', label: 'Название' }, { key: 'price', label: 'Цена' }, { key: 'quantity', label: 'На складе' }, ], default: { name: '', price: '', quantity: 0, }, }, { route: 'contractors', name: 'Контрагенты', nameSingular: 'Контрагент', tableFields: [ { key: 'vatId', label: 'УНП' }, { key: 'name', label: 'Название' }, { key: 'debt', label: 'Долг' }, ], default: { name: '', vatId: '', debt: 0, }, }, { route: 'waybills', name: 'Накладные', nameSingular: 'Накладная', tableFields: [ { key: 'operation', label: 'Операция' }, { key: 'productId', label: 'Товар' }, { key: 'contractorId', label: 'Поставщик' }, { key: 'status', label: 'Статус' }, { key: 'quantity', label: 'Количество' }, ], default: { operation: 'in', quantity: 1, }, }, ]; export default services;