ERPTurbo_Client/packages/app-client/src/components/order/section/MaterialCostSection.tsx
2025-12-29 23:52:15 +08:00

11 lines
320 B
TypeScript

import CostList from "../cost/CostList";
export default function MaterialCostSection(props: {
orderVO: BusinessAPI.OrderVO;
onChange?: (orderVO: BusinessAPI.OrderVO) => void;
costList: BusinessAPI.CostVO[];
readOnly?: boolean;
}) {
return <CostList key="material-cost" {...props} type={"MATERIAL_TYPE"} />;
}