// Removes specific RatingProfiles on Tariff plan func (self *ApierV1) RemTPRatingProfile(attrs AttrGetTPRatingProfile, reply *string) error { if missing := utils.MissingStructFields(&attrs, []string{"TPid", "RatingProfileId"}); len(missing) != 0 { //Params missing return utils.NewErrMandatoryIeMissing(missing...) } tmpRpf := engine.TpRatingProfile{} if err := tmpRpf.SetRatingProfileId(attrs.RatingProfileId); err != nil { return err } if err := self.StorDb.RemTpData(utils.TBL_TP_RATE_PROFILES, attrs.TPid, map[string]string{"loadid": tmpRpf.Loadid, "direction": tmpRpf.Direction, "tenant": tmpRpf.Tenant, "category": tmpRpf.Category, "subject": tmpRpf.Subject}); err != nil { return utils.NewErrServerError(err) } else { *reply = "OK" } return nil }
// Removes specific RatingProfiles on Tariff plan func (self *ApierV1) RemTPRatingProfile(attrs AttrGetTPRatingProfile, reply *string) error { if missing := utils.MissingStructFields(&attrs, []string{"TPid", "RatingProfileId"}); len(missing) != 0 { //Params missing return fmt.Errorf("%s:%v", utils.ERR_MANDATORY_IE_MISSING, missing) } tmpRpf := engine.TpRatingProfile{} if err := tmpRpf.SetRatingProfileId(attrs.RatingProfileId); err != nil { return err } if err := self.StorDb.RemTPData(utils.TBL_TP_RATE_PROFILES, attrs.TPid, tmpRpf.Loadid, tmpRpf.Direction, tmpRpf.Tenant, tmpRpf.Category, tmpRpf.Subject); err != nil { return fmt.Errorf("%s:%s", utils.ERR_SERVER_ERROR, err.Error()) } else { *reply = "OK" } return nil }