summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorJonathan Prykop <jonathan@freeside.biz>2016-05-13 22:47:53 -0500
committerJonathan Prykop <jonathan@freeside.biz>2016-05-13 23:05:24 -0500
commitd0b6fc0f6355ec22c847f7e6592b91fed2be10ca (patch)
tree2a0a2f45bbea852f74e187c0be3dd0b49d1997c6 /httemplate
parent063ced0a93e31b662d9aef69ee2c10b117f90784 (diff)
RT#41394: Add advertising source to customer fields selection [added referral join to search/cust_event]
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/search/cust_event.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html
index 344ceb8f7..8ab0f8fa6 100644
--- a/httemplate/search/cust_event.html
+++ b/httemplate/search/cust_event.html
@@ -181,12 +181,16 @@ $search{'ending'} = $ending;
my $where = ' WHERE '. FS::cust_event->search_sql_where( \%search );
my $join = FS::cust_event->join_sql() .
+ # warning: does not show the true service address for package events.
+ # the query to do that would be painfully slow.
'LEFT JOIN cust_location bill_location '.
'ON (cust_main.bill_locationnum = bill_location.locationnum) '.
'LEFT JOIN cust_location ship_location '.
- 'ON (cust_main.ship_locationnum = ship_location.locationnum)';
- # warning: does not show the true service address for package events.
- # the query to do that would be painfully slow.
+ 'ON (cust_main.ship_locationnum = ship_location.locationnum)'.
+ # include link to referral in case it's in cust-fields
+ # (maybe we should be using FS::UI::Web::join_cust_main instead?)
+ 'LEFT JOIN (select refnum, referral from part_referral) AS part_referral_x '.
+ 'ON (cust_main.refnum = part_referral_x.refnum) ';
my $sql_query = {
'table' => 'cust_event',