Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- import StockInFormOld from "./StockInFormOld";
- import EscalationLog from "./EscalationLog";
- import EscalationComponent from "./EscalationComponent";
- import React from "react";
- import { PurchaseQcResult } from "@/app/api/po/actions";
- import { StockInLine } from "@/app/api/po";
-
- interface Props {
- itemDetail: StockInLine & {
- qcResult?: PurchaseQcResult[] | undefined;
- };
- disabled: boolean
- }
-
- const EscalationTab:React.FC<Props> = ({itemDetail, disabled}) => {
- return <>
- <StockInFormOld itemDetail={itemDetail} disabled={disabled}/>
- <EscalationLog/>
- <EscalationComponent/>
- </>
- };
-
- export default EscalationTab;
|