From 768ab093771b3305a67c9d929b461ef777ecdad8 Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Fri, 15 Jan 2016 12:41:48 -0600 Subject: RT#38363: use cust_payby when saving cards during payments --- FS/FS/cust_main/Billing_Batch.pm | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'FS/FS/cust_main/Billing_Batch.pm') diff --git a/FS/FS/cust_main/Billing_Batch.pm b/FS/FS/cust_main/Billing_Batch.pm index f91c5fbdc..7612df3b1 100644 --- a/FS/FS/cust_main/Billing_Batch.pm +++ b/FS/FS/cust_main/Billing_Batch.pm @@ -65,12 +65,7 @@ sub batch_card { && !($options{payby} && $options{payinfo} && $options{paydate} && $options{payname}); #false laziness with Billing_Realtime - my @cust_payby = qsearch({ - 'table' => 'cust_payby', - 'hashref' => { 'custnum' => $self->custnum, }, - 'extra_sql' => " AND payby IN ( 'CARD', 'CHEK' ) ", - 'order_by' => 'ORDER BY weight ASC', - }); + my @cust_payby = $self->cust_payby('CARD','CHEK'); # batch can't try out every one like realtime, just use first one my $cust_payby = $cust_payby[0]; -- cgit v1.2.1