From 4d4171d7ad39732b07839d90e1d74b9f84772d45 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Mon, 9 Nov 2020 13:18:07 -0800 Subject: add credit reason selection, RT#85046 --- httemplate/search/cust_credit.html | 4 ++++ httemplate/search/report_cust_credit.html | 9 +++++++++ 2 files changed, 13 insertions(+) (limited to 'httemplate/search') diff --git a/httemplate/search/cust_credit.html b/httemplate/search/cust_credit.html index 1ffa302c8..88f9bca13 100755 --- a/httemplate/search/cust_credit.html +++ b/httemplate/search/cust_credit.html @@ -195,6 +195,10 @@ if ( $cgi->param('credbatch') =~ /^([\w\-\/\.\:]+)$/ ) { push @search, "cust_credit.credbatch = '$1'"; } +if ( $cgi->param('reasonnum') =~ /^(\d+)$/ && $1 ) { + push @search, "cust_credit.reasonnum = $1"; +} + # commission_salesnum if ( $cgi->param('commission_salesnum') =~ /^(\d+)$/ ) { push @search, "commission_salesnum = $1"; diff --git a/httemplate/search/report_cust_credit.html b/httemplate/search/report_cust_credit.html index cafe556ba..c37b578b4 100644 --- a/httemplate/search/report_cust_credit.html +++ b/httemplate/search/report_cust_credit.html @@ -24,6 +24,15 @@ 'field' => 'amount', &> + <& /elements/tr-select-reason.html, + 'label' => emt('Reason').':', + 'field' => 'reasonnum', + 'reason_class' => 'R', + 'cgi' => $cgi, + 'hide_addnew' => 1, + 'pre_options' => [ 0 => emt('(any reason)') ], + &> + <& /elements/tr-checkbox.html, 'label' => emt('Show Voided Credits').':', 'field' => 'show_voided_credits', -- cgit v1.2.1