storage/GetStoredCdrs takes a higher number of filters for exports

This commit is contained in:
DanB
2014-04-01 11:56:04 +02:00
parent 3313e7c41b
commit eb333fcfc0
6 changed files with 246 additions and 108 deletions

View File

@@ -106,7 +106,8 @@ type CdrStorage interface {
Storage
SetCdr(utils.RawCDR) error
SetRatedCdr(*utils.StoredCdr, string) error
GetStoredCdrs([]string, string, string, string, string, string, string, string, string, string, string, time.Time, time.Time, bool, bool) ([]*utils.StoredCdr, error)
GetStoredCdrs([]string, []string, []string, []string, []string, []string, []string, []string, []string, []string, []string,
time.Time, time.Time, bool, bool) ([]*utils.StoredCdr, error)
RemStoredCdrs([]string) error
}