From: Mitch Jackson Date: Tue, 21 May 2019 19:54:13 +0000 (-0400) Subject: RT# 83401 Send country field to B::OP on tokenize X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=7bfdea32633df161273631bcdc6b33b93867f5b2 RT# 83401 Send country field to B::OP on tokenize --- diff --git a/FS/FS/cust_main/Billing_Realtime.pm b/FS/FS/cust_main/Billing_Realtime.pm index 1ac12ce6b..89d63dd26 100644 --- a/FS/FS/cust_main/Billing_Realtime.pm +++ b/FS/FS/cust_main/Billing_Realtime.pm @@ -323,7 +323,8 @@ sub _bop_cust_payby_options { if ( $cust_payby->locationnum ) { my $cust_location = $cust_payby->cust_location; - $options->{$_} = $cust_location->$_() for qw( address1 address2 city state zip ); + $options->{$_} = $cust_location->$_() + for qw( address1 address2 city state zip country ); } } }