Feeds - импорт изображений в Сommerce

Главные вкладки

Аватар пользователя grikos grikos 25 мая 2014 в 22:02

Здравствуйте,

делаю магазин на Drupal Commerce. настроил commerce_feeds ( процессор - Commerce Product processor)
в csv url на картинки со сторонних сайтов.

есть ли возможность автоматического скачивания картинки и присвоения его товару (не ноде)

нашёл https://drupal.org/project/feeds_imagegrabber, но он не особо хочет работать с "Commerce Product processor"

Комментарии

Аватар пользователя grikos grikos 26 мая 2014 в 8:50

без feeds_imagegrabber он просто скачивает картинки на сервер, но не присваивает их товарам (либо я что-то делаю неправильно)

Аватар пользователя grikos grikos 26 мая 2014 в 8:58

$feeds_importer = new stdClass();
$feeds_importer->disabled = FALSE;
$feeds_importer->api_version = 1;
$feeds_importer->id = 'velosipedy_products';
$feeds_importer->config = array(
'name' => 'Velosipedy - products',
'description' => '',
'fetcher' => array(
'plugin_key' => 'FeedsFileFetcher',
'config' => array(
'allowed_extensions' => 'txt csv tsv xml opml',
'direct' => 0,
'directory' => 'public://feeds',
'allowed_schemes' => array(
'public' => 'public',
),
),
),
'parser' => array(
'plugin_key' => 'FeedsCSVParser',
'config' => array(
'delimiter' => ',',
'no_headers' => 0,
),
),
'processor' => array(
'plugin_key' => 'FeedsCommerceProductProcessor',
'config' => array(
'product_type' => 'velosipedy',
'author' => '1',
'tax_rate' => '',
'mappings' => array(
0 => array(
'source' => 'SKU',
'target' => 'sku',
'unique' => 1,
),
1 => array(
'source' => 'Наименование',
'target' => 'title',
'unique' => FALSE,
),
2 => array(
'source' => 'Цена',
'target' => 'commerce_price:amount',
'unique' => FALSE,
),
3 => array(
'source' => 'Размер рамы',
'target' => 'field_velosipedy_razmer_ramy',
'term_search' => '0',
'autocreate' => 1,
),
4 => array(
'source' => 'Изображения товара',
'target' => 'field_product_images',
'unique' => FALSE,
),
),
'update_existing' => '2',
'input_format' => 'full_html',
'skip_hash_check' => 0,
'bundle' => 'velosipedy',
),
),
'content_type' => '',
'update' => 0,
'import_period' => '-1',
'expire_period' => 3600,
'import_on_create' => 1,
'process_in_background' => 0,
);

Аватар пользователя grikos grikos 26 мая 2014 в 20:57

я написал в топике, что использую commerce_feeds
но при импорте у меня скачиваются картинки на сервер, но не прикрепляются к товару.