在浏览了一些博客和文档之后,这里是我发现的摘要。
首先,有一个主要限制,因为 Captions 只能在 Enum 类型的上下文中处理,并且至少到目前为止,Business Central 365 SaaS 解决方案不支持通用 Enum(例如 EnumRef,如 RecordRef 和 FieldRef)。这意味着必须在逐个枚举的基础上创建字幕的文本列表。
但是,一旦创建了 Captions 列表,然后使用 [Text] 的 Name、Ordinal 和 Caption Lists 的组合,您就可以编写适用于任何 Enum 的通用代码。
一个问题,当你在 VS Code 中使用 TEnum 代码片段时,它会将第一个元素默认为 0。我们已经学会了像上面的部分代码那样将其设为 Default,或者将其更改为 1。这样做的原因是如果有任何机会每次都将 Enum 与 StrMenu 命令一起使用,则 StrMenu 默认 0 作为 Cancel 返回值。在这种情况下,您永远不能选择 0 Ordinal Enum,因为 ti 将被视为已取消。
要创建要在代码中使用的 Enum 实例,请创建类似于 MyChoices: Enum "Defined Choices"; 的 Var 变量。如果您还定义了 MyChoice: Enum: "Defined Choices",则可以将它们与 if MyChoice = MyChoices::FirstChoice then 等进行比较。
下面是一些示例代码,其中包含一些不同的 Enum 样式以及一种允许您为 Captions 创建 [Text] 列表的方法。同样,必须为每个特定的枚举进行编码。一个。在 VS Code 中,使用 AL Go 创建一个新的 HelloWorld 应用 b. 更改 app.json 文件名称和发布者,我命名为 EnumHelper 注意:我们总是定义发布者,因为您无法在 SaaS 中过滤默认发布者 c。将 HelloWorld.al 文件中的所有代码替换为以下代码 注意:为简化起见,以下所有内容都在同一个文件中 d. 该代码是会计科目表页面的 PageExtension 并运行 OnOpenPage 触发器 这允许轻松调用代码,而无需一堆设置代码。
这是允许您创建字幕列表的代码。变量 myOrdinal 是一个整数,而 Flagged 是一个定义的枚举。注意 Enum::EnumName,类似于 Page::PageName 或 Database::TableName。
foreach myOrdinal in Flagged.Ordinals do begin
// Enum definition, NOT an enum instance.
captions.Add(Format(Enum::Flagged.FromInteger(myOrdinal)));
end;
所有代码(抱歉,格式不完全正确)
枚举 50200 FourStates { 可扩展 = true;
value(0; Default) { Caption = ' '; }
value(1; OH) { Caption = 'Ohio'; }
value(2; TX) { Caption = 'Texas'; }
value(3; NC) { Caption = 'North Carolina'; }
value(4; IA) { Caption = 'Iowa'; }
value(5; MO) { Caption = 'Missouri'; }
}
枚举 50201 标记 { 可扩展 = true;
value(0; Default) { Caption = ' '; }
value(1; Bold) { Caption = 'Bold'; }
value(2; ITalic) { Caption = 'Italid '; }
value(4; Underline) { Caption = 'Underline'; }
value(8; BoldItalic) { Caption = 'Bold & Italic'; }
value(16; BoldUnderline) { Caption = 'Bold & Underline '; }
value(32; ItalicUnderline) { Caption = 'Italic & Underline'; }
value(64; All3Options) { Caption = 'All 3 Options'; }
}
枚举 50202 随机 { 可扩展 = true;
value(0; Default) { Caption = ' '; }
value(7; Good) { Caption = 'The Good'; }
value(5; Bad) { Caption = 'The Bad'; }
value(11; Ugly) { Caption = 'The Ugly'; }
}
枚举 50203 ProcessFlowOptions { 可扩展 = true;
value(0; Default) { Caption = ' '; }
value(1; Flagged) { Caption = 'Flagged'; }
value(2; Randomized) { Caption = 'Randomized'; }
value(4; FourStates) { Caption = 'FourStates'; }
}
pageextension 50200 "Chart of Accounts EH" extends "Chart of Accounts" { var // 枚举实例变量。myFlagged:枚举标记;myFourStates:枚举 FourStates;myRandomized:随机枚举;
trigger OnOpenPage();
begin
case UserID.ToLower() of
'larry':
Message('Hello Larry, this is an extension for October testing.');
'vicki':
Message('Good morning Vicki, this is an extension for October testing.');
else
if Confirm('Hello %1 from EnumHelper.\\Click Yes to process or no to cancel.', true, UserID) then begin
ProcessEnumerations();
end;
end;
end;
local procedure ProcessEnumerations()
var
allLines: TextBuilder;
randomCaptions: List of [Text];
flaggedCaptions: List of [Text];
fourStatesCaptions: List of [Text];
begin
GetEnumCaptions(randomCaptions, flaggedCaptions, fourStatesCaptions);
IterateEnumNamesOrdinalsAndCaptions(allLines, randomCaptions, flaggedCaptions, fourStatesCaptions);
Message(allLines.ToText());
end;
local procedure GetEnumCaptions(randomCaptions: List of [Text]; flaggedCaptions: List of [Text]; fourStatesCaptions: List of [Text])
begin
GetCaptions(randomCaptions, ProcessFlowOptions::Randomized);
GetCaptions(flaggedCaptions, ProcessFlowOptions::Flagged);
GetCaptions(fourStatesCaptions, ProcessFlowOptions::FourStates);
end;
local procedure IterateEnumNamesOrdinalsAndCaptions(allLines: TextBuilder; randomCaptions: List of [Text]; flaggedCaptions: List of [Text]; fourStatesCaptions: List of [Text])
begin
IterateEnumNamesOrdinalsAndCaptions('Flagged Enum', allLines, myFlagged.Names, myFlagged.Ordinals, flaggedCaptions);
IterateEnumNamesOrdinalsAndCaptions('Randomized Enum', allLines, myRandomized.Names, myRandomized.Ordinals, randomCaptions);
IterateEnumNamesOrdinalsAndCaptions('FourStates Enum', allLines, myFourStates.Names, myFourStates.Ordinals, fourStatesCaptions);
end;
local procedure IterateEnumNamesOrdinalsAndCaptions(title: Text; allLines: TextBuilder; enumNames: List of [Text]; enumOrdinals: List of [Integer]; enumCaptions: List of [Text])
var
i: Integer;
enumLine: TextBuilder;
enumLines: TextBuilder;
begin
allLines.AppendLine(title);
allLines.appendLine();
for i := 1 to enumNames.Count do begin
Clear(enumLine);
enumLine.AppendLine('EnumName: ''' + enumNames.Get(i) + ''',');
enumLine.AppendLine('EnumOrdinal: ' + Format(enumOrdinals.Get(i)) + ',');
enumLine.AppendLine('EnumCaption: ''' + enumCaptions.Get(i) + '''.');
//enumLine.AppendLine('EnumName: ''' + enumNames.Get(i) + ''', EnumOrdinal: ' + ordinal + ', EnumCaption: ''' + enumCaptions.Get(i) + '''');
enumLines.AppendLine(enumLine.ToText());
end;
allLines.AppendLine(enumLines.ToText());
end;
local procedure GetCaptions(captions: List of [Text]; processFlowOption: Enum ProcessFlowOptions)
var
myOrdinal: Integer;
myProcessFlowOptions: Enum ProcessFlowOptions;
begin
// Load captions by iterating specific Enums.
case processFlowOption of
myProcessFlowOptions::Flagged:
begin
foreach myOrdinal in Flagged.Ordinals do begin
// Enum definition, NOT an enum instance.
captions.Add(Format(Enum::Flagged.FromInteger(myOrdinal)));
end;
end;
myProcessFlowOptions::Randomized:
begin
foreach myOrdinal in Randomized.Ordinals do begin
// Enum definition, NOT an enum instance.
captions.Add(Format(Enum::Randomized.FromInteger(myOrdinal)));
end;
end;
myProcessFlowOptions::FourStates:
begin
foreach myOrdinal in FourStates.Ordinals do begin
// Enum definition, NOT an enum instance.
captions.Add(Format(Enum::FourStates.FromInteger(myOrdinal)));
end;
end;
end;
end;
}
享受