import { IDefaultAttributes } from './commonInterface'; import { RMS_TRANSACTION_TYPE } from '../constants/app'; export interface IRmsStockTransactionAttributes extends IDefaultAttributes { id: string; instituteId: string; transactionNo: string; resourceId: string; fromLocationId?: string | null; toLocationId?: string | null; batchId?: string | null; transactionType: RMS_TRANSACTION_TYPE; quantity: number; unitCost?: number | null; referenceType?: string | null; referenceId?: string | null; remarks?: string | null; transactionDate: Date; }