Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CC-26584 nonsplit to split merge #1341

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@
"spryker-shop/sales-product-configuration-widget-extension": "^1.0.0",
"spryker-shop/sales-return-page": "^1.0.0",
"spryker-shop/sales-return-page-extension": "^1.0.0",
"spryker-shop/sales-service-point-widget": "^0.1.0",
"spryker-shop/security-blocker-page": "^1.0.0",
"spryker-shop/service-point-widget": "^0.2.0",
"spryker-shop/session-agent-validation": "^1.0.0",
Expand Down Expand Up @@ -987,6 +988,8 @@
"spryker/sales-return-gui-extension": "^1.0.0",
"spryker/sales-return-search": "^1.0.0",
"spryker/sales-returns-rest-api": "^1.0.0",
"spryker/sales-service-point": "^0.1.0",
"spryker/sales-service-point-gui": "^0.1.0",
"spryker/sales-split": "^5.0.0",
"spryker/sales-statistics": "^1.0.0",
"spryker/scheduler": "^1.2.0",
Expand Down
173 changes: 160 additions & 13 deletions composer.lock

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

8 changes: 4 additions & 4 deletions data/import/common/common/cms_block.csv

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

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

namespace Orm\Zed\SalesServicePoint\Persistence;

use Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePoint as BaseSpySalesOrderItemServicePoint;

/**
* Skeleton subclass for representing a row from the 'spy_sales_order_item_service_point' 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 SpySalesOrderItemServicePoint extends BaseSpySalesOrderItemServicePoint
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

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

namespace Orm\Zed\SalesServicePoint\Persistence;

use Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePointQuery as BaseSpySalesOrderItemServicePointQuery;

/**
* Skeleton subclass for performing query and update operations on the 'spy_sales_order_item_service_point' 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 SpySalesOrderItemServicePointQuery extends BaseSpySalesOrderItemServicePointQuery
{
}
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
use SprykerShop\Yves\SalesOrderThresholdWidget\Widget\SalesOrderThresholdWidget;
use SprykerShop\Yves\SalesProductBundleWidget\Widget\OrderItemsProductBundleWidget;
use SprykerShop\Yves\SalesProductConfigurationWidget\Widget\ProductConfigurationOrderItemDisplayWidget;
use SprykerShop\Yves\SalesServicePointWidget\Widget\SalesServicePointNameForShipmentGroupWidget;
use SprykerShop\Yves\ServicePointWidget\Plugin\ShopApplication\ClickCollectServicePointAddressFormWidgetCacheKeyGeneratorStrategyPlugin;
use SprykerShop\Yves\ServicePointWidget\Widget\ClickCollectServicePointAddressFormWidget;
use SprykerShop\Yves\ServicePointWidget\Widget\ServicePointSearchWidget;
Expand Down Expand Up @@ -328,6 +329,7 @@ protected function getGlobalWidgets(): array
MerchantMetaSchemaWidget::class,
ServicePointSearchWidget::class,
ShipmentTypeAddressFormWidget::class,
SalesServicePointNameForShipmentGroupWidget::class,
ClickCollectServicePointAddressFormWidget::class,
];
}
Expand Down
4 changes: 4 additions & 0 deletions src/Pyz/Zed/Sales/SalesDependencyProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
use Spryker\Zed\SalesReturn\Communication\Plugin\Sales\RemunerationTotalOrderExpanderPlugin;
use Spryker\Zed\SalesReturn\Communication\Plugin\Sales\UpdateOrderItemIsReturnableByGlobalReturnableNumberOfDaysPlugin;
use Spryker\Zed\SalesReturn\Communication\Plugin\Sales\UpdateOrderItemIsReturnableByItemStatePlugin;
use Spryker\Zed\SalesServicePoint\Communication\Plugin\Sales\ServicePointOrderItemExpanderPlugin;
use Spryker\Zed\SalesServicePoint\Communication\Plugin\Sales\ServicePointOrderItemsPostSavePlugin;
use Spryker\Zed\Shipment\Communication\Plugin\Sales\ShipmentOrderItemExpanderPlugin;
use Spryker\Zed\Shipment\Communication\Plugin\ShipmentOrderHydratePlugin;
use Spryker\Zed\WarehouseAllocation\Communication\Plugin\Sales\WarehouseOrderItemExpanderPlugin;
Expand Down Expand Up @@ -206,6 +208,7 @@ protected function getOrderItemExpanderPlugins(): array
new ProductConfigurationOrderItemExpanderPlugin(),
new ShipmentOrderItemExpanderPlugin(),
new WarehouseOrderItemExpanderPlugin(),
new ServicePointOrderItemExpanderPlugin(),
];
}

Expand Down Expand Up @@ -266,6 +269,7 @@ protected function getOrderItemsPostSavePlugins(): array
new ConfiguredBundlesOrderItemsPostSavePlugin(),
new ProductConfigurationOrderItemsPostSavePlugin(),
new ItemMetadataOrderItemsPostSavePlugin(),
new ServicePointOrderItemsPostSavePlugin(),
];
}
}