Skip to content

Commit

Permalink
Codeflow comments
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasMoth committed Feb 9, 2024
1 parent 18d6ed2 commit 7e740b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Business Foundation/App/NoSeries/readme_refactoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if "No." = '' then begin
GLSetup.Get();
GLSetup.TestField("Bank Account Nos.");
"No. Series" := GLSetup."Bank Account Nos.";
NoSeries.AreRelated(GLSetup."Bank Account Nos.", xRec."No. Series") then
if NoSeries.AreRelated(GLSetup."Bank Account Nos.", xRec."No. Series") then
"No. Series" := xRec."No. Series"
"No." := NoSeries.GetNextNo("No. Series");
end;
Expand All @@ -69,7 +69,7 @@ if "No." = '' then begin
NoSeriesManagement.RaiseObsoleteOnBeforeInitSeries(GLSetup."Bank Account Nos.", xRec."No. Series", 0D, "No.", "No. Series", IsHandled);
if not IsHandled then begin
"No. Series" := GLSetup."Bank Account Nos.";
NoSeries.AreRelated(GLSetup."Bank Account Nos.", xRec."No. Series") then
if NoSeries.AreRelated(GLSetup."Bank Account Nos.", xRec."No. Series") then
"No. Series" := xRec."No. Series"
"No." := NoSeries.GetNextNo("No. Series");
NoSeriesManagement.RaiseObsoleteOnAfterInitSeries("No. Series", GLSetup."Bank Account Nos.", 0D, "No.");
Expand Down

0 comments on commit 7e740b1

Please sign in to comment.