Page 7307 Bin Type List, source in 29

Source29

src/Layers/W1/BaseApp/Warehouse/Structure/BinTypeList.Page.al67 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.Warehouse.Structure;

page 7307 "Bin Type List"
{
    Caption = 'Bin Type List';
    Editable = false;
    PageType = List;
    SourceTable = "Bin Type";

    layout
    {
        area(content)
        {
            repeater(Control1)
            {
                ShowCaption = false;
                field("Code"; Rec.Code)
                {
                    ApplicationArea = Warehouse;
                }
                field(Description; Rec.Description)
                {
                    ApplicationArea = Warehouse;
                }
                field(Receive; Rec.Receive)
                {
                    ApplicationArea = Warehouse;
                }
                field(Ship; Rec.Ship)
                {
                    ApplicationArea = Warehouse;
                }
                field("Put Away"; Rec."Put Away")
                {
                    ApplicationArea = Warehouse;
                }
                field(Pick; Rec.Pick)
                {
                    ApplicationArea = Warehouse;
                }
            }
        }
        area(factboxes)
        {
            systempart(Control1900383207; Links)
            {
                ApplicationArea = RecordLinks;
                Visible = false;
            }
            systempart(Control1905767507; Notes)
            {
                ApplicationArea = Notes;
                Visible = false;
            }
        }
    }

    actions
    {
    }
}