Interface InventoryTransferData

Inventory transfer data

interface InventoryTransferData {
    from_location_id: number;
    notes?: string;
    quantity: number;
    reference_number?: string;
    to_location_id: number;
}

Properties

from_location_id: number

Source location ID

notes?: string

Transfer notes

quantity: number

Quantity to transfer

reference_number?: string

Reference number

to_location_id: number

Destination location ID