-
Notifications
You must be signed in to change notification settings - Fork 359
[Master]- Recurring billing is stuck due to an error related to updating the Subscription Line table #7404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
[Master]- Recurring billing is stuck due to an error related to updating the Subscription Line table #7404
Changes from all commits
81e40ac
23e8094
73de5ff
077a0e0
8e4e140
5d5365d
d673f1a
856028b
07ab7b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1946,9 +1946,13 @@ table 8059 "Subscription Line" | |
| LastDateInLastMonth := CalcDate(PeriodFormula, FromDate); | ||
| LastDateInLastMonth := CalcDate('<CM>', LastDateInLastMonth); | ||
| NextToDate := LastDateInLastMonth - DistanceToEndOfMonth - 1; | ||
| if NextToDate < FromDate then | ||
| NextToDate := CalcDate(PeriodFormula, FromDate) - 1; | ||
neeleshsinghal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| end; | ||
| end; | ||
| end; | ||
| if NextToDate < FromDate then | ||
| NextToDate := FromDate; | ||
neeleshsinghal marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| end; | ||
|
Comment on lines
1946
to
1956
|
||
|
|
||
| local procedure GetBillingReferenceDate() BillingReferenceDate: Date | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.