X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_main%2Fpackages%2Fsection.html;h=ce965c56a70b07208b52ddd532ffe80dd6111786;hb=d129179308646fb4eba078f1afe1fa2ddad51fbb;hp=730bb2cf047703cf9cb21d6268b3acab14583838;hpb=439d00a59c67a7d9d53b5d89c14ab332be16e38b;p=freeside.git diff --git a/httemplate/view/cust_main/packages/section.html b/httemplate/view/cust_main/packages/section.html index 730bb2cf0..ce965c56a 100755 --- a/httemplate/view/cust_main/packages/section.html +++ b/httemplate/view/cust_main/packages/section.html @@ -4,17 +4,24 @@ <% mt('Package') |h %> <% mt('Status') |h %> <% mt('Contact/Location') |h %> +% if (!$opt{no_services}) { <% mt('Services') |h %> +% } % #$FS::cust_pkg::DEBUG = 2; % foreach my $cust_pkg (@$packages) { +% # if requested, this can override cust_pkg-group_by_location <& .packagerow, $cust_pkg, + %conf_opt, ( map { $_ => $opt{$_} } qw( - cust_main bgcolor - no_links before_pkg_callback before_svc_callback after_svc_callback + cust_main bgcolor no_links cust_location_cache + before_pkg_callback before_svc_callback after_svc_callback + cust_pkg-group_by_location + no_services )), - %conf_opt + #for status.html + 'has_cust_payby_auto' => $opt{cust_main}->has_cust_payby_auto, &> % } % } else { # there are no packages @@ -30,10 +37,12 @@ <& package.html, %iopt &> <& status.html, %iopt &> - <& contact.html, %iopt &>
+ <& contact.html, %iopt &> <& location.html, %iopt &> +% if (!$iopt{no_services}) { <& services.html, %iopt &> +% } % # insert hidden predecessors to this package, if any % # and a rolldown button to show them @@ -98,6 +107,8 @@ my $countrydefault = scalar($conf->config('countrydefault')) || 'US'; my %conf_opt = ( #for package.html 'invoice-unitprice' => $conf->exists('invoice-unitprice'), + 'show_pkgnum' => $curuser->option('show_pkgnum'), + 'part_pkg-term_discounts' => $conf->exists('part_pkg-term_discounts'), #for services.html and status.html 'cust_pkg-display_times' => ($conf->exists('cust_pkg-display_times') @@ -113,14 +124,20 @@ my %conf_opt = ( 'countrydefault' => $countrydefault, 'statedefault' => ( scalar($conf->config('statedefault')) || ($countrydefault eq 'US' ? 'CA' : '') ), + 'cust_pkg-group_by_location'=> $conf->exists('cust_pkg-group_by_location'), + 'cust_main-require_censustract'=> $conf->exists('cust_main-require_censustract'), + 'company_address' => [ $conf->config('company_address', $opt{cust_main}->agentnum ) ], + #for services.html 'svc_external-skip_manual' => $conf->exists('svc_external-skip_manual'), + 'svc_phone-bulk_provision_simple' => $conf->exists('svc_phone-bulk_provision_simple'), 'legacy_link' => $conf->exists('legacy_link'), 'manage_link' => scalar($conf->config('svc_broadband-manage_link')), 'manage_link_text' => scalar($conf->config('svc_broadband-manage_link_text')), 'manage_link_loc' => scalar($conf->config('svc_broadband-manage_link_loc')), 'manage_link-new_window' => $conf->exists('svc_broadband-manage_link-new_window'), 'cust_pkg-large_pkg_size' => scalar($conf->config('cust_pkg-large_pkg_size')), + 'cust_pkg-hide_discontinued-part_svc' => $conf->exists('cust_pkg-hide_discontinued-part_svc'), );