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 @@ -144,7 +144,7 @@ report 8051 "Contract Deferrals Release"
PostingAmount: Decimal;
begin
ShouldRelease := true;
OnBeforeReleaseCustomerContractDeferral(CustomerContractDeferral, ShouldRelease);
OnBeforeReleaseCustomerContractDeferral(CustomerContractDeferral, ShouldRelease, PostingDate);
if not ShouldRelease then begin
UpdateWindow(CustomerContractDeferral."Subscription Contract No.");
exit;
Expand Down Expand Up @@ -199,7 +199,7 @@ report 8051 "Contract Deferrals Release"
PostingAmount: Decimal;
begin
ShouldRelease := true;
OnBeforeReleaseVendorContractDeferral(VendorContractDeferral, ShouldRelease);
OnBeforeReleaseVendorContractDeferral(VendorContractDeferral, ShouldRelease, PostingDate);
if not ShouldRelease then begin
UpdateWindow(VendorContractDeferral."Subscription Contract No.");
exit;
Expand Down Expand Up @@ -413,12 +413,12 @@ report 8051 "Contract Deferrals Release"
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeReleaseCustomerContractDeferral(var CustomerContractDeferral: Record "Cust. Sub. Contract Deferral"; var ShouldReleaseDeferral: Boolean)
local procedure OnBeforeReleaseCustomerContractDeferral(var CustomerContractDeferral: Record "Cust. Sub. Contract Deferral"; var ShouldReleaseDeferral: Boolean; PostingDate: Date)
begin
end;

[IntegrationEvent(false, false)]
local procedure OnBeforeReleaseVendorContractDeferral(var VendorContractDeferral: Record "Vend. Sub. Contract Deferral"; var ShouldReleaseDeferral: Boolean)
local procedure OnBeforeReleaseVendorContractDeferral(var VendorContractDeferral: Record "Vend. Sub. Contract Deferral"; var ShouldReleaseDeferral: Boolean; PostingDate: Date)
begin
end;
}
Loading