Magento 2のcsvを介して関連製品をインポートするにはどうすればよいですか?
私のcsvファイルには、製品のサンプルデータ「11-111,22-222」を持つ属性related_skusの行があります。しかし、管理者の[ 製品]-> [このインポートされた製品のカタログ ]では、サイドバータブの[ 関連製品 ]に製品が表示されませんが、カタログにskusがある製品が存在します。
どこが間違いでしょうか?
Magento 2のcsvを介して関連製品をインポートするにはどうすればよいですか?
私のcsvファイルには、製品のサンプルデータ「11-111,22-222」を持つ属性related_skusの行があります。しかし、管理者の[ 製品]-> [このインポートされた製品のカタログ ]では、サイドバータブの[ 関連製品 ]に製品が表示されませんが、カタログにskusがある製品が存在します。
どこが間違いでしょうか?
回答:
同じ問題が発生しましたが、インポートモジュールに関連製品に何らかのバグがあるようです
私たちは、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');
そして、adminをadminhtmlに変更します
$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>');
}
}