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 @@ -17,6 +17,9 @@ codeunit 8064 "Sub. Contract Billing Printout"
SalesDocuments: Codeunit "Sales Documents";
EntryNo: Integer;
begin
TempJobLedgerEntryBuffer.Reset();
TempJobLedgerEntryBuffer.DeleteAll();
Clear(ColumnHeaders);
if not SalesInvoiceHeader."Recurring Billing" then
exit;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ reportextension 8008 "Contract Standard Sales Inv." extends "Standard Sales - In

local procedure FillTempContractBillingDetailsGroupingBuffer()
begin
TempContractBillingDetailsGroupingBuffer.Reset();
TempContractBillingDetailsGroupingBuffer.DeleteAll();
TempContractBillingDetailsBuffer.Reset();
if TempContractBillingDetailsBuffer.FindSet() then
repeat
Expand Down
Loading