Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ codeunit 310 "No. Series"
/// <summary>
/// Verifies that the No. Series allows using manual numbers.
/// </summary>
/// <remark>This function allows manual numbers for blank No. Series Codes.</remark>
/// <param name="NoSeriesCode">Code for the No. Series.</param>
procedure TestManual(NoSeriesCode: Code[20])
var
Expand All @@ -174,7 +173,6 @@ codeunit 310 "No. Series"
/// <summary>
/// Verifies that the No. Series allows using manual numbers and throws an error for the document no. if it does not.
/// </summary>
/// <remark>This function allows manual numbers for blank No. Series Codes.</remark>
/// <param name="NoSeriesCode">Code for the No. Series.</param>
/// <param name="DocumentNo">Document No. to be shown in the error message.</param>
procedure TestManual(NoSeriesCode: Code[20]; DocumentNo: Code[20])
Expand All @@ -187,7 +185,6 @@ codeunit 310 "No. Series"
/// <summary>
/// Determines whether the No. Series allows using manual numbers.
/// </summary>
/// <remark>This function allows manual numbers for blank No. Series Codes.</remark>
/// <param name="NoSeriesCode">Code for the No. Series.</param>
/// <returns>True if the No. Series allows manual numbers, false otherwise.</returns>
procedure IsManual(NoSeriesCode: Code[20]): Boolean
Expand Down
Loading