summaryrefslogtreecommitdiff
path: root/httemplate/elements/location.html
blob: 0ff119009ef3e3264244df6e9a915e55f0731620 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<%doc>

Example:

  include( '/elements/location.html',
             'object'         => $cust_main,  # or $cust_location
             'prefix'         => $pre,        #only for cust_main objects
             'onchange'       => $javascript,
             'disabled'       => $disabled,
             'same_checked'   => $same_checked,
             'geocode'        => $geocode, #passed through
             'censustract'    => $censustract, #passed through
             'no_asterisks'   => 0, #set true to disable the red asterisks next
                                    #to required fields
             'address1_label' => 'Address', #label for address
         )

</%doc>

% if ( $opt{'alt_format'} ) {

<TR>
    <<%$th%> ALIGN="right">Location&nbsp;kind</<%$th%>>
    <TD>
    <% include('/elements/select.html',
                 'cgi'        => $cgi,
                 'field'      => 'location_kind',
                 'id'         => 'location_kind',
                 'disabled'   => $disabled,
                 #'style'      => \@style,
                 'options'    => \@location_kind_options,
                 'labels'     => $location_kind_labels,
                 'curr_value' => scalar($cgi->param('location_kind'))
                                   || $object->get($pre.'location_kind'),
              )
    %>
    </TD>
  </TR>

% } 

<TR>
  <<%$th%> ALIGN="right"><%$r%><% $opt{'address1_label'} || 'Address' %></<%$th%>>
  <TD COLSPAN=7>
    <INPUT TYPE     = "text"
           NAME     = "<%$pre%>address1"
           ID       = "<%$pre%>address1"
           VALUE    = "<% $object->get($pre.'address1') |h %>"
           SIZE     = 54
           onChange = "<% $onchange %>"
           <% $disabled %>
           <% $style %>
    >
  </TD>
</TR>

% if ( ! $opt{'alt_format'} ) { #regular format

<TR>
      <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>
      <TD COLSPAN=7>
        <INPUT TYPE     = "text"
               NAME     = "<%$pre%>address2"
               ID       = "<%$pre%>address2"
               VALUE    = "<% $object->get($pre.'address2') |h %>"
               SIZE     = 54
               onChange = "<% $onchange %>"
               <% $disabled %>
               <% $style %>
        >
      </TD>
</TR>

% } else { # alternate format

      <INPUT TYPE  = "hidden"
             NAME  = "<%$pre%>address2"
             VALUE = "<% $object->get($pre.'address2') |h %>"
      >

<TR>
    <<%$th%> ALIGN="right">Unit&nbsp;type&nbsp;and&nbsp;#</<%$th%>>
    <TD COLSPAN=7>

%     my $location_type = scalar($cgi->param('location_type'))
%                           || $object->get($pre.'location_type');
%     #my $location_number = scalar($cgi->param('location_number'))
%     #                        || $object->get($pre.'location_number');
%
%   if ( $object->get($pre.'address2') && ! $location_type ) {
%   }
%
%     if ( 1 ) { #ikano, switch on via config
%       tie my %location_types, 'Tie::IxHash',
%         FS::part_export::ikano->location_types;
        <% include('/elements/select.html',
                     'cgi'        => $cgi,
                     'field'      => 'location_type',
                     'id'         => 'location_type',
                     'disabled'   => $disabled,
                     #'style'      => \@style,
                     'options'    => [ keys %location_types ],
                     'labels'     => \%location_types,
                     'curr_value' => $location_type,
                     'onchange'   => 'location_type_changed',
                  )
        %>
        <SCRIPT TYPE="text/javascript">
          function location_type_changed (what) {
            if ( what.options[what.selectedIndex].value == '' ) {
              what.form.location_number.disabled = true;
              what.form.location_number.style.backgroundColor = '#dddddd';
            } else {
              what.form.location_number.disabled = false;
              what.form.location_number.style.backgroundColor = '#ffffff';
            }
          }
        </SCRIPT>
%     } else {
        <INPUT TYPE  = "text" 
               NAME  = "location_type" 
               ID    = "location_type"
               VALUE = "<% $location_type |h %>"
               SIZE  = "10"
               <% $disabled %>
               <% $style %>
        >
%     }

    <INPUT TYPE="text" 
               NAME  = "location_number"
               ID    = "location_number"
               VALUE = "<% scalar($cgi->param('location_number')) || $object->get($pre.'location_number') |h %>"
               SIZE  = "5"
               <% $disabled || ($location_type ? '' : 'DISABLED') %>
               <% $style %>
        >

%    #XXX i don't work so well when the dropdown is changed :/  i probably need to be triggered by "default service address"
%    $alt_err =~ s/(ship_)?address2/'<B>'.encode_entities($object->get($1.'address2')).'<\/B>'/e;
     <% $alt_err %>

    </TD>

</TR>

% } 


<TR>
  <<%$th%> ALIGN="right"><%$r%>City</<%$th%>>
  <TD WIDTH="1"><% include('/elements/city.html', %select_hash) %></TD>
  <<%$th%> ALIGN="right" WIDTH="1" ID="<%$pre%>countylabel" <%$county_style%>><%$r%>County</<%$th%>>
  <TD WIDTH="1"><% include('/elements/select-county.html', %select_hash ) %></TD>
  <<%$th%> ALIGN="right" WIDTH="1"><%$r%>State</<%$th%>>
  <TD WIDTH="1">
    <% include('/elements/select-state.html', %select_hash ) %>
  </TD>
  <<%$th%> ALIGN="right" WIDTH="1"><%$r%>Zip</<%$th%>>
  <TD>
    <INPUT TYPE     = "text"
           NAME     = "<%$pre%>zip"
           ID       = "<%$pre%>zip"
           VALUE    = "<% $object->get($pre.'zip') |h %>"
           SIZE     = 10
           onChange = "<% $onchange %>"
           <% $disabled %>
           <% $style %>
    >
  </TD>
</TR>

<TR>
  <<%$th%> ALIGN="right"><%$r%>Country</<%$th%>>
  <TD COLSPAN=6><% include('/elements/select-country.html', %select_hash ) %></TD>
</TR>

% if ( !$pre ) { 
  <INPUT TYPE="hidden" NAME="geocode" VALUE="<% $opt{geocode} %>">
% } else {
%   if ( $pre eq 'ship_' && $conf->exists('cust_main-require_censustract') ) {
      <TR><<%$th%> ALIGN="right">Census tract<BR>(automatic)</<%$th%>>
        <TD>
          <INPUT TYPE="text" NAME="censustract" VALUE="<% $opt{censustract} %>">
        </TD>
      </TR>
%   } else {
      <INPUT TYPE="hidden" NAME="censustract" VALUE="<% $opt{censustract} %>">
%   } 
% } 

<%init>

my %opt = @_;

my $pre      = $opt{'prefix'};
my $object   = $opt{'object'};
my $onchange = $opt{'onchange'};
my $disabled = $opt{'disabled'};

my $conf = new FS::Conf;

my $r = $opt{'no_asterisks'} ? '' : qq!<font color="#ff0000">*</font>&nbsp;!;

#false laziness with ship state
my $countrydefault = $conf->config('countrydefault') || 'US';
$object->set($pre.'country', $countrydefault )
  unless $object->get($pre.'country');

my $statedefault = $conf->config('statedefault')
                   || ($countrydefault eq 'US' ? 'CA' : '');
$object->set($pre.'state', $statedefault )
  unless $object->get($pre.'state')
         || $object->get($pre.'country') ne $countrydefault;

my $alt_err = ($opt{'alt_format'} && !$disabled) ? $object->alternize : '';

my @style = ();
push @style, 'background-color: #dddddd' if $disabled;

my @address2_label_style = ();
push @address2_label_style, 'visibility:hidden'
  if $disabled
  || ! $conf->exists('cust_main-require_address2')
  || ( !$pre && !$opt{'same_checked'} );

my @counties = counties( $object->get($pre.'state'),
                         $object->get($pre.'country'),
                       );
my @county_style = ();
push @county_style, 'display:none' # 'visibility:hidden'
  unless scalar(@counties) > 1;

my $style =
  scalar(@style)
    ? 'STYLE="'. join(';', @style). '"'
    : '';
my $address2_label_style =
  scalar(@address2_label_style)
    ? 'STYLE="'. join(';', @address2_label_style). '"'
    : '';
my $county_style = 
  scalar(@county_style)
    ? 'STYLE="'. join(';', @county_style). '"'
    : '';

my %select_hash = (
  'city'     => $object->get($pre.'city'),
  'county'   => $object->get($pre.'county'),
  'state'    => $object->get($pre.'state'),
  'country'  => $object->get($pre.'country'),
  'prefix'   => $pre,
  'onchange' => $onchange,
  'disabled' => $disabled,
  #'style'    => \@style,
);

my $th = $opt{'no_bold'} ? 'TD' : 'TH';

my @location_kind_options = ( '', 'R', 'B' );
my $location_kind_labels = { '' => '', 'R' => 'Residential', 'B' => 'Business' };

</%init>