summaryrefslogtreecommitdiff
path: root/FS/FS/cust_location.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-02-03 19:45:05 -0800
committerIvan Kohler <ivan@freeside.biz>2013-02-03 19:45:05 -0800
commitd2eeb4a5d310fe5eb1b16ada10b57e01511122f9 (patch)
tree5a711936949c7395e66e7fc62a364d6f4e99d41d /FS/FS/cust_location.pm
parent55152935236dd33b72214a8fb7260e71d2ce9ca2 (diff)
add location to credit application detail, RT#21054
Diffstat (limited to 'FS/FS/cust_location.pm')
-rw-r--r--FS/FS/cust_location.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/FS/FS/cust_location.pm b/FS/FS/cust_location.pm
index b86529b..b25163f 100644
--- a/FS/FS/cust_location.pm
+++ b/FS/FS/cust_location.pm
@@ -479,6 +479,20 @@ sub location_label {
$prefix . $self->SUPER::location_label(%opt);
}
+=item county_state_county
+
+Returns a string consisting of just the county, state and country.
+
+=cut
+
+sub county_state_country {
+ my $self = shift;
+ my $label = $self->country;
+ $label = $self->state.", $label" if $self->state;
+ $label = $self->county." County, $label" if $self->county;
+ $label;
+}
+
=back
=head1 CLASS METHODS