import { useFormContext, Controller } from 'react-hook-form'; // @mui import { DatePicker } from '@mui/x-date-pickers/DatePicker'; import Stack from '@mui/material/Stack'; import MenuItem from '@mui/material/MenuItem'; // components import { RHFSelect, RHFTextField } from 'src/components/hook-form'; // api // import { useGetTenant } from 'src/api/settings'; // utils import { incrementInvoiceNumber } from 'src/utils/increment-invoice-number'; export const monthNames = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ]; // ---------------------------------------------------------------------- export default function InvoiceNewEditStatusDate({ isCopy }: { isCopy?: boolean }) { const { control, watch } = useFormContext(); const values = watch(); // const { settings } = useGetTenant(); return ( {isCopy ? ( ) : ( )} {monthNames.map((option) => ( {option} ))} {['paid', 'pending', 'overdue', 'draft'].map((option) => ( {option} ))} {['EUR', 'USD'].map((option) => ( {option} ))} {['Unit', 'Hour', 'Sprint', 'Month'].map((option) => ( {option} ))} ( { field.onChange(newValue); }} slotProps={{ textField: { fullWidth: true, error: !!error, helperText: error?.message, }, }} /> )} /> ( { field.onChange(newValue); }} slotProps={{ textField: { fullWidth: true, error: !!error, helperText: error?.message, }, }} /> )} /> ); }