X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_event.html;fp=httemplate%2Fsearch%2Fcust_event.html;h=bd6ba697481023a1161bf8d3aa027490470c76af;hp=deb34b9e5b5da9b284a42f4b1defa0f45ae188e6;hb=fed12e8214a8a951377961ccbe7a09171b1e38c2;hpb=fc8d730d0a7b31b617c963c5619bd3f45c5c3eb6 diff --git a/httemplate/search/cust_event.html b/httemplate/search/cust_event.html index deb34b9e5..bd6ba6974 100644 --- a/httemplate/search/cust_event.html +++ b/httemplate/search/cust_event.html @@ -175,7 +175,13 @@ $search{'ending'} = $ending; my $where = ' WHERE '. FS::cust_event->search_sql_where( \%search ); -my $join = FS::cust_event->join_sql(); +my $join = FS::cust_event->join_sql() . + '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. my $sql_query = { 'table' => 'cust_event',