diff --git a/Application.hs b/Application.hs index eec1f1c..cb1e5b5 100644 --- a/Application.hs +++ b/Application.hs @@ -40,6 +40,7 @@ import Handler.ProfitItems import Handler.Orders import Handler.Item import Handler.Problematic +import Handler.LostOrders -- This line actually creates our YesodDispatch instance. It is the second half -- of the call to mkYesodData which occurs in Foundation.hs. Please see the diff --git a/Handler/LostOrders.hs b/Handler/LostOrders.hs new file mode 100644 index 0000000..d26b2fc --- /dev/null +++ b/Handler/LostOrders.hs @@ -0,0 +1,74 @@ +{-# LANGUAGE ScopedTypeVariables #-} + +module Handler.LostOrders where + +import Import +import Database.Persist.Sql (rawSql,RawSql(..)) + +data Lost = Lost + { maxtime :: UTCTime + , realprofit :: Int64 + , typeId :: Int64 + , priceCents :: Int64 + , typeName :: Text + , stationId :: Int64 + , stationName :: Text + } + +instance RawSql Lost where + rawSqlCols _ _ = (7,[]) + rawSqlColCountReason _ = "maxtime, realprofit, typeid, pricecents, typename, stationid, stationname" + rawSqlProcessRow [PersistUTCTime t, PersistRational p, PersistInt64 tid, PersistRational pc, + PersistText tn, PersistInt64 sid, PersistText sn] = Right $ Lost t (c p) tid (c pc) tn sid sn + where c = floor + rawSqlProcessRow [PersistUTCTime t, PersistNull, PersistInt64 tid, PersistRational pc, + PersistText tn, PersistInt64 sid, PersistText sn] = Right $ Lost t 0 tid (c pc) tn sid sn + where c = floor + rawSqlProcessRow a = Left ("Wrong kind of Arguments:" <> (pack $ show a)) + +lostOrderIntervals :: [Int] +lostOrderIntervals = [1,2,7,14,31] + +getLostOrdersR :: Handler Html +getLostOrdersR = getLostOrdersDaysR 1 + +getLostOrdersDaysR :: Int -> Handler Html +getLostOrdersDaysR days = loginOrDo (\(uid,user) -> do + let rawStmt = "SELECT \ + max(date_time) as maxtime, COALESCE(sum(profit-tax-fee),0) as realprofit, type_id, \ + avg(price_cents), type_name, station_id, station_name \ + FROM \ + transaction \ + where \ + \"user\"=? and date_time > CURRENT_TIMESTAMP - INTERVAL '? day' \ + and type_id not in (SELECT distinct type_id FROM \"order\" where \"user\"=? and order_state=0) \ + and type_id not in (select distinct type_id FROM transaction where \"user\"=? and date_time > CURRENT_TIMESTAMP - INTERVAL '? day' and in_stock > 0) \ + group by \ + type_id, type_name, station_id, station_name \ + order by realprofit desc" + lorders :: [Lost] <- runDB $ rawSql rawStmt [toPersistValue uid,toPersistValue days,toPersistValue uid,toPersistValue uid,toPersistValue days] + loginLayout user $ [whamlet| +
Item + | ISK Profit + | Avg Price + | Last Traded + | On Station + $forall (Lost t rp tid pc tn sid sn) <- lorders + |
---|---|---|---|---|
#{tn} + | #{prettyISK rp} + | #{prettyISK pc} + | #{showDateTime t} + | #{sn} + |] + ) diff --git a/config/routes b/config/routes index 8cdea22..81c676a 100644 --- a/config/routes +++ b/config/routes @@ -14,6 +14,8 @@ /analysis/items ProfitItemsR GET /analysis/items/#Int64 ProfitItemsDetailsR GET /orders OrdersR GET +/orders/lost LostOrdersR GET +/orders/lost/#Int LostOrdersDaysR GET /history/#Int64 ItemR GET /history/#Int64/#Int ItemPagedR GET /transactions/problematic ProblematicR GET diff --git a/neat.cabal b/neat.cabal index 1549901..2e8e545 100644 --- a/neat.cabal +++ b/neat.cabal @@ -30,6 +30,7 @@ library Handler.Orders Handler.Item Handler.Problematic + Handler.LostOrders if flag(dev) || flag(library-only) cpp-options: -DDEVELOPMENT diff --git a/templates/login-layout-wrapper.hamlet b/templates/login-layout-wrapper.hamlet index 3a61b10..a343f51 100644 --- a/templates/login-layout-wrapper.hamlet +++ b/templates/login-layout-wrapper.hamlet @@ -41,6 +41,11 @@ $newline never |