Action *cdrlog to StorDb, moved GetCallCost and LogCallCost in CdrStorage, local tests for *cdrlog

This commit is contained in:
DanB
2015-04-29 19:50:03 +02:00
parent 3ce339a592
commit 5ce11a28a3
28 changed files with 138 additions and 401 deletions

View File

@@ -1115,3 +1115,24 @@ func (self *RpcCdrsFilter) AsCdrsFilter() (*CdrsFilter, error) {
}
return cdrFltr, nil
}
type AttrSetActions struct {
ActionsId string // Actions id
Overwrite bool // If previously defined, will be overwritten
Actions []*TPAction // Set of actions this Actions profile will perform
}
type AttrExecuteAction struct {
Direction string
Tenant string
Account string
ActionsId string
}
type AttrSetAccount struct {
Tenant string
Direction string
Account string
ActionPlanId string
AllowNegative bool
}