Enum 300 Allocation Rules Impl., source in 29

Source29

src/Layers/W1/BaseApp/Inventory/Tracking/AllocationRulesImpl.Enum.al33 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace Microsoft.Inventory.Tracking;

enum 300 "Allocation Rules Impl." implements "Allocate Reservation"
{
    Extensible = true;
    UnknownValueImplementation = "Allocate Reservation" = "Allocate Reserv. Basic";
    DefaultImplementation = "Allocate Reservation" = "Allocate Reserv. Basic";

    value(0; " ")
    {

    }
    value(1; "Basic (No Conflicts)")
    {
        Caption = 'Basic (No Conflicts)';
        Implementation = "Allocate Reservation" = "Allocate Reserv. Basic";
    }
    value(2; Equally)
    {
        Caption = 'Equally';
        Implementation = "Allocate Reservation" = "Allocate Reserv. Equally";
    }
    value(3; "By Customer Priority")
    {
        Caption = 'By Customer Priority';
        Implementation = "Allocate Reservation" = "Allocate Reserv Cust. Priority";
    }
}