diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-15 22:09:41 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-15 22:09:41 -0800 |
commit | 98a3a04b6dfbde0bdd2b27c6f5538daf211a3db9 (patch) | |
tree | 4d449ea86916550a37ed513cbe9635dbb00498b0 /FS | |
parent | 799da5a4ff161203bbac930b75f3b934ccd19243 (diff) |
multiple payment options (remove cust_main.payby reporting options), RT#23741
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/cust_bill/Search.pm | 12 | ||||
-rw-r--r-- | FS/FS/cust_event.pm | 4 |
2 files changed, 0 insertions, 16 deletions
diff --git a/FS/FS/cust_bill/Search.pm b/FS/FS/cust_bill/Search.pm index 1fc818d35..2a67529c1 100644 --- a/FS/FS/cust_bill/Search.pm +++ b/FS/FS/cust_bill/Search.pm @@ -128,10 +128,6 @@ Return only invoices belonging to that customer. Limit to that customer class (single value or arrayref). -=item payby - -Limit to customers with that payment method (single value or arrayref). - =item refnum Limit to customers with that advertising source. @@ -194,14 +190,6 @@ sub search_sql_where { } - #payby - if ( $param->{payby} ) { - my $payby = $param->{payby}; - $payby = [ $payby ] unless ref $payby; - my $payby_in = join(',', map {dbh->quote($_)} @$payby); - push @search, "cust_main.payby IN($payby_in)" if length($payby_in); - } - #_date if ( $param->{_date} ) { my($beginning, $ending) = @{$param->{_date}}; diff --git a/FS/FS/cust_event.pm b/FS/FS/cust_event.pm index d7a35a7a9..f299f9377 100644 --- a/FS/FS/cust_event.pm +++ b/FS/FS/cust_event.pm @@ -337,10 +337,6 @@ specified in HASHREF. Valid parameters are =item ending -=item payby - -=item - =back =cut |