X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Fselect-did.html;h=8e981fde147b777b7108c37beb2043c86ae27309;hb=3d62ec9362d0b22c17a17da6197f8b2fc219a54e;hp=062c98a80191044b2e53eeb12d04343a0dd79eb5;hpb=46e04077cc22ff9d31e8e9896cbf97e31f1b0e7d;p=freeside.git diff --git a/httemplate/elements/select-did.html b/httemplate/elements/select-did.html index 062c98a80..8e981fde1 100644 --- a/httemplate/elements/select-did.html +++ b/httemplate/elements/select-did.html @@ -13,6 +13,8 @@ Example: % if ( $use_selector ) { +% if ( $export->option('restrict_selection') eq 'non-tollfree' +% || !$export->option('restrict_selection') ) { @@ -58,6 +60,21 @@ Example:
+ +% } +% if ( $export->option('restrict_selection') eq 'tollfree' +% || !$export->option('restrict_selection') ) { + Toll-free + <% include('/elements/select-phonenum.html', + 'svcpart' => $svcpart, + 'empty' => 'Select phone number', + 'tollfree' => 1, + 'prefix' => 'tollfree', + 'bulknum' => 0, + ) + %> +% } + % if ( $bulknum ) {
% my $i; @@ -82,7 +99,6 @@ Example: my %opt = @_; my $conf = new FS::Conf; -my $country = $conf->config('countrydefault') || 'US'; #false laziness w/tr-select-did.html #XXX make sure this comes through on errors too @@ -97,11 +113,17 @@ my @exports = $part_svc->part_export_did; if ( scalar(@exports) > 1 ) { die "more than one DID-providing export attached to svcpart $svcpart"; } +my $export = ''; +$export = $exports[0] if scalar(@exports); my $use_selector = scalar(@exports) ? 1 : 0; my $bulknum = $opt{'bulknum'} || 0; +my $country = ( $export && $export->option('country') ) + || $conf->config('countrydefault') + || 'US'; + #my $field = $opt{'field'} || 'phonenum';