Report 300 Carry Out Reservation

App
Base Application
Namespace
Microsoft.Inventory.Tracking
Versions
23-28

Procedures, 1Events, 2

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Inventory/Tracking/CarryOutReservation.Report.al114 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;

using Microsoft.Inventory.Transfer;
using Microsoft.Projects.Project.Planning;
using Microsoft.Sales.Document;

report 300 "Carry Out Reservation"
{
    ApplicationArea = Reservation;
    ProcessingOnly = true;

    dataset
    {
        dataitem(ReservationWkshLine; "Reservation Wksh. Line")
        {
            DataItemTableView = sorting("Journal Batch Name", "Source Type", "Source Subtype", "Source ID", "Source Ref. No.", "Source Batch Name", "Source Prod. Order Line")
                                where(Accept = const(true));

            trigger OnPreDataItem()
            begin
                case DemandType of
                    DemandType::All:
                        SetRange("Source Type");
                    DemandType::"Sales Orders":
                        SetRange("Source Type", Database::"Sales Line");
                    DemandType::"Transfer Orders":
                        SetRange("Source Type", Database::"Transfer Line");
                    DemandType::"Job Usage":
                        SetRange("Source Type", Database::"Job Planning Line");
                    else
                        OnCarryOutReservationOtherDemandType(ReservationWkshLine, DemandType);
                end;
            end;

            trigger OnAfterGetRecord()
            begin
                if "Qty. to Reserve" <> 0 then
                    Reserve();
            end;
        }
    }

    requestpage
    {
        SaveValues = true;

        layout
        {
            area(Content)
            {
                group(Options)
                {
                    field("Demand Type"; DemandType)
                    {
                        Caption = 'Demand Type';
                        ToolTip = 'Specifies the type of demand to be reserved.';
                    }
                }
            }
        }
    }

    var
        ReservationWorksheetMgt: Codeunit "Reservation Worksheet Mgt.";
        DemandType: Enum "Reservation Demand Type";

    local procedure Reserve()
    var
        ReservationManagement: Codeunit "Reservation Management";
        RecordVariant: Variant;
        AvailabilityDate: Date;
        QtyToReserve: Decimal;
        QtyToReserveBase: Decimal;
        SavedQtyToReserve: Decimal;
    begin
        ReservationWorksheetMgt.GetSourceDocumentLine(
          ReservationWkshLine, RecordVariant, QtyToReserve, QtyToReserveBase, AvailabilityDate);
        if not RecordVariant.IsRecord() then
            exit;

        ReservationManagement.SetReservSource(RecordVariant);
        QtyToReserve := MinValue(QtyToReserve, ReservationWkshLine."Qty. to Reserve");
        QtyToReserveBase := MinValue(QtyToReserveBase, ReservationWkshLine."Qty. to Reserve (Base)");
        SavedQtyToReserve := QtyToReserve;

        ReservationManagement.AutoReserveOneLine(1, QtyToReserve, QtyToReserveBase, '', AvailabilityDate);

        ReservationWorksheetMgt.LogChanges(ReservationWkshLine, SavedQtyToReserve - QtyToReserve);
        ReservationWkshLine.Delete(true);
    end;

    local procedure MinValue(A: Decimal; B: Decimal): Decimal
    begin
        if A <= B then
            exit(A);

        exit(B);
    end;

    procedure Initialize(NewDemandType: Enum "Reservation Demand Type")
    begin
        DemandType := NewDemandType;
    end;

    [IntegrationEvent(false, false)]
    local procedure OnCarryOutReservationOtherDemandType(var ReservationWkshLine: Record "Reservation Wksh. Line"; DemandType: Enum "Reservation Demand Type")
    begin
    end;
}