import { IProductVariantAttr } from './product-variant-attr.interface';
export interface IProductVariantWithInventoryAttr extends IProductVariantAttr {
    TotalUnitsAvailable: number;
    TotalUnitsInCurrentOrder: number;
    TotalUnitsSold: number;
    TotalUnitsReserved: number;
    TotalUnitsInTransit: number;
    TotalUnitsOnConsignment: number;
    TotalUnitsBackOrdered: number;
    TotalUnitsPreOrdered: number;
    StockLowAlertLevel: number;
    StockReorderLevel: number;
    BufferStockLevel: number;
}
