diff --git a/src/components/PoDetail/QcStockInModal.tsx b/src/components/PoDetail/QcStockInModal.tsx index 6eff652..8cc498a 100644 --- a/src/components/PoDetail/QcStockInModal.tsx +++ b/src/components/PoDetail/QcStockInModal.tsx @@ -19,7 +19,7 @@ import { Dispatch, SetStateAction, useCallback, useEffect, useMemo, useState } f import { FormProvider, SubmitErrorHandler, SubmitHandler, useForm } from "react-hook-form"; import { StockInLineRow } from "./PoInputGrid"; import { useTranslation } from "react-i18next"; -import StockInForm from "./StockInForm"; +import StockInForm from "../StockIn/StockInForm"; import QcComponent from "./QcComponent"; import PutAwayForm from "./PutAwayForm"; import { GridRowModes, GridRowSelectionModel, useGridApiRef } from "@mui/x-data-grid"; diff --git a/src/components/PutAwayScan/PutAwayModal.tsx b/src/components/PutAwayScan/PutAwayModal.tsx index 7069170..7ad89cc 100644 --- a/src/components/PutAwayScan/PutAwayModal.tsx +++ b/src/components/PutAwayScan/PutAwayModal.tsx @@ -30,7 +30,7 @@ import { useTranslation } from "react-i18next"; import { useSearchParams } from "next/navigation"; import { useQrCodeScannerContext } from "../QrCodeScannerProvider/QrCodeScannerProvider"; import LoadingComponent from "../General/LoadingComponent"; -import StockInForm from "../PoDetail/StockInForm"; +import StockInForm from "../StockIn/StockInForm"; import { arrayToDateString, INPUT_DATE_FORMAT } from "@/app/utils/formatUtil"; import { QrCodeScanner } from "../QrCodeScannerProvider/QrCodeScannerProvider"; import { msg } from "../Swal/CustomAlerts"; diff --git a/src/components/PoDetail/StockInForm.tsx b/src/components/StockIn/StockInForm.tsx similarity index 99% rename from src/components/PoDetail/StockInForm.tsx rename to src/components/StockIn/StockInForm.tsx index 0829e6c..2205adf 100644 --- a/src/components/PoDetail/StockInForm.tsx +++ b/src/components/StockIn/StockInForm.tsx @@ -28,8 +28,6 @@ import { } from "@mui/x-data-grid"; import InputDataGrid from "../InputDataGrid"; import { TableRow } from "../InputDataGrid/InputDataGrid"; -import TwoLineCell from "./TwoLineCell"; -import QcSelect from "./QcSelect"; import { QcItemWithChecks } from "@/app/api/qc"; import { GridEditInputCell } from "@mui/x-data-grid"; import { StockInLine } from "@/app/api/stockIn";