Skip to content

Commit

Permalink
modified littlepay/elavon transaction comparison table to include ccj…
Browse files Browse the repository at this point in the history
…pa (#2589)
  • Loading branch information
charlie-costanzo authored May 12, 2023
1 parent d668481 commit e638859
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

WITH fct_elavon__transactions AS (
SELECT

*,
-- this same treatment for the other customers in the future when we expand dashboard for other customers?
IF(customer_name = 'MST TAP TO RIDE', 'mst', customer_name) AS participant_id
CASE
WHEN customer_name = 'MST TAP TO RIDE' THEN 'mst'
WHEN customer_name = 'CAPITOL CORRIDOR TAP2RIDE' THEN 'ccjpa'
ELSE customer_name
END AS participant_id

FROM {{ ref('fct_elavon__transactions') }}
),

Expand Down

0 comments on commit e638859

Please sign in to comment.