Skip to content
Open
Show file tree
Hide file tree
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 @@ -33,6 +33,7 @@ codeunit 13914 "XRechnung Format" implements "E-Document"
BindSubscription(EDocPEPPOLValidationDE);
EDocPEPPOLBIS30.Check(SourceDocumentHeader, EDocumentService, EDocumentProcessingPhase);
UnbindSubscription(EDocPEPPOLValidationDE);
OnAfterCheck(SourceDocumentHeader, EDocumentService, EDocumentProcessingPhase);
end;

procedure Create(EDocumentService: Record "E-Document Service"; var EDocument: Record "E-Document"; var SourceDocumentHeader: RecordRef; var SourceDocumentLines: RecordRef; var TempBlob: Codeunit "Temp Blob")
Expand Down Expand Up @@ -154,4 +155,9 @@ codeunit 13914 "XRechnung Format" implements "E-Document"
local procedure OnBuyerReferenceOnElseCase(var SourceDocumentHeader: RecordRef; EDocumentService: Record "E-Document Service")
begin
end;

[IntegrationEvent(false, false)]
local procedure OnAfterCheck(var SourceDocumentHeader: RecordRef; EDocumentService: Record "E-Document Service"; EDocumentProcessingPhase: Enum "E-Document Processing Phase")
begin
end;
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ codeunit 13920 "ZUGFeRD Format" implements "E-Document"
BindSubscription(EDocPEPPOLValidationDE);
EDocPEPPOLBIS30.Check(SourceDocumentHeader, EDocumentService, EDocumentProcessingPhase);
UnbindSubscription(EDocPEPPOLValidationDE);
OnAfterCheck(SourceDocumentHeader, EDocumentService, EDocumentProcessingPhase);
end;

procedure Create(EDocumentService: Record "E-Document Service"; var EDocument: Record "E-Document"; var SourceDocumentHeader: RecordRef; var SourceDocumentLines: RecordRef; var TempBlob: Codeunit "Temp Blob")
Expand Down Expand Up @@ -181,4 +182,9 @@ codeunit 13920 "ZUGFeRD Format" implements "E-Document"
local procedure OnBuyerReferenceOnElseCase(var SourceDocumentHeader: RecordRef; EDocumentService: Record "E-Document Service")
begin
end;

[IntegrationEvent(false, false)]
local procedure OnAfterCheck(var SourceDocumentHeader: RecordRef; EDocumentService: Record "E-Document Service"; EDocumentProcessingPhase: Enum "E-Document Processing Phase")
begin
end;
}
Loading