summaryrefslogtreecommitdiff
path: root/httemplate/elements/tr-select-cust_location.html
blob: 1e6cf5b7f9a2593745de7a72158c672bb3f80aa9 (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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<%doc>

Example:

  <& /elements/tr-select-cust_location.html,
         'cgi'           => $cgi,

         'cust_main'     => $cust_main,
         #or
         'prospect_main' => $prospect_main,

         #optional
         'empty_label'   => '(default service address)',
  &>

</%doc>

<& /elements/xmlhttp.html,
     'url'  => $p.'misc/location.cgi',
     'subs' => [ 'get_location' ],
&>

<SCRIPT TYPE="text/javascript">

  function location_disable(what) {
%   for (@location_fields, 'city_select') { 
      what.form.<%$_%>.disabled = true;
      var ftype = what.form.<%$_%>.tagName;
      if( ftype == 'SELECT') changeSelect(what.form.<%$_%>, '');
      else what.form.<%$_%>.value = '';
      if( ftype != 'SELECT') what.form.<%$_%>.style.backgroundColor = '#dddddd';
%   } 
    if(what.form.enter_censustract) {
      what.form.enter_censustract.disabled = true;
    }
  }

  function location_clear(what) {
%   for (grep { $_ ne 'location_number' } @location_fields, 'city_select') { 
      var ftype = what.form.<%$_%>.tagName;
      if( ftype == 'INPUT' ) what.form.<%$_%>.value = '';
%   }
    if(what.form.enter_censustract) {
      what.form.enter_censustract.value = '';
    }
%   if ( $opt{'alt_format'} ) {
      changeSelect(what.form.location_kind, '');
      changeSelect(what.form.location_type, '');
      what.form.location_number.value = '';
%   }
  }

  function location_enable(what) {
%   for (grep { $_ ne 'location_number' } @location_fields, 'city_select') { 
      what.form.<%$_%>.disabled = false;
      var ftype = what.form.<%$_%>.tagName;
      if( ftype != 'SELECT') what.form.<%$_%>.style.backgroundColor = '#ffffff';
%   } 
    if(what.form.enter_censustract) {
      what.form.enter_censustract.disabled = false;
    }
%   if ( $opt{'alt_format'} ) {
      if ( what.form.location_type &&
           what.form.location_type.options[what.form.location_type.selectedIndex].value ) {
      what.form.location_number.disabled = false;
      what.form.location_number.style.backgroundColor = '#ffffff';
      }
%   }
  }

  function locationnum_changed(what) {
    var locationnum = what.options[what.selectedIndex].value;
    if ( locationnum == -2 ) { //(not required)
      location_disable(what);
      return;
    }
    if ( locationnum == -1 ) { //Add new location
      location_clear(what);

      changeSelect(what.form.country, <% $countrydefault |js_string %>);

      country_changed( what.form.country,
                       fix_state_factory( <% $statedefault |js_string %>,
                                          ''
                                        )
                     );

      location_enable(what);
      return;
    }
    if ( locationnum == -3 ) { //service address location for qualificaitons
      what.form.address1.value = <% $cust_location->address1 |js_string %>;
      what.form.address2.value = <% $cust_location->address2 |js_string %>;
      what.form.city.value = <% $cust_location->city |js_string %>;
      what.form.zip.value = <% $cust_location->zip |js_string %>;
%     if ( $opt{'alt_format'} ) {
        what.form.location_number.value = <% $cust_location->location_number |js_string %>;
        changeSelect(what.form.location_kind, <% $cust_location->location_kind |js_string %> );
        changeSelect(what.form.location_type, <% $cust_location->location_type |js_string %> );
%     }

      changeSelect(what.form.country, <% $cust_location->country | js_string %> );

      country_changed( what.form.country,
                       fix_state_factory( <% $cust_location->state | js_string %>,
                                          <% $cust_location->county | js_string %>
                                        )
                     );
      location_enable(what);
      return;
    }

%# default service address is now just another location
    get_location( locationnum, update_location );

%   if ( $editable ) {
      if ( locationnum == 0 ) {
%   }

%       #sleep/wait until dropdowns are updated?
        location_disable(what);

%   if ( $editable ) {
      } else {

%       #sleep/wait until dropdowns are updated?
        location_enable(what);

      }
%   }

  }

  function fix_state_factory (state, county) {
    function fix_state() {
      var state_el = document.getElementById('state');
      changeSelect(state_el, state);
      state_changed(state_el, fix_county_factory(county) );
    }
    return fix_state;
  }

  function fix_county_factory(county) {
    function fix_county() {
      var county_el = document.getElementById('county');
      if ( county.length > 0 ) {
        changeSelect(county_el, county );
      } else {
        county_el.selectedIndex = 0;
      }
      county_changed(county_el);
    }
    return fix_county;
  }

  function changeSelect(what, value) {
    for ( var i=0; i<what.length; i++) {
      if ( what.options[i].value == value ) {
        what.selectedIndex = i;
      }
    }
  }

  var location_fields = <% encode_json(\@location_fields) %>;
  function update_location( string ) {
    var hash = JSON.parse(string);
    for(var i = 0; i < location_fields.length; i++) {
      var f = location_fields[i];
      if (hash[f] && document.getElementById(f))  {
        document.getElementById(f).value = hash[f];
      }
    }
    country_changed( document.getElementById('country'),
                     fix_state_factory( hash['state'],
                                        hash['county']
                                      )
                   );
  }

</SCRIPT>

<TR>
  <<%$th%> ALIGN="right"><% $opt{'label'} || emt('Service location') %></<%$th%>>
  <TD COLSPAN=7>

    <& /elements/select-cust_location.html,
         %opt,
         'curr_value'    => $locationnum,
         'cust_location' => \@cust_location,
         'onchange'      => 'locationnum_changed(this);',
    &>

  </TD>
</TR>

<& /elements/location.html,
     'object'             => $cust_location,
     #'onchange' ?  probably not
     'disabled'           => $disabled,
     'no_asterisks'       => 1,
     'no_bold'            => $opt{'no_bold'},
     'alt_format'         => $opt{'alt_format'},
     'enable_coords'      => 1,
     'enable_censustract' => 1,
     'enable_district'    => $conf->exists('tax_district_method') ? 1 : 0,
&>

<SCRIPT TYPE="text/javascript">
% if ( $prospect_main ) { # && ! $opt{is_optional} ) {

    changeSelect(document.getElementById('country'), <% $cust_location->country || $countrydefault |js_string %>);

    country_changed( document.getElementById('country'),
                     fix_state_factory( <% $cust_location->state || $statedefault |js_string %>,
                                        ''
                                      )
                   );
% } elsif ( $locationnum != -1 ) {
    locationnum_changed(document.getElementById('locationnum'));
% }
</SCRIPT>

<%init>

my $conf = new FS::Conf;
my $countrydefault = $conf->config('countrydefault') || 'US';
my $statedefault = $conf->config('statedefault')
                   || ($countrydefault eq 'US' ? 'CA' : '');

my %opt = @_;
my $cgi           = $opt{'cgi'};
my $cust_pkg      = $opt{'cust_pkg'};
my $cust_main     = $opt{'cust_main'};
my $prospect_main = $opt{'prospect_main'};
die "cust_main or prospect_main required" unless $cust_main or $prospect_main;

my $locationnum = '';
if ( $cgi->param('error') ) {
  $cgi->param('locationnum') =~ /^(\-?\d*)$/ or die "illegal locationnum";
  $locationnum = $1;
} else {
  if ( length($opt{'curr_value'}) ) {
    $locationnum = $opt{'curr_value'};
  } elsif ($prospect_main) {
    my @cust_location = $prospect_main->cust_location;
    $locationnum = $cust_location[0]->locationnum if scalar(@cust_location)==1;
  } else { #$cust_main
    $cgi->param('locationnum') =~ /^(\-?\d*)$/ or die "illegal locationnum";
    $locationnum = $1 || $cust_main->ship_locationnum;
  }
}

#probably could use explicit controls
# (cust_main locations not editable for tax reasons)
my $editable = $cust_main ? 0 : 1; #could use explicit control
my $addnew = $cust_main ? 1 : ( $locationnum>0 ? 0 : 1 );

my @location_fields = FS::cust_main->location_fields;
if ( $opt{'alt_format'} ) {
    push @location_fields, qw( location_type location_number location_kind );
}

my $cust_location; #the one that shows by default in the location edit space
if ( $locationnum && $locationnum > 0 ) {
  $cust_location = qsearchs('cust_location', { 'locationnum' => $locationnum } )
    or die "unknown locationnum";
} else {
  $cust_location = new FS::cust_location;
  if ( $locationnum == -1 || $locationnum == -3 ) {
    $cust_location->$_( $cgi->param($_) ) foreach @location_fields;
  } elsif ( $cust_pkg && $cust_pkg->locationnum ) {
    my $pkg_location = $cust_pkg->cust_location;
    $cust_location->$_( $pkg_location->$_ ) foreach @location_fields;
    $opt{'empty_label'} ||= 'package address: '.$pkg_location->line;
  } elsif ( $cust_main ) {
    $cust_location = $cust_main->ship_location; #I think
  }
}

$cust_location->coord_auto('Y');

my $location_sort = sub {
  #enabled w/label_prefix _location #    $a->locationname cmp $b->locationname
                                    # or 
        $a->country   cmp $b->country
  or lc($a->state)    cmp lc($b->state)
  or lc($a->city)     cmp lc($b->city)
  or lc($a->county)   cmp lc($b->county)
  or lc($a->address1) cmp lc($b->address1)
  or lc($a->address2) cmp lc($b->address2)
};

my @cust_location;
push @cust_location, $cust_main->cust_location if $cust_main;
push @cust_location, $prospect_main->cust_location if $prospect_main;
push @cust_location, $cust_location
  if !$cust_main && $cust_location && $cust_location->locationnum > 0
  && ! grep { $_->locationnum == $cust_location->locationnum } @cust_location;

@cust_location = sort $location_sort grep !$_->disabled, @cust_location;

$cust_location = $cust_location[0]
  if $prospect_main
  && !$opt{'is_optional'}
  && @cust_location;

my $disabled =
  ( $locationnum < 0
    || ( $editable && $locationnum )
    || ( $prospect_main
         && !$opt{'is_optional'} && !@cust_location && $addnew
       )
  )
    ? ''
    : 'DISABLED';

if ( $cust_main && $opt{'alt_format'} && ! @cust_location ) {
  $cust_location->locationnum(-3);
  $cust_location->alternize;
  push @cust_location, $cust_location;
}

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

</%init>