Experimenting with a negation for #159

This commit is contained in:
James Cole 2016-02-04 08:56:33 +01:00
parent 23f474b003
commit 151e8e8f17

View File

@ -88,7 +88,7 @@ class ReportHelper implements ReportHelperInterface
} else {
$billLine->setHit(false);
}
if ($billLine->isHit() && $billLine->isActive()) {
if (!(!$billLine->isHit() && !$billLine->isActive())) {
$collection->addBill($billLine);
}