X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Ftr-select-cust_location.html;h=5e938b53a2567002c5b99430dbc43cd2a7d47ab4;hb=03ceab71dad1e5eb366865d304e5e459cc905ce4;hp=b62c65c03d431ec694dfcdd7fd8b16b15307d167;hpb=a661ced3f9f678a645780eaa0b183d2de5f100fa;p=freeside.git diff --git a/httemplate/elements/tr-select-cust_location.html b/httemplate/elements/tr-select-cust_location.html index b62c65c03..5e938b53a 100644 --- a/httemplate/elements/tr-select-cust_location.html +++ b/httemplate/elements/tr-select-cust_location.html @@ -4,7 +4,13 @@ Example: include('/elements/tr-select-cust_location.html', 'cgi' => $cgi, - 'cust_main' => $cust_main, + + 'cust_main' => $cust_main, + #or + 'prospect_main' => $prospect_main, + + #optional + 'empty_label' => '(default service address)', ) @@ -21,7 +27,7 @@ Example: var locationnum = what.options[what.selectedIndex].value; if ( locationnum == -1 ) { -% for (@location_fields) { +% for (@location_fields, 'city_select') { what.form.<%$_%>.disabled = false; what.form.<%$_%>.style.backgroundColor = '#ffffff'; % } @@ -42,28 +48,46 @@ Example: } else { if ( locationnum == 0 ) { - what.form.address1.value = <% $cust_main->address1 |js_string %>; - what.form.address2.value = <% $cust_main->address2 |js_string %>; - what.form.city.value = <% $cust_main->city |js_string %>; - what.form.zip.value = <% $cust_main->zip |js_string %>; +% if ( $cust_main ) { + what.form.address1.value = <% $cust_main->get($prefix.'address1') |js_string %>; + what.form.address2.value = <% $cust_main->get($prefix.'address2') |js_string %>; + what.form.city.value = <% $cust_main->get($prefix.'city') |js_string %>; + what.form.zip.value = <% $cust_main->get($prefix.'zip') |js_string %>; - changeSelect(what.form.country, <% $cust_main->country | js_string %> ); + changeSelect(what.form.country, <% $cust_main->get($prefix.'country') | js_string %> ); country_changed( what.form.country, - fix_state_factory( <% $cust_main->state | js_string %>, - <% $cust_main->county | js_string %> + fix_state_factory( <% $cust_main->get($prefix.'state') | js_string %>, + <% $cust_main->get($prefix.'county') | js_string %> ) ); +% } } else { get_location( locationnum, update_location ); } +% if ( $editable ) { + if ( locationnum == 0 ) { +% } + %#sleep/wait until dropdowns are updated? -% for (@location_fields) { - what.form.<%$_%>.disabled = true; - what.form.<%$_%>.style.backgroundColor = '#dddddd'; -% } +% for (@location_fields, 'city_select') { + what.form.<%$_%>.disabled = true; + what.form.<%$_%>.style.backgroundColor = '#dddddd'; +% } + +% if ( $editable ) { + } else { + +%#sleep/wait until dropdowns are updated? +% for (@location_fields, 'city_select') { + what.form.<%$_%>.disabled = false; + what.form.<%$_%>.style.backgroundColor = '#ffffff'; +% } + + } +% } } } @@ -85,6 +109,7 @@ Example: } else { county_el.selectedIndex = 0; } + county_changed(county_el); } return fix_county; } @@ -118,18 +143,23 @@ Example: - Service location + Service location @@ -137,7 +167,7 @@ Example: <% include('/elements/location.html', 'object' => $cust_location, #'onchange' ? probably not - 'disabled' => ( $locationnum == -1 ? '' : 'DISABLED' ), + 'disabled' => $disabled, 'no_asterisks' => 1, ) %> @@ -155,22 +185,40 @@ my $statedefault = $conf->config('statedefault') || ($countrydefault eq 'US' ? 'CA' : ''); my %opt = @_; -my $cgi = $opt{'cgi'}; -my $cust_main = $opt{'cust_main'}; +my $cgi = $opt{'cgi'}; +my $cust_main = $opt{'cust_main'}; +my $prospect_main = $opt{'prospect_main'}; + +my $prefix = ($cust_main && length($cust_main->ship_last)) ? 'ship_' : ''; + +my $locationnum; +if ( length($opt{'curr_value'}) ) { + $locationnum = $opt{'curr_value'}; +} else { + $cgi->param('locationnum') =~ /^(\-?\d*)$/ or die "illegal locationnum"; + $locationnum = $1; +} + +#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 ); -$cgi->param('locationnum') =~ /^(\-?\d*)$/ or die "illegal locationnum"; -my $locationnum = $1; my $cust_location; if ( $locationnum && $locationnum != -1 ) { $cust_location = qsearchs('cust_location', { 'locationnum' => $locationnum } ) or die "unknown locationnum"; } else { $cust_location = new FS::cust_location; - if ( $cgi->param('error') && $locationnum == -1 ) { + if ( $locationnum == -1 ) { $cust_location->$_( $cgi->param($_) ) foreach @location_fields; - } else { - $cust_location->$_( $cust_main->$_() ) foreach @location_fields; + } elsif ( $cust_main ) { + $cust_location->$_( $cust_main->get($prefix.$_) ) foreach @location_fields; } } +my $disabled = ( $locationnum == -1 || ($editable && $locationnum) ) + ? '' + : 'DISABLED'; +