Skip to content

Commit d4d65fa

Browse files
authored
Update PostSubContractRenewal.Codeunit.al (#4126)
#### Work Item(s) #4093 Fixes #4093
1 parent 45fe02f commit d4d65fa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Apps/W1/Subscription Billing/App/Contract Renewal/Codeunits/PostSubContractRenewal.Codeunit.al

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,11 @@ codeunit 8004 "Post Sub. Contract Renewal"
273273
until TempPlannedServiceCommitment.Next() = 0;
274274
end;
275275

276-
local procedure ProcessPlannedServiceCommitment(PlannedServiceCommitment: Record "Planned Subscription Line")
276+
/// <summary>
277+
/// Updates the existing subscription line from planned subscription line. It is used for subscription renewal.
278+
/// </summary>
279+
/// <param name="PlannedServiceCommitment">Record "Planned Subscription Line".</param>
280+
procedure ProcessPlannedServiceCommitment(PlannedServiceCommitment: Record "Planned Subscription Line")
277281
var
278282
ServiceCommitment: Record "Subscription Line";
279283
IsHandled: Boolean;
@@ -370,4 +374,4 @@ codeunit 8004 "Post Sub. Contract Renewal"
370374
local procedure OnBeforeProcessPlannedSubscriptionLine(var PlannedSubscriptionLine: Record "Planned Subscription Line"; var IsHandled: Boolean)
371375
begin
372376
end;
373-
}
377+
}

0 commit comments

Comments
 (0)