Bladeren bron

[Frontend] Correctif originProduct

feature/export_comptable
Guillaume 4 jaren geleden
bovenliggende
commit
3b82c5ca18
1 gewijzigde bestanden met toevoegingen van 10 en 0 verwijderingen
  1. +10
    -0
      ShopBundle/Model/ProductFamily.php

+ 10
- 0
ShopBundle/Model/ProductFamily.php Bestand weergeven

@@ -813,4 +813,14 @@ abstract class ProductFamily extends AbstractDocumentEntity implements ProductPr
return false;
}
}

public function hasOneProductOnline()
{
if( ($this->getActiveProducts() && count($this->getProductsOnline()) > 0)
|| (!$this->getActiveProducts() && $this->getOriginProduct())){
return true ;
}

return false ;
}
}

Laden…
Annuleren
Opslaan