diff options
Diffstat (limited to 'interact.go')
| -rw-r--r-- | interact.go | 12 |
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) }, }) |
