-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add isFromCreditCardImport to check the transaction from import card #77243
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
Changes from all commits
4dbd926
f26a6d2
6c9fbcf
e7bc85c
035ea55
2e006ac
a1a5bd9
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 |
|---|---|---|
|
|
@@ -82,7 +82,7 @@ import { | |
| hasMissingSmartscanFields, | ||
| hasReservationList, | ||
| hasRoute as hasRouteTransactionUtils, | ||
| isManagedCardTransaction as isCardTransactionTransactionUtils, | ||
| isFromCreditCardImport as isCardTransactionTransactionUtils, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change caused #81997. Replacing |
||
| isCategoryBeingAnalyzed, | ||
| isDistanceRequest as isDistanceRequestTransactionUtils, | ||
| isExpenseUnreported as isExpenseUnreportedTransactionUtils, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this unused? If it's used shouldn't we update it somewhere in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We only need to change
isManagedCardTransactiontoisFromCreditCardImport, because in the file we useisCardTransactionTransactionUtils. Both functions have the same params and the same purpose, butisFromCreditCardImportenhances to check imported transaction from personal card.