2015-08-09 19:16:33 +00:00
|
|
|
-- yammat - Yet Another MateMAT
|
|
|
|
-- Copyright (C) 2015 Amedeo Molnár
|
|
|
|
--
|
|
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
|
|
-- it under the terms of the GNU Affero General Public License as published
|
|
|
|
-- by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
-- (at your option) any later version.
|
|
|
|
--
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
-- GNU Affero General Public License for more details.
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU Affero General Public License
|
|
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-04-04 04:46:33 +00:00
|
|
|
module Handler.Payout where
|
|
|
|
|
|
|
|
import Import
|
|
|
|
import Handler.Common
|
|
|
|
import qualified Data.Text as T
|
|
|
|
|
|
|
|
data Payment = Payment
|
|
|
|
{ paymentAmount :: Int
|
|
|
|
, paymentDesc :: T.Text
|
|
|
|
}
|
|
|
|
|
|
|
|
getPayoutR :: Handler Html
|
|
|
|
getPayoutR = do
|
2015-10-22 21:57:27 +00:00
|
|
|
(payoutWidget, enctype) <- generateFormPost
|
|
|
|
$ renderBootstrap3 BootstrapBasicForm payoutForm
|
2018-09-04 16:06:12 +00:00
|
|
|
defaultLayout $ do
|
|
|
|
setTitleI MsgPayoutFromCash
|
2015-04-04 04:46:33 +00:00
|
|
|
$(widgetFile "payout")
|
|
|
|
|
|
|
|
postPayoutR :: Handler Html
|
|
|
|
postPayoutR = do
|
2015-10-22 21:57:27 +00:00
|
|
|
((res, _), _) <- runFormPost
|
|
|
|
$ renderBootstrap3 BootstrapBasicForm payoutForm
|
2015-04-04 04:46:33 +00:00
|
|
|
case res of
|
|
|
|
FormSuccess payment -> do
|
2017-10-19 15:11:33 +00:00
|
|
|
balance <- getCashierBalance
|
2017-10-19 20:47:37 +00:00
|
|
|
if balance >= paymentAmount payment
|
|
|
|
then do
|
|
|
|
msg <- renderMessage' $ MsgPayout $ paymentDesc payment
|
|
|
|
updateCashier (- (paymentAmount payment)) msg
|
|
|
|
setMessageI MsgPaidOut
|
|
|
|
redirect HomeR
|
|
|
|
else do
|
|
|
|
setMessageI MsgNotEnoughFunds
|
|
|
|
redirect HomeR
|
2015-04-04 04:46:33 +00:00
|
|
|
_ -> do
|
2015-04-09 22:40:58 +00:00
|
|
|
setMessageI MsgNotPaidOut
|
2015-09-14 22:49:13 +00:00
|
|
|
redirect JournalR
|
2015-04-04 04:46:33 +00:00
|
|
|
|
2015-10-22 21:57:27 +00:00
|
|
|
payoutForm :: AForm Handler Payment
|
|
|
|
payoutForm = Payment
|
|
|
|
<$> areq currencyField (bfs MsgValue) Nothing
|
|
|
|
<*> areq textField (bfs MsgDescription) Nothing
|
|
|
|
<* bootstrapSubmit (msgToBSSubmit MsgDoPayout)
|