X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fsearch%2Freport_cust_pkg.html;h=b8c32c63142b33f7b6526fafee5bfbd5f689b1ae;hb=47c250d15d752e6210b9c044a4a64e2e8992c64e;hp=2193cac8b19a97ff5f97e7f50509c5a2b139fcde;hpb=0c2f4bccc3810426d4b9e31dca645711c32f0b63;p=freeside.git diff --git a/httemplate/search/report_cust_pkg.html b/httemplate/search/report_cust_pkg.html index 2193cac8b..b8c32c631 100755 --- a/httemplate/search/report_cust_pkg.html +++ b/httemplate/search/report_cust_pkg.html @@ -1,40 +1,199 @@ -<% include('/elements/header.html', 'Package Report' ) %> +<& /elements/header.html, mt($title, @title_arg) &>
+ - + - <% include( '/elements/tr-select-agent.html', - $cgi->param('agentnum'), - ) + +% unless ( $custnum ) { + + <& /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', + 'element_name' => 'cust_main_salesnum', + 'id' => 'cust_main_salesnum', + 'curr_value' => scalar($cgi->param('cust_main_salesnum')), + 'pre_options' => [ '' => 'all', + 0 => '(none)', ], + 'disable_empty' => 1, + &> + +% } + + <& /elements/tr-select-sales.html, + 'label' => 'Package sales person', + 'curr_value' => scalar($cgi->param('salesnum')), + 'pre_options' => [ '' => 'all', + 0 => '(none)', ], + 'disable_empty' => 1, + &> + + <% include( '/elements/tr-select-cust_pkg-status.html', + 'label' => 'Package status', + 'onchange' => 'status_changed(this);', + ) %> - <% include( '/elements/tr-select-cust_pkg-status.html' ) %> - <% include( '/elements/tr-select-pkg_class.html', '', + + + + <% include( '/elements/tr-select-pkg_class.html', 'pre_options' => [ '0' => 'all' ], 'empty_label' => '(empty class)', ) %> - <% include( '/elements/tr-selectmultiple-part_pkg.html' ) %> +% if ( scalar( qsearch( 'part_pkg_report_option', { 'disabled' => '' } ) ) ) { + + <% include( '/elements/tr-select-table.html', + 'label' => 'Report classes', + 'table' => 'part_pkg_report_option', + 'name_col' => 'name', + 'hashref' => { 'disabled' => '' }, + 'element_name' => 'report_option', + 'multiple' => 'multiple', + ) + %> + +% } - - + + + <% include( '/elements/tr-checkbox.html', + 'label' => 'Custom packages', + 'field' => 'custom', + 'value' => 1, + 'onchange' => 'custom_changed(this);', + ) + %> + + <% include( '/elements/tr-selectmultiple-part_pkg.html' ) %> + - + - + <% include( '/elements/tr-select-cust-fields.html' ) %> @@ -46,3 +205,64 @@ <% include('/elements/footer.html') %> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List packages'); + +my $title = 'Package Report'; +#false laziness w/report_cust_bill.html +my @title_arg = (); + +my $custnum = ''; +if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { + $custnum = $1; + my $cust_main = qsearchs({ + 'table' => 'cust_main', + 'hashref' => { 'custnum' => $custnum }, + 'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql, + }) or die "unknown custnum $custnum"; + $title .= ': [_1]'; + push @title_arg, $cust_main->name; +} + + +<%once> + +tie my %label, 'Tie::IxHash', + 'setup' => 'Setup', + 'last_bill' => 'Last bill', + 'bill' => 'Next bill', + 'adjourn' => 'Adjourns', + 'susp' => 'Suspended', + 'dundate' => 'Suspension delayed until', + 'expire' => 'Expires', + 'contract_end' => 'Contract ends', + 'change_date' => 'Changed from other package', + 'cancel' => 'Cancelled', +; +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, }, + '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, }, + 'cancelled' => {}, + '' => {}, +); + +#hmm? +my %checkbox = ( + 'setup' => 0, + 'last_bill' => 0, + 'bill' => 0, + 'susp' => 1, + 'dundate' => 1, + 'expire' => 1, + 'cancel' => 1, +); + +
Search options + Search options +
Next bill date + - <% include( '/elements/tr-input-beginning_ending.html' ) %> + + + + + +% my $noinit = 0; +% foreach my $field (@date_fields) { + + + +% foreach (qw(beginning ending)) { + +% $noinit = 1; +% } + +% } #foreach $field
From date (m/d/y)To date (m/d/y)
<% $label{$field} %> + <& /elements/input-date-field.html, { + 'name' => $field.'_'.$_, + 'value' => '', + 'noinit' => $noinit, + 'format' => '%m/%d/%Y', + } &> +
  
Display optionsDisplay options