summaryrefslogtreecommitdiff
path: root/FS/FS/cust_bill_void.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2015-02-24 18:41:39 -0800
committerIvan Kohler <ivan@freeside.biz>2015-02-24 18:41:39 -0800
commit0617a36106148efd7884c2f6ccd2a41075f9e5f6 (patch)
tree3f33ad05f2c3e97a8c1c140cac0c0b088a35c21e /FS/FS/cust_bill_void.pm
parent467dfa2d10e8e54bb162554c8f11dca65ec5b565 (diff)
multiple payment options, RT#23741
Diffstat (limited to 'FS/FS/cust_bill_void.pm')
-rw-r--r--FS/FS/cust_bill_void.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/cust_bill_void.pm b/FS/FS/cust_bill_void.pm
index bf147c0..b9db81b 100644
--- a/FS/FS/cust_bill_void.pm
+++ b/FS/FS/cust_bill_void.pm
@@ -278,7 +278,7 @@ sub cust_pkg {
Class method which returns an SQL WHERE fragment to search for parameters
specified in HASHREF. Accepts the following parameters for
L<FS::cust_bill::search_sql_where>: C<_date>, C<invnum_min>, C<invnum_max>,
-C<agentnum>, C<custnum>, C<cust_classnum>, C<refnum>, C<payby>. Also
+C<agentnum>, C<custnum>, C<cust_classnum>, C<refnum>. Also
accepts the following:
=over 4
@@ -302,7 +302,7 @@ sub search_sql_where {
map { $_ => $param->{$_} }
grep { exists($param->{$_}) }
qw( _date invnum_min invnum_max agentnum custnum cust_classnum
- refnum payby )
+ refnum )
};
my $search_sql = FS::cust_bill->search_sql_where($cust_bill_param);
$search_sql =~ s/cust_bill/cust_bill_void/g;