-
Notifications
You must be signed in to change notification settings - Fork 35
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
feat: generate invoice for overdraft credits #796
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Pull Request Test Coverage Report for Build 12154689030Details
💛 - Coveralls |
kushsharma
force-pushed
the
token-invoice
branch
from
October 20, 2024 08:48
d87e971
to
288c700
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
October 21, 2024 04:39
288c700
to
fe89ad2
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
October 21, 2024 04:52
fe89ad2
to
f2911fd
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 9, 2024 15:28
f2911fd
to
b5c6f8b
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 10, 2024 07:08
b5c6f8b
to
0ab130a
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 10, 2024 08:48
0ab130a
to
1a4e969
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 10, 2024 11:13
1a4e969
to
5e3baf7
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 10, 2024 12:18
5e3baf7
to
2192e76
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 10, 2024 12:48
2192e76
to
1551444
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 11, 2024 04:37
1551444
to
129b56e
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 11, 2024 04:40
129b56e
to
1330151
Compare
kushsharma
force-pushed
the
token-invoice
branch
from
November 11, 2024 04:43
1330151
to
e754cff
Compare
anujk14
requested changes
Nov 19, 2024
AmanGIT07
reviewed
Nov 22, 2024
anujk14
approved these changes
Nov 29, 2024
It's necessary to configure the product name to calculate per unit price before the overdraft credits can be invoiced in `billing.customer.credit_overdraft_product`. If not set, invoice reconcilation and creation is skipped. If there is already an invoice for overdraft credits for same time range, no new invoice will be created for that customer. Currently the system generates them on the first day of the month. When the overdraft invoice is created for the first time, it accounts for transactions from the start of customer life but then moving forward only accounts from the last month time range. Reconcilation of these invoice happens on same cadence as invoices gets synced from the billing provider. Signed-off-by: Kush Sharma <[email protected]>
kushsharma
force-pushed
the
token-invoice
branch
from
December 4, 2024 07:04
e754cff
to
8a766fa
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It's necessary to configure the product name to calculate per unit price before the overdraft credits can be invoiced in
billing.customer.credit_overdraft_product
. If not set, invoice reconcilation and creation is skipped.If there is already an invoice for overdraft credits for same time range, no new invoice will be created for that customer. Currently the system generates them on the first day of the month.
Reconciliation of these invoice happens on same cadence as invoices gets synced from the billing provider.