Integrate the Product Tax Sets Glue API

Edit on GitHub

Install feature API

Prerequisites

To start feature integration, overview and install the necessary features:

NAME VERSION INTEGRATION GUIDE
Spryker Core 201903.0 Feature API
Product 201903.0 Feature API
Tax 201903.0

1) Install the required modules using Composer

composer require spryker/product-tax-sets-rest-api:"^1.0.6" spryker/products-product-tax-sets-resource-relationship:"^1.0.0" --update-with-dependencies
“Verification”

Make sure that the following modules have been installed:

MODULE EXPECTED DIRECTORY
ProductTaxSetsRestApi vendor/spryker/product-tax-sets-rest-api
ProductsProductTaxSetsResourceRelationship vendor/spryker/products-product-tax-sets-resource-relationship

2) Set up Database Schema and Transfer Objects

Apply database changes and generate entity and transfer changes:

console transfer:generate
console propel:install
console transfer:generate
“Verification”

Make sure that the following changes have been applied by checking your database.

DATABASE ENTITY TYPE EVENT
spy_tax_set.uuid column added

Make sure that the following changes have been applied in transfer objects:

TRANSFER TYPE EVENT PATH
RestProductTaxRateTransfer class created src/Generated/Shared/Transfer/RestProductTaxRateTransfer
RestProductTaxSetsAttributesTransfer class created src/Generated/Shared/Transfer/RestProductTaxSetsAttributesTransfer
TaxSetTransfer.uuid property added src/Generated/Shared/Transfer/TaxSetTransfer

3) Set up Behavior

Generate UUIDs for existing records:

console tax-sets:uuid:update
“Verification”

Make sure that the uuid field is filled out for all records in the spy_tax_set table. You can run the following SQL query for it and make sure that the result is 0 records:

SELECT COUNT(*FROM spy_tax_set WHERE uuid IS NULL;

Enable resource and relationship

Activate the following plugin:

PLUGIN SPECIFICATION PREREQUISITES NAMESPACE
ProductTaxSetsResourceRoutePlugin Registers product tax resource. None Spryker\Glue\ProductTaxSetsRestApi\Plugin
ProductsProductTaxSetsResourceRelationshipPlugin Adds product tax sets resource as a relationship to abstract product resource. None Spryker\Glue\ProductsProductTaxSetsResourceRelationship\Plugin
src/Pyz/Glue/GlueApplication/GlueApplicationDependencyProvider.php
<?php

namespace Pyz\Glue\GlueApplication;

use Spryker\Glue\GlueApplication\GlueApplicationDependencyProvider as SprykerGlueApplicationDependencyProvider;
use Spryker\Glue\GlueApplicationExtension\Dependency\Plugin\ResourceRelationshipCollectionInterface;
use Spryker\Glue\ProductTaxSetsRestApi\Plugin\ProductTaxSetsResourceRoutePlugin;
use Spryker\Glue\ProductsProductTaxSetsResourceRelationship\Plugin\ProductsProductTaxSetsResourceRelationshipPlugin;
use Spryker\Glue\ProductsRestApi\ProductsRestApiConfig;

class GlueApplicationDependencyProvider extends SprykerGlueApplicationDependencyProvider
{
	/**
	* @return \Spryker\Glue\GlueApplicationExtension\Dependency\Plugin\ResourceRoutePluginInterface[]
	*/
	protected function getResourceRoutePlugins(): array
	{
		return [
			new ProductTaxSetsResourceRoutePlugin(),
		];
	}

	/**
	* @param \Spryker\Glue\GlueApplicationExtension\Dependency\Plugin\ResourceRelationshipCollectionInterface $resourceRelationshipCollection
	*
	* @return \Spryker\Glue\GlueApplicationExtension\Dependency\Plugin\ResourceRelationshipCollectionInterface
	*/
	protected function getResourceRelationshipPlugins(
		ResourceRelationshipCollectionInterface $resourceRelationshipCollection
	): ResourceRelationshipCollectionInterface {
		$resourceRelationshipCollection->addRelationship(
			ProductsRestApiConfig::RESOURCE_ABSTRACT_PRODUCTS,
			new ProductsProductTaxSetsResourceRelationshipPlugin()
		);

		return $resourceRelationshipCollection;
	}
}
Verification

Make sure that the following endpoint is available: http://mysprykershop.com/abstract-products/{{abstract_sku}}/product-tax-sets

Send a request to http://mysprykershop.com/abstract-products/{{abstract_sku}}?include=product-tax-sets. Make sure that the response includes relationships to the product-tax-sets resources.