CSVインポート:Magento 2に関連製品をインポートするにはどうすればよいですか?


9

Magento 2のcsvを介して関連製品をインポートするにはどうすればよいですか?

私のcsvファイルには、製品のサンプルデータ「11-111,22-222」を持つ属性related_skusの行があります。しかし、管理者の[ 製品]-> [このインポートされた製品のカタログ ]では、サイドバータブの[ 関連製品 ]に製品が表示されませんが、カタログにskusがある製品が存在します。

どこが間違いでしょうか?


Magentoはエラーを示しましたか?インポート動作は何ですか:追加/更新、置換、または削除?
Khoa TruongDinh

エラーはなく、インポートは正常に完了しました。インポート動作は「追加/更新」でした。
ゲスト

データベースのインデックスを再作成しようとしていますか?
Khoa TruongDinh

はい、php bin / magento indexer:reindexコマンドを使用してキャッシュをフラッシュしました。パイプ「|」を使用しました 複数値のセパレータとして、サンプルデータは「11-111 | 22-222」でした。おそらく、Magentoはrelated_skus属性の別の複数値セパレーターをサポートしていませんか?
ユーザーレビュー

今すぐ製品をインポートすることができましたか?
Nolwennig 2017

回答:


5

同じ問題が発生しましたが、インポートモジュールに関連製品に何らかのバグがあるようです

私たちは、2列(親SKU&子供のSKU)期待する新しいコンソールコマンド書き込むことによってそれを解決してきましたrelated.csvの中のファイルのvar children_skusセパレータとしてCSVの区切りとしてコンマ、およびパイプで、フォルダを

試したい場合は、これがファイルです。Sinapsisを目的のベンダー名に置き換え、Syncを目的のモジュール名に置き換えます

モジュールをインストールした後、実行すると、bin/magento setup:upgradeチェックすると新しいコマンドbin/magento listが表示されます。bin/magento sync:related

更新

2.2。*バージョン以降、2つの変更が必要です。$productここに報告されている問題を防ぐために、保存前の追加行https://github.com/magento/magento2/issues/10687

$product->unsetData('media_gallery');

そして、adminadminhtmlに変更します

$this->_appState->setAreaCode('adminhtml');

最初の変更は古いバージョンでは無害で、2番目のバージョンでは同じではないと思います。だから私は以下のコードの最初だけを追加しました

アプリ/コード/シナプシス/同期/etc/di.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
<type name="Magento\Framework\Console\CommandList">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="sync_related" xsi:type="object">Sinapsis\Sync\Console\Command\RelatedCommand</item>
        </argument>
    </arguments>
</type>

app / code / Sinapsis / Sync / etc / module.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="module.xsd">
<module name="Sinapsis_Sync" setup_version="1.0.0">
</module>

アプリ/コード/シナプシス/同期/registration.php

<?php
\Magento\Framework\Component\ComponentRegistrar::register(
    \Magento\Framework\Component\ComponentRegistrar::MODULE,
    'Sinapsis_Sync',
    __DIR__
);

アプリ/コード/シナプシス/同期/コンソール/コマンド/RelatedCommand.php

<?php
namespace Sinapsis\Sync\Console\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Magento\Framework\ObjectManagerInterface;
use Magento\Framework\App\State as AppState;
use Magento\Framework\App\Filesystem\DirectoryList;

class RelatedCommand extends Command
{
    const CSV_SEPARATOR = ',';
    const CHILDREN_SEPARATOR = '|';

    protected $_appState;
    protected $_objectManager;
    protected $_directorylist;

    public function __construct(
        DirectoryList $_directorylist,
        AppState $appState,
        ObjectManagerInterface $objectManager
    ) {
        $this->_appState = $appState;
        $this->_objectManager = $objectManager;
        $this->_directorylist = $_directorylist;
        parent::__construct();
    }

    protected function configure()
    {
        $this->setName('sync:related')
            ->setDescription('Synchronize catalog related products');
        parent::configure();
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $output->writeln('<info>Starting process...<info>');
        $output->writeln('');

        $this->_appState->setAreaCode('admin');
        $productRepository = $this->_objectManager->create('Magento\Catalog\Model\ProductRepository');
        $output->writeln('<info>Loading csv content...<info>');
        $output->writeln('');

        $filePath = $this->_directorylist->getPath('var') . DIRECTORY_SEPARATOR . 'related.csv';
        //@todo control Exception if file does not exist
        $parseData = array();
        if (($handle = fopen($filePath, "r")) !== FALSE) {
            while (($data = fgetcsv($handle, 0, self::CSV_SEPARATOR)) !== FALSE) {
                $parseData[] = $data;
            }
            fclose($handle);
        } else {
            $output->writeln('<info>Could not read .csv file<info>');
            return;
        }
        $headers = array_shift($parseData); // remove headers

        foreach ($parseData as $row){

            $skuParent = trim($row[0]);
            $skuChildren = trim($row[1]);
            $output->writeln('<info>Loading parent product ' . $skuParent . ' ... <info>');

            try {
                $product = $productRepository->get($skuParent);
            } catch (\Magento\Framework\Exception\NoSuchEntityException $e){
                $output->writeln('<info>Could not load!<info>');
                continue;
            }

            $links = $product->getProductLinks();
            $children = explode(self::CHILDREN_SEPARATOR, $skuChildren);

            $i = 1;
            foreach ($children as $skuChild){

                $output->writeln('<info>Loading related product ' . $skuChild . ' ... <info>');

                try {
                    $child = $productRepository->get($skuChild);
                } catch (\Magento\Framework\Exception\NoSuchEntityException $e){
                    $output->writeln('<info>Could not load!<info>');
                    continue;
                }

                $productLink = $this->_objectManager->create('Magento\Catalog\Api\Data\ProductLinkInterface')
                    ->setSku($skuParent)
                    ->setLinkedProductSku($skuChild)
                    ->setPosition($i)
                    ->setLinkType('related');
                $links[] = $productLink;
                $i++;
            }

            $product->setProductLinks($links);
            $product->unsetData('media_gallery');
            $productRepository->save($product);
            $output->writeln('<info>Relations saved for ' . $skuParent . '<info>');

        }
        $output->writeln('');
        $output->writeln('<info>Done<info>');
    }
}

このコードは新製品の作成中に機能しますが、ここでコードを確認した限り、既存の親SKUに関連製品を追加しています。
Hitesh Balpande

親SKUの作成中に何かアイデアがありましたら、その製品に関連/アップセル/クロスセルスカを追加できます。事前に感謝を提案してください。
Hitesh Balpande

このコードは私のために@Raulサンチェスおかげで働いていた
Hitesh Balpande
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.