mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-08 07:09:28 +03:00
51 lines
1.3 KiB
Haskell
51 lines
1.3 KiB
Haskell
module TimeLog
|
|
where
|
|
import Utils
|
|
import Types
|
|
import Currency
|
|
import Amount
|
|
import Transaction
|
|
import Entry
|
|
import RawLedger
|
|
|
|
instance Show TimeLogEntry where
|
|
show t = printf "%s %s %s" (show $ tcode t) (tdatetime t) (tcomment t)
|
|
|
|
instance Show TimeLog where
|
|
show tl = printf "TimeLog with %d entries" $ length $ timelog_entries tl
|
|
|
|
ledgerFromTimeLog :: TimeLog -> RawLedger
|
|
ledgerFromTimeLog tl =
|
|
RawLedger [] [] (entriesFromTimeLogEntries $ timelog_entries tl)
|
|
|
|
entriesFromTimeLogEntries :: [TimeLogEntry] -> [Entry]
|
|
|
|
entriesFromTimeLogEntries [clockin] =
|
|
entriesFromTimeLogEntries [clockin, clockoutNowEntry]
|
|
|
|
entriesFromTimeLogEntries [clockin,clockout] =
|
|
[
|
|
Entry {
|
|
edate = indate,
|
|
estatus = True,
|
|
ecode = "",
|
|
edescription = accountname,
|
|
etransactions = [
|
|
Transaction accountname amount,
|
|
Transaction "TIME" (-amount)
|
|
]}
|
|
]
|
|
where
|
|
accountname = tcomment clockin
|
|
intime = tdatetime clockin
|
|
indate = dateFrom $ tdatetime clockin
|
|
outtime = tdatetime clockout
|
|
amount = hours 0 -- read $ outtime - intime
|
|
|
|
entriesFromTimeLogEntries many =
|
|
(entriesFromTimeLogEntries $ take 2 many) ++
|
|
(entriesFromTimeLogEntries $ drop 2 many)
|
|
|
|
clockoutNowEntry = TimeLogEntry ' ' "" ""
|
|
dateFrom = id
|