From 56fd2a280fa3aba5ae8fcc65ab775ef28dd730d9 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 17 Nov 2009 07:42:34 +0000 Subject: [PATCH] add otaker to payment/refund search, RT#6407 --- httemplate/search/elements/cust_pay_or_refund.html | 4 ++++ httemplate/search/report_cust_pay.html | 2 ++ httemplate/search/report_cust_refund.html | 2 ++ 3 files changed, 8 insertions(+) diff --git a/httemplate/search/elements/cust_pay_or_refund.html b/httemplate/search/elements/cust_pay_or_refund.html index 874bd8aa3..b1296d1b0 100755 --- a/httemplate/search/elements/cust_pay_or_refund.html +++ b/httemplate/search/elements/cust_pay_or_refund.html @@ -209,6 +209,10 @@ if ( $cgi->param('magic') ) { push @search, "cust_$thing.payinfo = '$1'"; } + if ( $cgi->param('otaker') =~ /^(\w+)$/ ) { + push @search, "cust_$thing.otaker = '$1'"; + } + #for cust_pay_pending... statusNOT=done if ( $cgi->param('statusNOT') =~ /^(\w+)$/ ) { push @search, "status != '$1'"; diff --git a/httemplate/search/report_cust_pay.html b/httemplate/search/report_cust_pay.html index dd2358ad1..1dc1d7a7d 100644 --- a/httemplate/search/report_cust_pay.html +++ b/httemplate/search/report_cust_pay.html @@ -61,6 +61,8 @@ ) %> + <% include( '/elements/tr-select-otaker.html' ) %> + Payment diff --git a/httemplate/search/report_cust_refund.html b/httemplate/search/report_cust_refund.html index 2197593da..90d15ec31 100644 --- a/httemplate/search/report_cust_refund.html +++ b/httemplate/search/report_cust_refund.html @@ -61,6 +61,8 @@ ) %> + <% include( '/elements/tr-select-otaker.html' ) %> + Refund -- 2.11.0