feat: add generated code

This commit is contained in:
aid-orchestrator
2026-04-25 13:53:55 +00:00
parent 011fbe8ef3
commit c05e6941b3
119 changed files with 2989 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Create, SimpleForm, TextInput, DateInput, BooleanInput, ReferenceInput } from 'react-admin';
export const ConfirmationDocumentCreate = () => (
<Create>
<SimpleForm>
<TextInput source="number" label="Номер" />
<DateInput source="date" label="Дата согласования" />
<ReferenceInput source="managerCode" reference="employee" label="Руководитель">
<TextInput optionText="fullName" />
</ReferenceInput>
<ReferenceInput source="orderId" reference="repair-order" label="Заявка">
<TextInput optionText="number" />
</ReferenceInput>
<BooleanInput source="confirmed" label="Согласовано" />
</SimpleForm>
</Create>
);