import { IDefaultAttributes } from './commonInterface'; import { RMS_STOCK_SCOPE, COMMAN_STATUS } from '../constants/app'; export interface IRmsStockAttributes extends IDefaultAttributes { id: string; instituteId: string; resourceId: string; stockScope: RMS_STOCK_SCOPE; locationId?: string | null; batchId?: string | null; availableQty: number; reservedQty: number; issuedQty: number; damagedQty: number; expiredQty: number; totalQty: number; status: COMMAN_STATUS; }