Skip to content

Commit

Permalink
Merge pull request #2044 from SkillsFundingAgency/CON-1560-MA-EOF-Mis…
Browse files Browse the repository at this point in the history
…sing-from-download-transactions-report

CON - 1560 : For Dev - MA - EOF Missing from Download Transactions Re…
  • Loading branch information
narendranogothu authored Apr 29, 2020
2 parents 64f88e3 + 4cadd7a commit 0463fed
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ SELECT DATEADD(dd, DATEDIFF(dd, 0, tl.DateCreated), 0) AS DateCreated,
NULL AS TransferReceiverAccountName
FROM [employer_financial].TransactionLine tl
LEFT JOIN [employer_financial].[TransactionLineTypes] tlt
ON tlt.TransactionType = 3
ON tlt.TransactionType = 5
WHERE tl.AccountId = @accountId
AND DateCreated >= @FromDate
AND DateCreated < @ToDate
AND tl.TransactionType = 5
AND tl.Amount > 0
AND tl.Amount <> 0

UNION ALL

Expand Down

0 comments on commit 0463fed

Please sign in to comment.