diff options
| author | Mitch Jackson <mitch@freeside.biz> | 2018-02-19 23:07:11 -0600 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2018-05-26 19:34:23 +0000 |
| commit | 8984b12a616569e3bd467728f5db45b38c6e5609 (patch) | |
| tree | 580c504949d51de4535d4bd59874098dff1a9414 | |
| parent | 281b8770237d7686cbf19634fc3f4b0c42a6944e (diff) | |
RT# 79549 Requre a Rate Plan to use voip_cdr Price Plan
| -rw-r--r-- | FS/FS/part_pkg/voip_cdr.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/part_pkg/voip_cdr.pm b/FS/FS/part_pkg/voip_cdr.pm index 1fb3bec84..587a8c530 100644 --- a/FS/FS/part_pkg/voip_cdr.pm +++ b/FS/FS/part_pkg/voip_cdr.pm @@ -363,8 +363,8 @@ tie my %accountcode_tollfree_field, 'Tie::IxHash', 'validate' => sub { # Validation function for FS::part_pkg::check_options() my $options = shift; - return "Please select a rate plan for price plan VoIP/telco CDR rating (standard)" - unless $options->{ratenum}; + return "Please choose a Rate Plan for use with selected Rating Method" + if $options->{rating_method} eq 'prefix' && !$options->{ratenum}; return; }, ); |
