-
Notifications
You must be signed in to change notification settings - Fork 9
feat: Add Overdue, Rejected and Canceled statuses #205
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
Merged
sstefdev
merged 13 commits into
main
from
162-add-the-rejected-status-to-the-invoice-dashboard
Nov 26, 2024
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
1d67532
feat: added overdue, rejected and canceled status
sstefdev 8a60e3a
fix: better type for argument on checkStatus, null checks
sstefdev 6f45844
Merge branch 'main' into 162-add-the-rejected-status-to-the-invoice-d…
sstefdev ca68be7
fix: abstract the checkStatus function, overdue added
sstefdev 005e558
Merge branch 'main' into 162-add-the-rejected-status-to-the-invoice-d…
sstefdev 254070b
Merge branch 'main' of github.com:RequestNetwork/web-components into …
sstefdev 4775206
fix: overdue and partialy paid fix
sstefdev 2f524c7
Merge branch '162-add-the-rejected-status-to-the-invoice-dashboard' o…
sstefdev 8e984de
fix: updated checkStatus function
sstefdev 91d6d0d
Merge branch 'main' into 162-add-the-rejected-status-to-the-invoice-d…
sstefdev e96f703
Merge branch 'main' of github.com:RequestNetwork/web-components into …
sstefdev d67b4a4
Merge branch '162-add-the-rejected-status-to-the-invoice-dashboard' o…
sstefdev 543bee1
fix: coderabbit comments fix
sstefdev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| export const capitalize = (str: string) => | ||
| (str && str[0].toUpperCase() + str.slice(1)) || ""; | ||
sstefdev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| import { capitalize } from "./capitalize"; | ||
| import { Types } from "@requestnetwork/request-client.js"; | ||
|
|
||
| export const checkStatus = (request: Types.IRequestDataWithEvents | null) => { | ||
| const balance = BigInt(request?.balance?.balance ?? 0); | ||
| const expectedAmount = BigInt(request?.expectedAmount ?? 0); | ||
| const today = new Date(); | ||
| let dueDate: Date | null = null; | ||
| const isPaid = balance >= expectedAmount ? "Paid" : "Partially Paid"; | ||
sstefdev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| try { | ||
| const rawDueDate = request?.contentData?.paymentTerms?.dueDate; | ||
| if (rawDueDate) { | ||
| dueDate = new Date(rawDueDate); | ||
| if (isNaN(dueDate.getTime())) { | ||
sstefdev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| console.warn("Invalid due date format"); | ||
| dueDate = null; | ||
| } | ||
| } | ||
| } catch (e) { | ||
| console.error("Error parsing due date:", e); | ||
| dueDate = null; | ||
| } | ||
|
|
||
| const eventStatus = { | ||
| reject: "Rejected", | ||
| cancel: "Canceled", | ||
| }; | ||
sstefdev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| for (const [event, status] of Object.entries(eventStatus)) { | ||
| if ( | ||
| request?.events?.some( | ||
| (e: { name?: string }) => e?.name?.toLowerCase() === event.toLowerCase() | ||
| ) | ||
| ) { | ||
| return capitalize(status); | ||
| } | ||
| } | ||
MantisClone marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| if (dueDate && dueDate < today) { | ||
| if (balance === BigInt(0)) { | ||
| return "Overdue"; | ||
| } | ||
| return isPaid; | ||
| } else { | ||
| if (balance === BigInt(0)) { | ||
| return "Awaiting Payment"; | ||
| } | ||
| return isPaid; | ||
| } | ||
sstefdev marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| }; | ||
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.
Uh oh!
There was an error while loading. Please reload this page.