Skip to content
Snippets Groups Projects
Commit a973dc19 authored by meskio's avatar meskio :tent:
Browse files

Fix member and proxy in transaction list

parent cded089f
No related branches found
No related tags found
No related merge requests found
......@@ -63,9 +63,9 @@ func (d *DB) ListTransactions(query map[string][]string) (transactions []Transac
}
tx = tx.Where("date <= ?", date)
case "member":
tx = tx.Where("member_num in ?", v)
tx = tx.Where("member in ?", v)
case "proxy":
tx = tx.Where("proxy_num in ?", v)
tx = tx.Where("proxy in ?", v)
case "type":
tx = tx.Where("type in ?", v)
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment