- Introduced a new SmartExcelUploadModal component to facilitate bulk item inspection uploads via Excel. - Implemented logic for downloading templates, validating uploaded files, and parsing data for inspection criteria. - Enhanced the item inspection page to support dynamic loading of item process mappings and reference data for improved user experience. - Added necessary types and utility functions for template generation and parsing, ensuring robust handling of Excel data. - These changes aim to streamline the item inspection process and improve data management across multiple company implementations.
17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
export { SmartExcelUploadModal } from "./SmartExcelUploadModal";
|
|
export type {
|
|
SmartExcelUploadConfig,
|
|
SheetConfig,
|
|
SmartColumn,
|
|
ReferenceSheetConfig,
|
|
ConditionalRule,
|
|
DropdownConfig,
|
|
ItemProcessMapping,
|
|
IndirectOptionsConfig,
|
|
ParsedSheetData,
|
|
ParseResult,
|
|
ValidationError,
|
|
} from "./types";
|
|
export { generateTemplate, regenerateHash } from "./templateGenerator";
|
|
export { parseTemplate } from "./templateParser";
|