X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Freport_cust_pkg.html;h=5e8c429ec34b5c37c37ac84e73733a5284789738;hb=6f58ae775b905cd462dd0faafee95973414a45d2;hp=6cf297c91e2f4694a650eabd752c14644536c66b;hpb=23f2db6452f097640447b9b35dd106f408dbc20b;p=freeside.git diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index 6cf297c91..5e8c429ec 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -4,20 +4,35 @@ - +% unless ( $custnum ) { - - - + <% emt('Customer search options') %> +
- Search options -
-% unless ( $custnum ) { - <% include( '/elements/tr-select-agent.html', + <& /elements/tr-select-agent.html, 'curr_value' => scalar( $cgi->param('agentnum') ), 'disable_empty' => 0, - ) - %> + 'onchange' => 'agent_changed(this)', + &> + + <& /elements/tr-select-cust_main-status.html, + 'label' => 'Customer status', + 'field' => 'cust_status', + &> + + <& /elements/tr-select-sales.html, 'label' => 'Customer sales person', @@ -29,8 +44,14 @@ 'disable_empty' => 1, &> +
+
+ % } +<% emt('Package search options') %> + + <& /elements/tr-select-sales.html, 'label' => 'Package sales person', 'curr_value' => scalar($cgi->param('salesnum')), @@ -39,10 +60,10 @@ 'disable_empty' => 1, &> - <% include( '/elements/tr-select-cust_pkg-status.html', + <& /elements/tr-select-cust_pkg-status.html, + 'label' => 'Package status', 'onchange' => 'status_changed(this);', - ) - %> + &> - <% include( '/elements/tr-select-pkg_class.html', + <& /elements/tr-select-pkg_class.html, 'pre_options' => [ '0' => 'all' ], 'empty_label' => '(empty class)', - ) - %> + &> % if ( scalar( qsearch( 'part_pkg_report_option', { 'disabled' => '' } ) ) ) { - <% include( '/elements/tr-select-table.html', + <& /elements/tr-select-table.html, 'label' => 'Report classes', 'table' => 'part_pkg_report_option', 'name_col' => 'name', 'hashref' => { 'disabled' => '' }, 'element_name' => 'report_option', 'multiple' => 'multiple', - ) - %> + &> % } @@ -114,6 +171,7 @@ + % my $noinit = 0; % foreach my $field (@date_fields) { @@ -131,6 +189,13 @@ % $noinit = 1; % } + % } #foreach $field
From date (m/d/y) To date (m/d/y)Empty date
+ <& /elements/checkbox.html, + 'field' => $field.'_null', + 'value' => 'Y', + 'onchange' => $field.'_null_changed', + &> +
@@ -157,24 +222,46 @@ - <% include( '/elements/tr-checkbox.html', + <& /elements/tr-checkbox.html, 'label' => 'Custom packages', 'field' => 'custom', 'value' => 1, 'onchange' => 'custom_changed(this);', - ) - %> + &> - <% include( '/elements/tr-selectmultiple-part_pkg.html' ) %> + <& /elements/tr-selectmultiple-part_pkg.html &> - -   - + +
- - Display options - - <% include( '/elements/tr-select-cust-fields.html' ) %> +<% emt('Location search options') %> + + +% my @location_options = qw(cust nocust census nocensus); +% if ( $conf->config('tax_data_vendor') eq 'cch' ) { +% push @location_options, 'geocode', 'nogeocode'; +% } + <& /elements/tr-checkbox-multiple.html, + 'label' => 'Where package location:', + 'field' => 'loc', + 'options' => \@location_options, + 'labels' => { 'cust' => "is the customer's default location", + 'nocust' => "is not the customer's default location", + 'census' => "has a census tract", + 'nocensus' => "does not have a census tract", + 'nogeocode'=> 'has an implicit tax location', + 'geocode' => 'has a hardcoded tax location', + }, + 'value' => { map { $_ => 0 } @location_options }, + &> + +
+
+ +<% emt('Display options') %> + + + <& /elements/tr-select-cust-fields.html &>
@@ -225,7 +312,8 @@ my @date_fields = keys %label; #false laziness w/cust_pkg.cgi my %disable = ( 'all' => {}, - 'not yet billed' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, }, + 'on hold' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'expire'=>1, 'cancel'=>1, 'dundate'=> 1, }, + 'not yet billed' => { 'setup'=>1, 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, 'dundate'=>1, }, 'one-time charge' => { 'last_bill'=>1, 'bill'=>1, 'adjourn'=>1, 'susp'=>1, 'expire'=>1, 'cancel'=>1, 'contract_end'=>1, 'dundate'=>1, }, 'active' => { 'susp'=>1, 'cancel'=>1 }, 'suspended' => { 'cancel'=>1, 'dundate'=>1, }, @@ -244,4 +332,5 @@ my %checkbox = ( 'cancel' => 1, ); +my $conf = FS::Conf->new;