@tomei/product
Version:
NestJS package for product module
17 lines (16 loc) • 558 B
TypeScript
import { Model } from 'sequelize-typescript';
import { StockInventory } from './stock-inventory.entity';
export declare class StockLocation extends Model {
InventoryId: string;
LocationCode: string;
TotalUnits: number;
TotalUnitsAvailable: number;
TotalUnitsInCurrentOrder: number;
TotalUnitsSold: number;
TotalUnitsReserved: number;
TotalUnitsTransitInbound: number;
TotalUnitsTransitOutbound: number;
TotalUnitsOnConsignment: number;
TotalUnitsVoid: number;
StockInventory: StockInventory;
}