diff options
-rwxr-xr-x | httemplate/search/elements/cust_pay_or_refund.html | 4 | ||||
-rw-r--r-- | httemplate/search/report_cust_pay.html | 2 | ||||
-rw-r--r-- | httemplate/search/report_cust_refund.html | 2 |
3 files changed, 8 insertions, 0 deletions
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' ) %> + <TR> <TD ALIGN="right" VALIGN="center">Payment</TD> <TD> 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' ) %> + <TR> <TD ALIGN="right" VALIGN="center">Refund</TD> <TD> |