import { Types } from 'mongoose'; export enum StockStatus { UNLOCK = 'UNLOCK', LOCK = 'LOCK', } export enum StockType { CUT = 'CUT', UNCUT = 'UNCUT', } export interface IStock { _id: Types.ObjectId; process: Types.ObjectId; requirement: Types.ObjectId; '#select': boolean; productType: string; lot: string; sku: string; designation: string; stage: string; warehouse: string; quantity: number; srcQty: number; quibble: number; returnDate: any; warehouseLocation: any; container: any; typeMO: any; serie: string; multiMO: any; qtyWeek: number; eqLoad: number; status: StockStatus; stockType: StockType; convertQty: number; ncom: string; }