* @link http://www.oxidmodule.com */ namespace D3\Devhelper\Modules\Application\Model; use OxidEsales\Eshop\Application\Model\ArticleList; class d3_dev_d3inquiryarticle extends d3_dev_d3inquiryarticle_parent { /** * @return null|ArticleList */ public function getCustomerAlsoBoughtThisProducts() { $oArticle = $this->getArticle(); return $oArticle->getCustomerAlsoBoughtThisProducts(); } /** * Returns true if ordered product is bundle * * @return bool */ public function isBundle() { return ( bool ) $this->getFieldData('oxisbundle'); } }