summaryrefslogtreecommitdiff
path: root/interact.go
diff options
context:
space:
mode:
authorNikolaus Gotsche <n@softwarefools.com>2019-05-08 01:08:42 +0200
committerNikolaus Gotsche <n@softwarefools.com>2019-05-08 01:08:42 +0200
commit1308154bfde61973308df8e908a45cd95781939c (patch)
tree2a809eab566ad216af1f83d456fb161cbcc2af20 /interact.go
parent8e7dec5dd1b4be5fd752acd6468d0cd801501e1f (diff)
More Analysis - still test
Diffstat (limited to 'interact.go')
-rw-r--r--interact.go12
1 files changed, 4 insertions, 8 deletions
diff --git a/interact.go b/interact.go
index a03a672..ab5a950 100644
--- a/interact.go
+++ b/interact.go
@@ -230,16 +230,11 @@ func interact(fulldb bool) {
c.Println(boldRed(arg, " is not a valid id!"))
}
} else {
- /*
- tids := GetTaskIds()
- selids, lids := GetPaymentList(tids, false,false)
- choice := c.MultiChoice(lids, "Select a Task to Edit")
+ selids, lids := GetPaymentList()
+ choice := c.MultiChoice(lids, "Select a Payment to Edit")
if choice > -1 {
- deleteTask(selids[choice])
+ DeletePayment(selids[choice])
}
- */
- //c.Println(boldRed("deletetask <id> - Please enter an id"))
- //allProjects()
}
c.Println(promptcol("______________________"))
},
@@ -793,6 +788,7 @@ func interact(fulldb bool) {
Test Export`,
Func: func(c *ishell.Context) {
c.Println("Said new!!!")
+ MakeAnalysis()
//getInterAutoInput("Really?",autostuff)
},
})