summaryrefslogtreecommitdiff
path: root/rt/share/html/Elements
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-11-24 12:23:14 -0800
committerMark Wells <mark@freeside.biz>2015-11-24 12:23:25 -0800
commit50c42300d50c01f61e6bf9ab74e72b97a6128ec5 (patch)
treee95a1a89581b80611ffca3785d4886245c8f9659 /rt/share/html/Elements
parentf579cdd720020917d5c6a67eb99fa2e12cda6543 (diff)
add billing address fields to RT ticket search, #19154
Diffstat (limited to 'rt/share/html/Elements')
-rw-r--r--rt/share/html/Elements/CustomerFields21
1 files changed, 17 insertions, 4 deletions
diff --git a/rt/share/html/Elements/CustomerFields b/rt/share/html/Elements/CustomerFields
index d5419d213..226378ed8 100644
--- a/rt/share/html/Elements/CustomerFields
+++ b/rt/share/html/Elements/CustomerFields
@@ -90,16 +90,29 @@ my @customer_fields = ( # ordered
# query/sort needed?
},
{
+ Name => 'BillingAddress',
+ Label => 'Billing Address',
+ Display => 'bill_location',
+ },
+ {
+ Name => 'StreetAddress1',
+ Label => 'Street Address',
+ Display => 'bill_address1',
+ },
+ {
+ Name => 'StreetAddress2',
+ Label => '',
+ Display => 'bill_address2',
+ },
+ {
Name => 'City',
Label => 'City',
- Display => 'city',
- OrderBy => 'Customer.city',
+ Display => 'bill_city',
},
{
Name => 'State',
Label => 'State',
- Display => 'state',
- OrderBy => 'Customer.state',
+ Display => 'bill_state',
},
{
Name => 'CustomerTags',