generated from microsoft/AL-Go-PTE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from fluxxus-nl/Journal_Posting
Journal posting
- Loading branch information
Showing
13 changed files
with
255 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
codeunit 50006 "Conf. Reg.-Show Ledger ASD" | ||
{ | ||
TableNo = "Conference Register ASD"; | ||
|
||
trigger OnRun() | ||
begin | ||
ConfLedgEntry.SetRange("Entry No.", Rec."From Entry No.", Rec."To Entry No."); | ||
PAGE.Run(PAGE::"Conference Ledger Entries ASD", ConfLedgEntry); | ||
end; | ||
|
||
var | ||
ConfLedgEntry: Record "Conference Ledger Entry ASD"; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
page 50020 "Conference Ledger Entries ASD" | ||
{ | ||
ApplicationArea = Jobs; | ||
Caption = 'Conference Ledger Entries'; | ||
DataCaptionFields = "Resource No."; | ||
Editable = false; | ||
PageType = List; | ||
SourceTable = "Conference Ledger Entry ASD"; | ||
SourceTableView = Sorting("Description", "Posting Date") order(descending); | ||
Check warning on line 9 in app/src/page/ConferenceLedgerEntries.Page.al GitHub Actions / Build . (Default) / . (Default)
|
||
UsageCategory = History; | ||
|
||
layout | ||
{ | ||
area(content) | ||
{ | ||
repeater(Lists) | ||
{ | ||
field("Entry Type"; Rec."Entry Type") | ||
{ | ||
ToolTip = 'Specifies the value of the Entry Type field.'; | ||
} | ||
field("Document No."; Rec."Document No.") | ||
{ | ||
ToolTip = 'Specifies the value of the Document No. field.'; | ||
} | ||
field("Journal Batch Name"; Rec."Journal Batch Name") | ||
{ | ||
ToolTip = 'Specifies the value of the Journal Batch Name field.'; | ||
} | ||
field("Resource No."; Rec."Resource No.") | ||
{ | ||
ToolTip = 'Specifies the value of the Resource No. field.'; | ||
} | ||
field("Source Code"; Rec."Source Code") | ||
{ | ||
ToolTip = 'Specifies the value of the Source Code field.'; | ||
} | ||
field("Unit Price"; Rec."Unit Price") | ||
{ | ||
ToolTip = 'Specifies the value of the Unit Price field.'; | ||
} | ||
field("Total Price"; Rec."Total Price") | ||
{ | ||
ToolTip = 'Specifies the value of the Total Price field.'; | ||
} | ||
field("Unit of Measure Code"; Rec."Unit of Measure Code") | ||
{ | ||
ToolTip = 'Specifies the value of the Unit of Measure Code field.'; | ||
} | ||
field("User ID"; Rec."User ID") | ||
{ | ||
ToolTip = 'Specifies the value of the User ID field.'; | ||
} | ||
field("Posting Date"; Rec."Posting Date") | ||
{ | ||
ToolTip = 'Specifies the value of the Posting Date field.'; | ||
} | ||
field(Description; Rec.Description) | ||
{ | ||
ToolTip = 'Specifies the value of the Description field.'; | ||
} | ||
field("Document Date"; Rec."Document Date") | ||
{ | ||
ToolTip = 'Specifies the value of the Document Date field.'; | ||
} | ||
field("Entry No."; Rec."Entry No.") | ||
{ | ||
ToolTip = 'Specifies the value of the Entry No. field.'; | ||
} | ||
field("Gen. Bus. Posting Group"; Rec."Gen. Bus. Posting Group") | ||
{ | ||
ToolTip = 'Specifies the value of the Gen. Bus. Posting Group field.'; | ||
} | ||
/*field("VAT. Bus. Posting Group"; Rec."VAT. Bus. Posting Group") | ||
{ | ||
ToolTip = 'Specifies the value of the VAT. Bus. Posting Group field.'; | ||
}*/ | ||
} | ||
} | ||
|
||
area(factboxes) | ||
{ | ||
systempart(Control1900383207; Links) | ||
{ | ||
ApplicationArea = RecordLinks; | ||
Visible = false; | ||
} | ||
systempart(Control1905767507; Notes) | ||
{ | ||
ApplicationArea = Notes; | ||
Visible = false; | ||
} | ||
} | ||
} | ||
actions | ||
{ | ||
area(processing) | ||
{ | ||
action("&Navigate") | ||
{ | ||
ApplicationArea = Jobs; | ||
Caption = 'Find entries...'; | ||
Image = Navigate; | ||
ShortCutKey = 'Ctrl+Alt+Q'; | ||
ToolTip = 'Find entries and documents that exist for the document number and posting date on the selected document. (Formerly this action was named Navigate.)'; | ||
|
||
trigger OnAction() | ||
begin | ||
Navigate.SetDoc(Rec."Posting Date", Rec."Document No."); | ||
Navigate.SetRec(Rec); | ||
Navigate.Run(); | ||
end; | ||
} | ||
} | ||
} | ||
var | ||
Navigate: Page Navigate; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.