Files
toir-light-v2/frontend/src/resources/part/PartCreate.tsx
2026-04-25 13:53:55 +00:00

20 lines
840 B
TypeScript

import { Create, SimpleForm, TextInput, SelectInput, NumberInput } from 'react-admin';
const categoryChoices = [
{ id: 'Расходник', name: 'Расходник' },
{ id: 'Запчасть', name: 'Запчасть' },
{ id: 'Инструмент', name: 'Инструмент' },
{ id: 'Спецодежда', name: 'Спецодежда' },
];
export const PartCreate = () => (
<Create>
<SimpleForm>
<TextInput source="name" label="Название" />
<SelectInput source="categories" choices={categoryChoices} label="Категории" />
<NumberInput source="price" label="Стоимость" step={0.01} />
<TextInput multiline source="description" label="Описание" />
<TextInput source="serialNumber" label="Серийный номер" />
</SimpleForm>
</Create>
);