Skip to content

Commit

Permalink
[BF] DO not show graphs for not connected customers - fixes #376
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Feb 1, 2018
1 parent 49786dd commit d727adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/Repositories/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function getCurrentActive( $asArray = false, $trafficing = false, $extern
WHERE " . self::DQL_CUST_CURRENT . " AND " . self::DQL_CUST_ACTIVE;

if( $trafficing )
$dql .= " AND " . self::DQL_CUST_TRAFFICING;
$dql .= " AND " . self::DQL_CUST_TRAFFICING . " AND " . self::DQL_CUST_CONNECTED;

if( $externalOnly )
$dql .= " AND " . self::DQL_CUST_EXTERNAL;
Expand Down

0 comments on commit d727adf

Please sign in to comment.