diff --git a/src/components/pages/production/project-flock/ProjectFlockTable.tsx b/src/components/pages/production/project-flock/ProjectFlockTable.tsx
index cad76310..7c4973eb 100644
--- a/src/components/pages/production/project-flock/ProjectFlockTable.tsx
+++ b/src/components/pages/production/project-flock/ProjectFlockTable.tsx
@@ -363,10 +363,6 @@ const ProjectFlockTable = ({ refresh }: { refresh?: () => void }) => {
accessorKey: 'location.name',
header: 'Lokasi',
},
- {
- accessorKey: 'fcr.name',
- header: 'FCR',
- },
{
accessorKey: 'category',
header: 'Kategori',
diff --git a/src/components/pages/production/project-flock/form/ProjectFlockForm.schema.ts b/src/components/pages/production/project-flock/form/ProjectFlockForm.schema.ts
index dc972b14..eb6f236c 100644
--- a/src/components/pages/production/project-flock/form/ProjectFlockForm.schema.ts
+++ b/src/components/pages/production/project-flock/form/ProjectFlockForm.schema.ts
@@ -16,11 +16,6 @@ type ProjectFlockFormSchemaType = {
label: string;
} | null;
category: string;
- fcr: {
- value: number | string;
- label: string;
- } | null;
- fcr_id: number;
production_standard: {
value: number | string;
label: string;
@@ -96,15 +91,6 @@ export const ProjectFlockFormSchema: Yup.ObjectSchema,
- fcr_id: initialValues?.fcr?.id ?? 0,
production_standard_id: initialValues?.production_standard?.id ?? 0,
location_id: initialValues?.location?.id ?? 0,
kandang_ids: initialValues?.kandangs?.map(
@@ -574,7 +559,6 @@ const ProjectFlockForm = ({
flock_name: values.flock_name as string,
area_id: values.area_id as number,
category: values.category as string,
- fcr_id: values.fcr_id as number,
production_standard_id: values.production_standard_id as number,
location_id: values.location_id as number,
kandang_ids: values.kandang_ids as number[],
@@ -996,25 +980,6 @@ const ProjectFlockForm = ({
isClearable
isDisabled={formType != 'add'}
/>
- {
- optionChangeHandler(val, 'fcr');
- }}
- onInputChange={setInputValueFcr}
- onMenuScrollToBottom={loadMoreFcr}
- options={optionsFcr}
- isLoading={isLoadingFcrs}
- isError={
- formik.touched.fcr_id && Boolean(formik.errors.fcr_id)
- }
- errorMessage={formik.errors.fcr_id as string}
- isClearable
- isDisabled={formType != 'add'}
- />
[] = [
- {
- accessorKey: 'weight',
- header: 'Weight',
- cell: (props) => formatNumber(props.getValue() as number),
- },
- {
- accessorKey: 'fcr_number',
- header: 'FCR Number',
- cell: (props) => formatNumber(props.getValue() as number),
- },
- {
- accessorKey: 'mortality',
- header: 'Mortality',
- cell: (props) => formatNumber(props.getValue() as number),
- },
-];
-
const productionStandardColumns: ColumnDef[] = [
{
accessorKey: 'week',
@@ -253,36 +234,14 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
const approveModal = useModal();
const rejectModal = useModal();
const deleteModal = useModal();
- const fcrStandardModal = useModal();
const productionStandardModal = useModal();
- const [fcrStandards, setFcrStandards] = useState([]);
const [productionStandards, setProductionStandards] =
useState(null);
- const [isFcrModalOpen, setIsFcrModalOpen] = useState(false);
const [isProductionStandardModalOpen, setIsProductionStandardModalOpen] =
useState(false);
- useEffect(() => {
- const checkFcrModalOpen = () => {
- const isOpen = fcrStandardModal.ref.current?.open || false;
- setIsFcrModalOpen(isOpen);
- };
-
- checkFcrModalOpen();
-
- const observer = new MutationObserver(checkFcrModalOpen);
- if (fcrStandardModal.ref.current) {
- observer.observe(fcrStandardModal.ref.current, {
- attributes: true,
- attributeFilter: ['open'],
- });
- }
-
- return () => observer.disconnect();
- }, [fcrStandardModal.ref]);
-
useEffect(() => {
const checkProductionStandardModalOpen = () => {
const isOpen = productionStandardModal.ref.current?.open || false;
@@ -460,24 +419,6 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
? projectFlockKandangLookupData.data
: undefined;
- const fcrId = useMemo(() => {
- if (type === 'add') {
- return projectFlockKandangLookup?.project_flock?.fcr?.id;
- }
- return initialValues?.project_flock?.fcr?.id;
- }, [type, projectFlockKandangLookup, initialValues]);
-
- const { data: fcr, isLoading: isLoadingFcrStandards } = useSWR(
- isFcrModalOpen && fcrId ? `fcr-detail-${fcrId}` : null,
- () => FcrApi.getSingle(fcrId!)
- );
-
- useEffect(() => {
- if (fcr?.status === 'success') {
- setFcrStandards((fcr.data as FcrWithStandards).fcr_standards || []);
- }
- }, [fcr]);
-
const productionStandardId = useMemo(() => {
if (type === 'add') {
return projectFlockKandangLookup?.project_flock?.production_standard_id;
@@ -1942,24 +1883,6 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
: '-'}
-
-
Standard FCR
-
- fcrStandardModal.openModal()}
- >
- {projectFlockKandangLookup?.project_flock?.fcr?.name ||
- initialValues?.project_flock?.fcr?.name ||
- '-'}
-
-
-
Standard Produksi
@@ -2150,22 +2073,6 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
)}
-
-
Standard FCR
-
- fcrStandardModal.openModal()}
- >
- {initialValues.project_flock?.fcr?.name || '-'}
-
-
-
Standard Produksi
@@ -2217,21 +2124,6 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
-
- | FCR (g) |
-
-
- {initialValues.fcr_value != null
- ? `${formatNumber(initialValues.fcr_value)} g`
- : '-'}
-
- |
-
- {initialValues.project_flock?.fcr?.fcr_std != null
- ? `${formatNumber(initialValues.project_flock?.fcr?.fcr_std)} g`
- : '-'}
- |
-
| Feed Intake (g) |
@@ -3273,62 +3165,6 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
>
)}
- {/* FCR Standard Modal */}
-
-
- {/* Modal Header */}
-
-
-
- Detail Standard FCR
-
-
-
-
- {isLoadingFcrStandards ? (
-
-
-
- ) : fcrStandards.length > 0 ? (
-
- data={fcrStandards}
- columns={fcrStandardColumns}
- pageSize={100}
- className={{
- tableWrapperClassName: 'overflow-x-auto',
- tableClassName: 'w-full table-auto text-sm',
- headerRowClassName: 'border-b border-b-gray-200',
- headerColumnClassName:
- 'px-4 py-3 text-xs font-semibold text-gray-500 whitespace-nowrap border-l border-l-gray-200 border-r border-r-gray-200 border-t border-t-gray-200 border-gray-200 border-b-0',
- bodyRowClassName:
- 'hover:bg-gray-50 transition-colors border-b border-gray-200 first:border-t first:border-t-gray-200 border-l border-l-gray-200 border-r border-r-gray-200',
- bodyColumnClassName:
- 'px-4 py-3 text-xs text-gray-900 whitespace-nowrap',
- paginationClassName: 'hidden',
- }}
- />
- ) : (
-
- Tidak ada data FCR standards
-
- )}
-
-
-
-
{/* Production Standard Modal */}
|