Skip to content

Commit

Permalink
Remove useless wizard code
Browse files Browse the repository at this point in the history
  • Loading branch information
picazin committed Oct 2, 2020
1 parent a256088 commit 899a56a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 19 deletions.
5 changes: 5 additions & 0 deletions .vscode/picazin.ruleset.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@
"id": "AA0072",
"action": "Hidden",
"justification": "WTF?!?!"
},
{
"id": "AL0604",
"action": "Hidden",
"justification": "Under Review"
}
]
}
2 changes: 1 addition & 1 deletion .vscode/rad.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"Added":[],"Modified":[{"Id":83212,"Kind":12,"Name":"EXM Setup Wizard","PackagePath":"/src/src/page/EXMSetupWizard.Page.al"}],"Removed":[]}
{"Added":[],"Modified":[],"Removed":[]}
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "b9954c96-ee6b-44ff-9b0d-3d8146fc034a",
"name": "Extension Manager",
"publisher": "picazin dev",
"version": "0.2.9.3",
"version": "0.2.9.4",
"brief": "Manager for developing extensions.",
"description": "Manage your extension data. Development status. Customers, invoicing and all related data.",
"privacyStatement": "http://www.picazin.dev",
Expand Down
18 changes: 1 addition & 17 deletions src/page/EXMSetupWizard.Page.al
Original file line number Diff line number Diff line change
Expand Up @@ -271,45 +271,37 @@ page 83212 "EXM Setup Wizard"
FirstPageVisible := true;
SecondPageVisible := false;
ThirdPageVisible := false;
FinishEnabled := false;
BackEnabled := false;
NextEnabled := true;
DonateEnable := false;
end;

local procedure ShowSecondPage();
begin
FirstPageVisible := false;
SecondPageVisible := true;
ThirdPageVisible := false;
FinishEnabled := false;
BackEnabled := true;
NextEnabled := true;
DonateEnable := false;
end;

local procedure ShowThirdPage();
begin
FirstPageVisible := false;
SecondPageVisible := false;
ThirdPageVisible := true;
FinishEnabled := true;
BackEnabled := true;
NextEnabled := true;
DonateEnable := false;
end;

local procedure ShowFinalPage();
begin
FinalPageVisible := true;
BackEnabled := true;
NextEnabled := false;
DonateEnable := true;
end;

local procedure ResetControls();
begin
FinishEnabled := true;
BackEnabled := true;
NextEnabled := true;
FirstPageVisible := false;
Expand All @@ -329,14 +321,6 @@ page 83212 "EXM Setup Wizard"
MediaRepositoryStandard: Record "Media Repository";
MediaResourcesStandard: Record "Media Resources";
Step: Option First,Second,Third,Finish;
TopBannerVisible: Boolean;
FirstPageVisible: Boolean;
SecondPageVisible: Boolean;
ThirdPageVisible: Boolean;
FinalPageVisible: Boolean;
FinishEnabled: Boolean;
BackEnabled: Boolean;
NextEnabled: Boolean;
DonateEnable: Boolean;
TopBannerVisible, FirstPageVisible, SecondPageVisible, ThirdPageVisible, FinalPageVisible, BackEnabled, NextEnabled : Boolean;
}

0 comments on commit 899a56a

Please sign in to comment.