summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2019-05-21 15:54:13 -0400
committerMitch Jackson <mitch@freeside.biz>2019-05-21 16:22:17 -0400
commit844bc4bed7f3f301181371b0a2fcc2a2dfab7db0 (patch)
treefa5c292ac4437bcb8ec13c68d826a859197553ce
parentfe624dec60274ffce90ef9e35dcf582902cd7c16 (diff)
RT# 83401 Send country field to B::OP on tokenize
-rw-r--r--FS/FS/cust_main/Billing_Realtime.pm3
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 3284ee20c..346d5661b 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 );
}
}
}