Skip to content

Commit

Permalink
Merge pull request #644 from spryker-shop/feature/acp-4696/master-tax…
Browse files Browse the repository at this point in the history
…-id-validation-integration

ACP-4696: integration
  • Loading branch information
vol4onok authored Feb 13, 2025
2 parents d9a8f26 + e916d93 commit 7694de8
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 11 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@
"spryker/stores-api": "^1.1.0",
"spryker/stores-backend-api": "^1.0.0",
"spryker/stores-rest-api": "^1.4.0",
"spryker/tax-app": "^0.3.6",
"spryker/tax-app": "^0.4.0",
"spryker/tax-app-rest-api": "^0.1.0",
"spryker/tax-product-connector": "^4.10.0",
"spryker/up-selling-products-rest-api": "^1.2.2",
"spryker/urls-rest-api": "^1.0.2",
Expand Down
71 changes: 61 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 25 additions & 0 deletions src/Orm/Zed/TaxApp/Persistence/SpyTaxIdValidationHistory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

/**
* This file is part of the Spryker Commerce OS.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

declare(strict_types = 1);

namespace Orm\Zed\TaxApp\Persistence;

use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxIdValidationHistory as BaseSpyTaxIdValidationHistory;

/**
* Skeleton subclass for representing a row from the 'spy_tax_id_validation_history' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
class SpyTaxIdValidationHistory extends BaseSpyTaxIdValidationHistory
{
}
25 changes: 25 additions & 0 deletions src/Orm/Zed/TaxApp/Persistence/SpyTaxIdValidationHistoryQuery.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

/**
* This file is part of the Spryker Commerce OS.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

declare(strict_types = 1);

namespace Orm\Zed\TaxApp\Persistence;

use Spryker\Zed\TaxApp\Persistence\Propel\AbstractSpyTaxIdValidationHistoryQuery as BaseSpyTaxIdValidationHistoryQuery;

/**
* Skeleton subclass for performing query and update operations on the 'spy_tax_id_validation_history' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
class SpyTaxIdValidationHistoryQuery extends BaseSpyTaxIdValidationHistoryQuery
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
use Spryker\Glue\ShipmentsRestApi\ShipmentsRestApiConfig;
use Spryker\Glue\StoresApi\Plugin\GlueStorefrontApiApplication\StoreApplicationPlugin;
use Spryker\Glue\StoresRestApi\Plugin\StoresResourceRoutePlugin;
use Spryker\Glue\TaxAppRestApi\Plugin\TaxValidateIdResourceRoutePlugin;
use Spryker\Glue\UpSellingProductsRestApi\Plugin\GlueApplication\CartUpSellingProductsResourceRoutePlugin;
use Spryker\Glue\UpSellingProductsRestApi\Plugin\GlueApplication\GuestCartUpSellingProductsResourceRoutePlugin;
use Spryker\Glue\UrlsRestApi\Plugin\GlueApplication\UrlResolverResourceRoutePlugin;
Expand Down Expand Up @@ -283,6 +284,7 @@ protected function getResourceRoutePlugins(): array
new PaymentsResourceRoutePlugin(),
new PaymentCancellationsResourceRoutePlugin(),
new PaymentCustomersResourceRoutePlugin(),
new TaxValidateIdResourceRoutePlugin(),
];
}

Expand Down

0 comments on commit 7694de8

Please sign in to comment.