actualys / drupal-commerce-connector-bundle
Akeneo PIM bundle to export to Drupal commerce platform
Installs: 199
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 9
Forks: 10
Open Issues: 8
Type:symfony-bundle
Requires
- akeneo/delta-export-bundle: v1.0.0-BETA2
- akeneo/pim-community-dev: >=1.2 <1.4
- guzzle/service: >=3.6.0
This package is not auto-updated.
Last update: 2024-11-05 03:29:01 UTC
README
Drupal Commerce Connector for Akeneo PIM OpenSource Project.
This bundle has been developped to export product settings and products to Drupal Commerce platform. A tailor made module for Drupal is required to integrates correctly all data.
Connector usage
Export profiles available
Family
code: drupal_commerce_family_export
This export is the more complexe. It contains all information required to create a product type with all it's fields on Drupal side. It will create too taxonomy vocabularies (empty) if necessary. The first time a field instance is created, default widget is used with default settings. The second time this export profile is used, field instance settings are not overriden. So you are able to fine tune on Drupal side just after field are created by export profile.
Attribute option
code: drupal_commerce_attribute_option_export
Attribute option concerns only single
and multi select
field values. On Drupal side, it result in taxonomy vocabulary
and taxonomy terms
creation.
Terms are translated using i18n_string
mecanism.
Category
code: drupal_commerce_category_export
Using the same mecanism as for attribute option
, a taxonomy vocabulary is created to hold Catalog
tree.
Product
code: drupal_commerce_product_full_export / drupal_commerce_product_delta_export
Products are exported to Drupal using 2 mecanisms :
- full: All products are exported each time
- delta: Only new products or updated since last export
Product are exported one by one with all their attributes, associations and group details.
Note: Images (or files) are not exported directly with product other fields. They are provided/downloaded through a webservice (callback) used in the Drupal Migrate process. To make it possible, you need to setup the Akeneo url in your parameter.yml file, and setup login/password into Drupal Akeneo setup page.
Configure a profile
- drupal base url (ex: "http://drupal.local")
- endpoint (provide by Drupal Services module, ex: "json")
- resource path (provide by Drupal Services module, ex: "akeneo")
- username (provide by Drupal, ex: "admin")
- password (provide by Drupal, ex: "password")
To do
- implement security layer for the webservice media access
Bug and issues
This bundle is still under active development. Expect bugs and instabilities. Feel free to report them on this repository's issue section.