Skip to content

Commit

Permalink
fix: add missing transaction type for max (#805)
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Ryzhov <[email protected]>
  • Loading branch information
idryzhov authored Dec 3, 2023
1 parent 7512a42 commit 1a8c100
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/scrapers/max.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ const FUTURE_PURCHASE_FINANCING = 'מימון לרכישה עתידית';
const MONTHLY_POSTPONED_INSTALLMENTS_TYPE_NAME = 'דחוי חודש תשלומים';
const THIRTY_DAYS_PLUS_TYPE_NAME = 'עסקת 30 פלוס';
const TWO_MONTHS_POSTPONED_TYPE_NAME = 'דחוי חודשיים';
const TWO_MONTHS_POSTPONED_TYPE_NAME2 = 'דחוי 2 ח\' תשלומים';
const MONTHLY_CHARGE_PLUS_INTEREST_TYPE_NAME = 'חודשי + ריבית';
const CREDIT_TYPE_NAME = 'קרדיט';
const CREDIT_OUTSIDE_THE_LIMIT = 'קרדיט-מחוץ למסגרת';
Expand Down Expand Up @@ -116,6 +117,7 @@ function getTransactionType(txnTypeStr: string) {
case MONTHLY_POSTPONED_INSTALLMENTS_TYPE_NAME:
case THIRTY_DAYS_PLUS_TYPE_NAME:
case TWO_MONTHS_POSTPONED_TYPE_NAME:
case TWO_MONTHS_POSTPONED_TYPE_NAME2:
case ACCUMULATING_BASKET:
case INTERNET_SHOPPING_TYPE_NAME:
case MONTHLY_CHARGE_PLUS_INTEREST_TYPE_NAME:
Expand Down

0 comments on commit 1a8c100

Please sign in to comment.