interface IInput {
    data: {
        inventory_id: string;
        splits: {
            cell_id?: null | string;
            container_id?: null | string;
            quantity: number;
        }[];
    };
}

Properties

Properties

data: {
    inventory_id: string;
    splits: {
        cell_id?: null | string;
        container_id?: null | string;
        quantity: number;
    }[];
}

Type declaration

  • inventory_id: string

    Позиция склада, которую раскладывают по нескольким местам.

  • splits: {
        cell_id?: null | string;
        container_id?: null | string;
        quantity: number;
    }[]

    Доли разбиения; сумма количеств обязана равняться количеству позиции.