FCC form 477 reporting #4912
[freeside.git] / httemplate / elements / location.html
1 <%doc>
2
3 Example:
4
5   include( '/elements/location.html',
6              'object'         => $cust_main,  # or $cust_location
7              'prefix'         => $pre,        #only for cust_main objects
8              'onchange'       => $javascript,
9              'disabled'       => $disabled,
10              'same_checked'   => $same_checked,
11              'geocode'        => $geocode, #passed through
12              'censustract'    => $censustract, #passed through
13              'no_asterisks'   => 0, #set true to disable the red asterisks next
14                                     #to required fields
15              'address1_label' => 'Address', #label for address
16          )
17
18 </%doc>
19
20 <TR>
21   <TH ALIGN="right"><%$r%><% $opt{'address1_label'} || 'Address' %></TH>
22   <TD COLSPAN=7>
23     <INPUT TYPE     = "text"
24            NAME     = "<%$pre%>address1"
25            ID       = "<%$pre%>address1"
26            VALUE    = "<% $object->get($pre.'address1') |h %>"
27            SIZE     = 54
28            onChange = "<% $onchange %>"
29            <% $disabled %>
30            <% $style %>
31     >
32   </TD>
33 </TR>
34
35 <TR>
36   <TD ALIGN="right"><FONT ID="<% $pre %>address2_required" color="#ff0000" <% $address2_label_style %>>*</FONT>&nbsp;<FONT ID="<% $pre %>address2_label" <% $address2_label_style %>><B>Unit&nbsp;#</B></FONT></TD>
37   <TD COLSPAN=7>
38     <INPUT TYPE     = "text"
39            NAME     = "<%$pre%>address2"
40            ID       = "<%$pre%>address2"
41            VALUE    = "<% $object->get($pre.'address2') |h %>"
42            SIZE     = 54
43            onChange = "<% $onchange %>"
44            <% $disabled %>
45            <% $style %>
46     >
47   </TD>
48 </TR>
49
50 <TR>
51   <TH ALIGN="right"><%$r%>City</TH>
52   <TD WIDTH="1">
53     <INPUT TYPE     = "text"
54            NAME     = "<%$pre%>city"
55            ID       = "<%$pre%>city"
56            VALUE    = "<% $object->get($pre.'city') |h %>"
57            onChange = "<% $onchange %>"
58            <% $disabled %>
59            <% $style %>
60     >
61   </TD>
62   <TH ALIGN="right" ID="<%$pre%>countylabel" <%$county_style%>><%$r%>County</TH>
63   <TD><% include('/elements/select-county.html', %select_hash ) %></TD>
64   <TH ALIGN="right" WIDTH="1"><%$r%>State</TH>
65   <TD WIDTH="1">
66     <% include('/elements/select-state.html', %select_hash ) %>
67   </TD>
68   <TH><%$r%>Zip</TH>
69   <TD>
70     <INPUT TYPE     = "text"
71            NAME     = "<%$pre%>zip"
72            ID       = "<%$pre%>zip"
73            VALUE    = "<% $object->get($pre.'zip') |h %>"
74            SIZE     = 10
75            onChange = "<% $onchange %>"
76            <% $disabled %>
77            <% $style %>
78     >
79   </TD>
80 </TR>
81
82 <TR>
83   <TH ALIGN="right"><%$r%>Country</TH>
84   <TD COLSPAN=6><% include('/elements/select-country.html', %select_hash ) %></TD>
85 </TR>
86
87 % if ( !$pre ) { 
88   <INPUT TYPE="hidden" NAME="geocode" VALUE="<% $opt{geocode} %>">
89 % } else {
90   <INPUT TYPE="hidden" NAME="censustract" VALUE="<% $opt{censustract} %>">
91 % } 
92
93 <%init>
94
95 my %opt = @_;
96
97 my $pre      = $opt{'prefix'};
98 my $object   = $opt{'object'};
99 my $onchange = $opt{'onchange'};
100 my $disabled = $opt{'disabled'};
101
102 my $conf = new FS::Conf;
103
104 my $r = $opt{'no_asterisks'} ? '' : qq!<font color="#ff0000">*</font>&nbsp;!;
105
106 #false laziness with ship state
107 my $countrydefault = $conf->config('countrydefault') || 'US';
108 $object->set($pre.'country', $countrydefault )
109   unless $object->get($pre.'country');
110
111 my $statedefault = $conf->config('statedefault')
112                    || ($countrydefault eq 'US' ? 'CA' : '');
113 $object->set($pre.'state', $statedefault )
114   unless $object->get($pre.'state')
115          || $object->get($pre.'country') ne $countrydefault;
116
117 my @style = ();
118 push @style, 'background-color: #dddddd"' if $disabled;
119
120 my @address2_label_style = ();
121 push @address2_label_style, 'visibility:hidden'
122   if $disabled
123   || ! $conf->exists('cust_main-require_address2')
124   || ( !$pre && !$opt{'same_checked'} );
125
126 my @counties = counties( $object->get($pre.'state'),
127                          $object->get($pre.'country'),
128                        );
129 my @county_style = ();
130 push @county_style, 'display:none' # 'visibility:hidden'
131   unless scalar(@counties) > 1;
132
133 my $style =
134   scalar(@style)
135     ? 'STYLE="'. join(';', @style). '"'
136     : '';
137 my $address2_label_style =
138   scalar(@address2_label_style)
139     ? 'STYLE="'. join(';', @address2_label_style). '"'
140     : '';
141 my $county_style = 
142   scalar(@county_style)
143     ? 'STYLE="'. join(';', @county_style). '"'
144     : '';
145
146 my %select_hash = (
147   'county'   => $object->get($pre.'county'),
148   'state'    => $object->get($pre.'state'),
149   'country'  => $object->get($pre.'country'),
150   'prefix'   => $pre,
151   'onchange' => $onchange,
152   'disabled' => $disabled,
153   'style'    => \@style,
154 );
155
156 </%init>