2015-04-04 04:46:33 +00:00
|
|
|
module Handler.Journal where
|
|
|
|
|
|
|
|
import Import as I
|
|
|
|
import Data.List as L
|
|
|
|
import Handler.Common
|
|
|
|
|
|
|
|
getJournalR :: Handler Html
|
|
|
|
getJournalR = do
|
2015-04-04 06:25:10 +00:00
|
|
|
master <- getYesod
|
2015-04-10 15:00:50 +00:00
|
|
|
rawEntries <- runDB $ selectList [] [Desc TransactionId]
|
|
|
|
entries <- return $ L.reverse $ L.take 30 rawEntries
|
|
|
|
total <- return $ L.sum $ I.map (transactionAmount . entityVal) rawEntries
|
|
|
|
timeLimit <- case L.null entries of
|
|
|
|
False -> return $ transactionTime $ entityVal $ L.head $ entries
|
|
|
|
True -> liftIO getCurrentTime
|
2015-04-10 12:50:44 +00:00
|
|
|
cashChecks <- runDB $ selectList [CashCheckTime >=. timeLimit] [Asc CashCheckId]
|
|
|
|
list <- return $ merge entries cashChecks
|
2015-04-04 04:46:33 +00:00
|
|
|
cashBalance <- getCashierBalance
|
|
|
|
defaultLayout $ do
|
|
|
|
$(widgetFile "journal")
|
2015-04-09 19:39:39 +00:00
|
|
|
|
2015-04-10 12:50:44 +00:00
|
|
|
merge :: [Entity Transaction] -> [Entity CashCheck] -> [Either Transaction CashCheck]
|
2015-04-09 19:39:39 +00:00
|
|
|
merge [] [] = []
|
2015-04-10 12:50:44 +00:00
|
|
|
merge [] (c:cs) = (Right $ entityVal c) : merge [] cs
|
2015-04-09 19:39:39 +00:00
|
|
|
merge (t:ts) [] = (Left $ entityVal t) : merge ts []
|
|
|
|
merge (t:ts) (c:cs)
|
2015-04-10 12:50:44 +00:00
|
|
|
| transactionTime (entityVal t) < cashCheckTime (entityVal c) = (Left $ entityVal t) : merge ts (c:cs)
|
|
|
|
| transactionTime (entityVal t) > cashCheckTime (entityVal c) = (Right $ entityVal c) : merge (t:ts) cs
|