Advertisement
tuco80

Untitled

Apr 30th, 2020
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.19 KB | None | 0 0
  1. //Diamond 1-Card Memberships
  2. map.put("61", "989997"); //61 Exp Diamond 1 Card -> 989997  DI Renewal 1 Cards On-Line
  3. map.put("63", "989997"); //63 Pre Renewal DI 1 Card  -> 989997  DI Renewal 1 Cards On-Line
  4.  
  5. //Diamond 2-Card Memberships
  6. map.put("62", "989993"); //62 Exp Diamond 2 Cards -> 989993 DI Renewal 2 Cards On-Line
  7. map.put("64", "989993"); //64 Pre Renewal DI 2 Cards -> 989993 DI Renewal 2 Cards On-Line
  8.  
  9. //Business Memberships
  10. map.put("57", "998899"); //57 Expired Business -> 998899 BS Renewal On-Line
  11. map.put("59", "998899"); //59 Pre Renewal Business -> 998899 BS Renewal On-Line
  12.  
  13. //PLATINUM MEMBERSHIPS
  14. //Diamond 1-Card Memberships
  15. map.put("61" + PLATINUM_SUFFIX, "989996"); //61 Exp Diamond 1 Card -> 989996 DI Platinum Renewal
  16. map.put("63" + PLATINUM_SUFFIX, "989996"); //63 Pre Renewal DI 1 Card  -> 989996   DI Platinum Renewal
  17.  
  18. //Diamond 2-Card Memberships
  19. map.put("62" + PLATINUM_SUFFIX, "989996"); //64 Pre Renewal DI 2 Cards -> 989996   DI Platinum Renewal
  20. map.put("64" + PLATINUM_SUFFIX, "989996"); //62 Exp Diamond 2 Cards -> 989996  DI Platinum Renewal
  21.  
  22. //Business Memberships
  23. map.put("57" + PLATINUM_SUFFIX, "998897"); //57 Expired Business -> 998897 BS PL Renewal On-Line
  24. map.put("59" + PLATINUM_SUFFIX, "998897"); //59 Pre Renewal Business -> 998897 BS PL Renewal On-Line
  25.  
  26. //29.11.2018 - Daniel Badilla: Issue #277, we need to map the "PURGED"
  27. //block statuses (51 & 52).  52 is simple enough but 51 is not
  28. map.put("52", "998899"); //57 Expired Business -> 998897 BS PL Renewal On-Line
  29. map.put("52" + PLATINUM_SUFFIX, "998897"); //59 Pre Renewal Business -> 998897 BS PL Renewal On-Line
  30.  
  31. //REGULAR PURGED MEMBERSHIPS
  32. //Diamond
  33. map.put("51-DI" + ONE_CARD_SUFFIX, "989997"); //51 PURGED DI 1 Card -> 989997 DI Renewal 1 Cards On-Line
  34. map.put("51-DI" + TWO_CARD_SUFFIX, "989993"); //51 PURGED DI 2 Card -> 989993 DI Renewal 2 Cards On-Line
  35.  
  36. //Business
  37. map.put("51-BS", "998899"); //51 PURGED BS -> 998899 BS Renewal On-Line
  38.  
  39. //PLATINUM PURGED MEMBERSHIPS
  40. //Diamond
  41. map.put("51-DI" + PLATINUM_SUFFIX, "989996"); //51 PURGED DI Pt -> 989996 DI Platinum Renewal
  42.  
  43. //Business
  44. map.put("51-BS" + PLATINUM_SUFFIX, "998897"); //51 PURGED BS Pt -> 998897 BS PL Renewal On-Line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement