diff options
author | Mitch Jackson <mitch@freeside.biz> | 2019-05-21 15:54:13 -0400 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2019-05-21 16:12:36 -0400 |
commit | 7bfdea32633df161273631bcdc6b33b93867f5b2 (patch) | |
tree | 43b2b1ffa00ba7e9caa7d1d875796682cbb433b7 | |
parent | 7b90424db790634149932f49e253e4b33f8186a5 (diff) |
RT# 83401 Send country field to B::OP on tokenize
-rw-r--r-- | FS/FS/cust_main/Billing_Realtime.pm | 3 |
1 files changed, 2 insertions, 1 deletions
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 ); } } } |