構成可能から単純な製品を取得する


11

の子であるすべての単純な製品のIDを取得するために次のコードを試みています。これは$collection、構成可能な製品のコレクションであることがわかっています。

foreach($collection as $_product) {
    $_children = $_product->getTypeInstance()->getUsedProductIds($_product);
    print_r($_children);
}

ただし、取得しているすべての配列は空です。私は何か間違ったことをしていますか?


あなたのコレクションには何かがありますか?
Aedonis、2016年

はい、複数の製品
b_pcakes

1
これ$_children = $_product->getTypeInstance()->getUsedProducts($_product);を使用してみてください。
Aedonis 2016年

私は実際にすでにあることだけでなく、試してみましたgetUsedProductCollection
b_pcakes

回答:


23

次のようにコードに小さな変更を加えることで、(設定可能な製品の)子製品のIDを印刷できます

foreach($collection as $_product) {
        $logger->info("Here are Parent Product Name".$_product->getName());
        $_children = $_product->getTypeInstance()->getUsedProducts($_product);
        foreach ($_children as $child){
            $logger->info("Here are your child Product Ids ".$child->getID());
        }
    }

この後、ログファイルを確認すると、子IDSがあります。


Magento 2.2.6の場合は機能せず、代わりに次を使用します:$ product-> getTypeId()
Alejandro Torres

17

この質問に対する答えは間違っています。それらの実装は機能するかもしれませんが、これを処理する適切な方法ではありません。これを行う正しい方法は、Magentosのサービスコントラクトとデータモデルを使用することです。

この場合、Magento\ConfigurableProduct\Api\LinkManagementInterface必要なサービス契約です。

コンソールコマンドで使用しているコードの小さな例:

<?php

namespace Vendor\Module\Console;

use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\ConfigurableProduct\Api\LinkManagementInterface;
use Magento\Framework\Api\SearchCriteriaBuilder;
use Magento\Framework\App\State;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

/**
 * Class UpdateChildProducts
 * @package Vendor\Module\Console
 */
class UpdateChildProducts extends Command
{
    /**
     * @var ProductRepositoryInterface
     */
    protected $productRepository;

    /**
     * @var SearchCriteriaBuilder
     */
    protected $searchCriteriaBuilder;

    /**
     * @var LinkManagementInterface
     */
    protected $linkManagement;

    /**
     * @var State
     */
    protected $state;

    /**
     * UpdateChildProducts constructor.
     * @param State $state
     * @param LinkManagementInterface $linkManagement
     * @param ProductRepositoryInterface $productRepository
     * @param SearchCriteriaBuilder $searchCriteriaBuilder
     * @param string $name
     */
    public function __construct(
        State $state,
        LinkManagementInterface $linkManagement,
        ProductRepositoryInterface $productRepository,
        SearchCriteriaBuilder $searchCriteriaBuilder,
        $name = 'update_child_products'
    ) {
        $this->state = $state;
        $this->linkManagement = $linkManagement;
        $this->productRepository = $productRepository;
        $this->searchCriteriaBuilder = $searchCriteriaBuilder;
        parent::__construct($name);
    }

    /**
     * Configure this command
     */
    protected function configure()
    {
        $this->setName('example:update_child_products');
        $this->setDescription('Iterate over all configurable products and show their children count.');
    }

    /**
     * @param InputInterface $input
     * @param OutputInterface $output
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        // Set area code
        try {
            $this->state->setAreaCode('adminhtml');
        } catch (\Exception $e) {
            // Fail silently ...
        }

        $searchCriteria = $this->searchCriteriaBuilder
            ->addFilter('type_id', 'configurable')
            ->create();

        $configurableProducts = $this->productRepository->getList($searchCriteria);
        $output->writeln(sprintf('Found %d configurable products ...', $configurableProducts->getTotalCount()));

        foreach ($configurableProducts->getItems() as $configurableProduct) {
            $childProducts = $this->linkManagement->getChildren($configurableProduct->getSku());
            $output->writeln(
                sprintf('Found %d children for %s', count($childProducts), $configurableProduct->getSku())
            );
        }
    }
}

Magento 2は、コードの大部分がMagento 1から移植されているため、独自のコードとあまり一致していません。そのため、継承ベースのモデルとそれらのメソッド(などgetTypeInstance())の残りが残っています。将来を見据えたMagento 2コードを作成する場合は、サービスコントラクトとデータモデルをできるだけ使用してください。


これは私が何か悪いことをしているのでない限り、恐ろしく遅いようです...
イグロサイト18/8/18

調査する必要がありますが、linkManagementは「special_price」のようなすべての子フィールドをロードしていないようです。そのため、アーキテクチャには適していますが、場合によってはあまり有用ではないようです。$ _product-> getTypeInstance()-> getUsedProducts($ _ product); 正常に動作する
ジュゼッペモ

2

以下のメソッドを呼び出すだけで、

     foreach($collection as $_product) {
            $_configChild = $_product->getTypeInstance()->getUsedProductIds($_product);
            $getChildId = array();
            foreach ($_configChild as $child){
                $getChildId[] = $child;
            }
            echo "<pre>";print_r($getChildId);
        }

上記は$getChildIdすべての単純な製品IDを表示します。


1

これを実現する別の方法は、getChildrenIdsメソッドを使用することです。

$ children = $ cProductTypeInstance-> getChildrenIds($ this-> currentProductObj-> getId());

    // Get all the existing child and add it to associate Id too
    $existingChildrenIds = array();
    foreach ($children as $childIds) {
        foreach ($childIds as $child){
            $existingChildrenIds[] = $child;
        }
    }

0

(IDの文字列だけでなく)実際の子製品オブジェクトを取得するには、次のようにします。

$childProducts = $product->getTypeInstance()->getUsedProducts($product);

それらのIDまたはその他のプロパティを取得するには、上記をループで使用します。

foreach ($childProducts as $childProduct) {
    echo $childProduct->getId();
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.