enable CardFortress in test database, #71513
[freeside.git] / httemplate / elements / select-state.html
1 <%doc>
2
3 Example:
4
5   <& /elements/select-state.html,
6     #recommended
7     country    => $current_country,
8     state      => $current_state,
9
10     #optional
11     prefix        => $optional_unique_prefix,
12     onchange      => $javascript,
13     disabled      => 0, #bool
14     disable_empty => 1, #defaults to 1, disable the empty option
15     empty_label   => 'all', #label for empty option
16     disable_countyupdate => 0, #bool - disabled update of the select-state.html
17     style         => [ 'attribute:value', 'another:value' ],
18   &>
19
20 </%doc>
21
22 <SELECT NAME     = "<% $pre %>state"
23         ID       = "<% $pre %>state"
24         onChange = "<% $onchange %>"
25         <% $opt{'disabled'} %>
26         <% $style %>
27 >
28
29 % unless ( $opt{'disable_empty'} ) {
30   <OPTION VALUE=""<% $opt{state} eq '' ? ' SELECTED' : '' %>><% $opt{empty_label} %>
31 % }
32
33 % foreach my $state ( keys %states ) { 
34
35   <OPTION VALUE="<% $state |h %>"<% $state eq $opt{'state'} ? ' SELECTED' : '' %>><% $states{$state} || '(n/a)' |h %>
36
37 % } 
38
39
40 </SELECT>
41
42 <%init>
43
44 my %opt = @_;
45 foreach my $opt (qw(
46   state country prefix onchange disabled empty_label svcpart
47 )) {
48   $opt{$opt} = '' unless exists($opt{$opt}) && defined($opt{$opt});
49 }
50
51 $opt{'disable_empty'} = 1 unless exists($opt{'disable_empty'});
52
53 my $pre = $opt{'prefix'};
54
55 my $onchange =
56   ( $opt{'disable_countyupdate'} ? '' : $pre.'state_changed(this); ' ).
57   $opt{'onchange'};
58
59 $opt{'style'} ||= [];
60 my $style =
61   scalar(@{$opt{style}})
62     ? 'STYLE="'. join(';', @{$opt{style}}). '"'
63     : '';
64
65 tie my %states, 'Tie::IxHash', states_hash( $opt{'country'} ); 
66
67 if ( $opt{'svcpart'} ) {
68
69   my $part_svc = qsearchs('part_svc', { 'svcpart' => $opt{'svcpart'} } );
70   if ( $part_svc && $part_svc->exporttype eq 'internal_diddb' ) {
71
72     my $sth = dbh->prepare(
73       'SELECT DISTINCT state FROM phone_avail WHERE svcnum IS NULL'
74     ) or die dbh->errstr;
75     $sth->execute or die $sth->errstr;
76     my %avail_states = map { $_->[0] => 1 } @{ $sth->fetchall_arrayref };
77
78     if ( %avail_states ) {
79       delete $states{$_} foreach grep ! $avail_states{$_}, keys %states;
80     }
81
82   }
83 }
84
85 </%init>
86