-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/ae-157/master-strategy-resolver
- Loading branch information
Showing
6 changed files
with
115 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,12 @@ If you need help with whitelisting the email addresses, forward this request to | |
--> | ||
|
||
## Adjust auto replies | ||
|
||
Automatic responses to updates and notifications we send you can lead to cases being created accidentally. Make sure automatic replies are disabled for [email protected]. | ||
|
||
If you are using the email address of a ticket system or any other automated system to receive our communications and notifications, make sure that that system also doesn't send automatic replies to [email protected]. | ||
|
||
## Provide all the information | ||
|
||
Our goal is to increase the number of tickets that are solved with the first engagement. This is more likely to happen when a support case is opened with all the information needed to assess, reproduce, and solve the problem. Such cases may be resolved with the first response. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
....0/base-shop/third-party-integrations/vertex/install-vertex/integrate-taxamo.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
title: Integrate Taxamo | ||
description: Find out how you can integrate the Taxamo app into your Spryker shop | ||
last_updated: Jan 8, 2025 | ||
template: howto-guide-template | ||
--- | ||
|
||
To integrate Taxamo, follow the steps: | ||
|
||
1. Update [spryker/tax-app](https://github.com/spryker/tax-app) to `0.4.0` and install the [spryker/tax-app-rest-api](https://github.com/spryker/tax-app-rest-api) module: | ||
|
||
```bash | ||
composer require spryker/tax-app-rest-api:"^0.1.0" --update-with-dependencies | ||
``` | ||
|
||
|
||
2. To integrate Taxamo API, configure `GlueApplicationDependencyProvider` to enable Tax ID validator: | ||
|
||
```php | ||
<?php | ||
|
||
namespace Pyz\Glue\GlueApplication; | ||
|
||
use Spryker\Glue\GlueApplication\GlueApplicationDependencyProvider as SprykerGlueApplicationDependencyProvider; | ||
use Spryker\Glue\TaxAppRestApi\Plugin\TaxValidateIdResourceRoutePlugin; | ||
|
||
class GlueApplicationDependencyProvider extends SprykerGlueApplicationDependencyProvider | ||
{ | ||
/** | ||
* @return array<\Spryker\Glue\GlueApplicationExtension\Dependency\Plugin\ResourceRoutePluginInterface> | ||
*/ | ||
protected function getResourceRoutePlugins(): array | ||
{ | ||
return [ | ||
//.... | ||
new TaxValidateIdResourceRoutePlugin(), | ||
]; | ||
} | ||
|
||
} | ||
``` | ||
|
||
## Next step | ||
|
||
[Connect Vertex](/docs/pbc/all/tax-management/{{page.version}}/base-shop/third-party-integrations/vertex/connect-vertex.html) |