Install Avalara + Product Options
Edit on GitHubTo enable the Avalara + 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
Install the necessary features:
NAME | VERSION | INSTALLATION GUIDE |
---|---|---|
Product Options | master | |
Avalara Tax | master | Install Avalara |
Install the required modules using Composer
Install the required modules using Composer:
composer require spryker-eco/avalara-tax-product-option:"^0.1.0" --update-with-dependencies
Verification
Make sure the following modules have been installed:
MODULE | EXPECTED DIRECTORY |
---|---|
AvalaraTaxProductOption | vendor/spryker-eco/avalara-tax-product-option |
Set up database schema
Apply database changes, generate entity and transfer changes:
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_product_option_value.avalara_tax_code | column | created |
Set up behavior
- Activate the following plugins:
PLUGIN | SPECIFICATION | PREREQUISITES | NAMESPACE |
---|---|---|---|
AvalaraProductOptionCreateTransactionRequestExpanderPlugin | Expands AvalaraCreateTransactionRequestTransfer with product option data. |
SprykerEco\Zed\AvalaraTaxProductOption\Communication\Plugin\AvalaraTax | |
AvalaraProductOptionCreateTransactionRequestAfterPlugin | Calculates taxes for ProductOptions based on AvalaraCreateTransactionResponseTransfer . |
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(),
];
}
}
Verification
- Add an item with a product option to a cart.
- Proceed 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 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
Verification
Make sure that the data has been imported to spy_product_option_value
.
Next steps
Thank you!
For submitting the form