構成可能な製品のMagento 2で子の親製品IDを取得するにはどうすればよいですか?
子商品IDに基づいてMagentoで子商品の親商品IDを取得したいのですが。
構成可能な製品のMagento 2で子の親製品IDを取得するにはどうすればよいですか?
子商品IDに基づいてMagentoで子商品の親商品IDを取得したいのですが。
回答:
phtmlファイルで親製品IDを取得するには、次の方法でコードを直接呼び出すことができます。
$productId = 52; //this is child product id
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->create('Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable')->getParentIdsByChild($productId);
if(isset($product[0])){
//this is parent product id..
echo $product[0];
}
あなたはそれをブロックファイルで呼び出すことができ、Magento固有の方法で、
protected $_catalogProductTypeConfigurable;
public function __construct(
\Magento\Catalog\Block\Product\Context $context,
//for getting parent id of simple
\Magento\ConfigurableProduct\Model\ResourceModel\Product\Type\Configurable $catalogProductTypeConfigurable,
array $data = []
) {
//for getting parent id of simple
$this->_catalogProductTypeConfigurable = $catalogProductTypeConfigurable;
parent::__construct($context, $data);
}
public function getProductData($id) {
$parentByChild = $this->_catalogProductTypeConfigurable->getParentIdsByChild($id);
if (isset($parentByChild[0])) {
//set id as parent product id...
$id = $parentByChild[0];
}
return $id;
}
Magento\Catalog\Block\Product\AbstractProduct
???