Integrate Avalara Tax + Product Options
Edit on GitHubTo enable the AvalaraTax + Product Options component of the Avalara partner integration, use the spryker-eco/avalara-tax-product-option module.
Install feature core
Follow the steps below to install the feature core.
Prerequisites
To start the feature integration, overview and install the necessary features:
NAME | VERSION | INTEGRATION GUIDE |
---|---|---|
Product Options | master | |
Avalara Tax | master | Avalara Tax integration |
1) Install the required modules using Composer
Install the required modules:
composer require spryker-eco/avalara-tax-product-option:"^0.1.0" --update-with-dependencies
Ensure that the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
AvalaraTaxProductOption | vendor/spryker-eco/avalara-tax-product-option |
2) Set up database schema
Apply database changes, generate entity and transfer changes:
console propel:install
console transfer:generate
Make sure that the following changes have been applied by checking your database:
DATABASE ENTITY | TYPE | EVENT |
---|---|---|
spy_product_option_value.avalara_tax_code | column | created |
3) Set up behavior
- Activate the following plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
AvalaraProductOptionCreateTransactionRequestExpanderPlugin | Expands AvalaraCreateTransactionRequestTransfer with product option data. |
None | SprykerEco\Zed\AvalaraTaxProductOption\Communication\Plugin\AvalaraTax |
AvalaraProductOptionCreateTransactionRequestAfterPlugin | Calculates taxes for ProductOptions based on AvalaraCreateTransactionResponseTransfer . |
None | SprykerEco\Zed\AvalaraTaxProductOption\Communication\Plugin\AvalaraTax |
src/Pyz/Zed/AvalaraTax/AvalaraTaxDependencyProvider.php
<?php
namespace Pyz\Zed\AvalaraTax;
use SprykerEco\Zed\AvalaraTax\AvalaraTaxDependencyProvider as SprykerAvalaraTaxDependencyProvider;
use SprykerEco\Zed\AvalaraTaxShipment\Communication\Plugin\AvalaraTax\AvalaraShipmentCreateTransactionRequestAfterPlugin;
use SprykerEco\Zed\AvalaraTaxShipment\Communication\Plugin\AvalaraTax\AvalaraShipmentCreateTransactionRequestExpanderPlugin;
class AvalaraTaxDependencyProvider extends SprykerAvalaraTaxDependencyProvider
{
/**
* @return \SprykerEco\Zed\AvalaraTaxExtension\Dependency\Plugin\CreateTransactionRequestExpanderPluginInterface[]
*/
protected function getCreateTransactionRequestExpanderPlugins(): array
{
return [
new AvalaraShipmentCreateTransactionRequestExpanderPlugin(),
];
}
/**
* @return \SprykerEco\Zed\AvalaraTaxExtension\Dependency\Plugin\CreateTransactionRequestAfterPluginInterface[]
*/
protected function getCreateTransactionRequestAfterPlugins(): array
{
return [
new AvalaraShipmentCreateTransactionRequestAfterPlugin(),
];
}
}
Make sure you’ve enabled the plugins:
- Add an item with a product option to a cart.
- Proceeding to checkout.
- On the summary page, you should see the calculated tax amount for your order, including taxes for product options.
Update the following data import .csv files:
FILE NAME | COLUMN TO ADD | LOCATION |
---|---|---|
product_option.csv | avalara_tax_code | data/import/common/common/product_option.csv |
To handle the new field, adjust ProductOption
data importer using the following example:
data/import/common/common/product_option.csv
>shipment_method_key,name,carrier,taxSetName,avalaraTaxCode
spryker_dummy_shipment-standard,Standard,Spryker Dummy Shipment,Shipment Taxes,PC040111
4) Import data:
console data:import product-option
Make sure that the data has been imported to spy_product_option_value
.
Thank you!
For submitting the form