| | |
| | | } from 'react-admin'; |
| | | import { useWatch, useFormContext } from "react-hook-form"; |
| | | import { Stack, Grid, Box, Typography, Card } from '@mui/material'; |
| | | import * as Common from '@/utils/common'; |
| | | import { EDIT_MODE, REFERENCE_INPUT_PAGESIZE } from '@/config/setting'; |
| | | import EditBaseAside from "../components/EditBaseAside"; |
| | | import CustomerTopToolBar from "../components/EditTopToolBar"; |
| | | import MemoInput from "../components/MemoInput"; |
| | | import StatusSelectInput from "../components/StatusSelectInput"; |
| | | // import AsnOrderItemLogList from "./AsnOrderItemLogList" |
| | | import AsnOrderItemLogList from "./AsnOrderItemLogList" |
| | | const FormToolbar = () => { |
| | | const { getValues } = useFormContext(); |
| | | |
| | | return ( |
| | | <Toolbar sx={{ justifyContent: 'end' }}> |
| | | <SaveButton /> |
| | |
| | | {translate('common.edit.title.common')} |
| | | </Typography> |
| | | </Grid> |
| | | {/* <AsnOrderItemLogList /> */} |
| | | <AsnOrderItemLogList /> |
| | | </> |
| | | ) |
| | | } |