2007-03-12 10:40:33 +03:00
|
|
|
module TimeLog
|
|
|
|
where
|
|
|
|
import Utils
|
2007-07-02 18:54:36 +04:00
|
|
|
import Types
|
2007-07-02 20:43:14 +04:00
|
|
|
import Currency
|
2007-03-12 10:58:11 +03:00
|
|
|
import Amount
|
2007-07-04 13:51:37 +04:00
|
|
|
import LedgerTransaction
|
|
|
|
import LedgerEntry
|
|
|
|
import LedgerFile
|
2007-03-12 10:40:33 +03:00
|
|
|
|
|
|
|
instance Show TimeLogEntry where
|
2007-07-04 16:05:54 +04:00
|
|
|
show t = printf "%s %s %s" (show $ tlcode t) (tldatetime t) (tlcomment t)
|
2007-03-12 10:40:33 +03:00
|
|
|
|
|
|
|
instance Show TimeLog where
|
|
|
|
show tl = printf "TimeLog with %d entries" $ length $ timelog_entries tl
|
|
|
|
|
2007-07-04 13:51:37 +04:00
|
|
|
ledgerFromTimeLog :: TimeLog -> LedgerFile
|
2007-03-12 10:40:33 +03:00
|
|
|
ledgerFromTimeLog tl =
|
2007-07-04 13:51:37 +04:00
|
|
|
LedgerFile [] [] (entriesFromTimeLogEntries $ timelog_entries tl)
|
2007-03-12 10:40:33 +03:00
|
|
|
|
2007-07-04 13:51:37 +04:00
|
|
|
entriesFromTimeLogEntries :: [TimeLogEntry] -> [LedgerEntry]
|
2007-03-12 10:40:33 +03:00
|
|
|
|
|
|
|
entriesFromTimeLogEntries [clockin] =
|
|
|
|
entriesFromTimeLogEntries [clockin, clockoutNowEntry]
|
|
|
|
|
|
|
|
entriesFromTimeLogEntries [clockin,clockout] =
|
|
|
|
[
|
2007-07-04 13:51:37 +04:00
|
|
|
LedgerEntry {
|
2007-03-12 10:40:33 +03:00
|
|
|
edate = indate,
|
|
|
|
estatus = True,
|
|
|
|
ecode = "",
|
|
|
|
edescription = accountname,
|
2007-07-04 16:05:54 +04:00
|
|
|
ecomment = "",
|
2007-03-12 10:40:33 +03:00
|
|
|
etransactions = [
|
2007-07-04 16:05:54 +04:00
|
|
|
LedgerTransaction accountname amount "",
|
|
|
|
LedgerTransaction "TIME" (-amount) ""
|
2007-03-12 10:40:33 +03:00
|
|
|
]}
|
|
|
|
]
|
|
|
|
where
|
2007-07-04 16:05:54 +04:00
|
|
|
accountname = tlcomment clockin
|
|
|
|
intime = tldatetime clockin
|
|
|
|
indate = dateFrom $ tldatetime clockin
|
|
|
|
outtime = tldatetime clockout
|
2007-03-12 20:53:39 +03:00
|
|
|
amount = hours 0 -- read $ outtime - intime
|
2007-03-12 10:40:33 +03:00
|
|
|
|
|
|
|
entriesFromTimeLogEntries many =
|
|
|
|
(entriesFromTimeLogEntries $ take 2 many) ++
|
|
|
|
(entriesFromTimeLogEntries $ drop 2 many)
|
|
|
|
|
|
|
|
clockoutNowEntry = TimeLogEntry ' ' "" ""
|
|
|
|
dateFrom = id
|