Checkout + Quotation Process feature integration

Edit on GitHub

Install feature core

Prerequisites

To start feature integration, overview and install the necessary features:

NAME VERSION
Checkout 202108.0
Quotation Process 202108.0

1) Set up behavior

Register the following plugins:

PLUGIN SPECIFICATION PREREQUISITES NAMESPACE
QuoteRequestPreCheckPlugin Prevents the checkout for quote in the quotation process. None Spryker\Zed\QuoteRequest\Communication\Plugin\Checkout
CloseQuoteRequestCheckoutPostSaveHookPlugin Closes a quote request after the order has been placed from it. None Spryker\Zed\QuoteRequest\Communication\Plugin\Checkout

Pyz\Zed\Checkout\CheckoutDependencyProvider.php

<?php
 
namespace Pyz\Zed\Checkout;
 
use Spryker\Zed\Checkout\CheckoutDependencyProvider as SprykerCheckoutDependencyProvider;
use Spryker\Zed\Kernel\Container;
use Spryker\Zed\QuoteRequest\Communication\Plugin\Checkout\CloseQuoteRequestCheckoutPostSaveHookPlugin;
use Spryker\Zed\QuoteRequest\Communication\Plugin\Checkout\QuoteRequestPreCheckPlugin;
 
class CheckoutDependencyProvider extends SprykerCheckoutDependencyProvider
{
    /**
     * @param \Spryker\Zed\Kernel\Container $container ’
     *
     * @return \Spryker\Zed\CheckoutExtension\Dependency\Plugin\CheckoutPreConditionPluginInterface[]
     */
    protected function getCheckoutPreConditions(Container $container)
    {
        return [
            new QuoteRequestPreCheckPlugin(),
        ];
    }
 
    /**
     * @param \Spryker\Zed\Kernel\Container $container
     *
     * @return \Spryker\Zed\Checkout\Dependency\Plugin\CheckoutPostSaveHookInterface[]
     */
    protected function getCheckoutPostHooks(Container $container)
    {
        return [
            new CloseQuoteRequestCheckoutPostSaveHookPlugin(),
        ];
    }
}
Verification

Make sure that you can’t see the Checkout button on the Quote request items edit page.
Make sure that after you placed an order form quote request, a quote request has a closed status.

Install feature frontend

Prerequisites

Please overview and install the necessary features before beginning the integration step.

NAME VERSION
Checkout 202108.0
Quotation Process 202108.0

Set up behavior

Set up quote request workflow

Enable the following behaviors by registering the plugins:

PLUGIN SPECIFICATION PREREQUISITES NAMESPACE
QuoteRequestAgentCheckoutWorkflowStepResolverStrategyPlugin Modifies checkout steps for agent RFQ edit workflow. None SprykerShop\Yves\QuoteRequestAgentPage\Plugin\CheckoutPage
QuoteWithCustomShipmentPriceCheckoutWorkflowStepResolverStrategyPlugin Modifies checkout steps for a quote with source shipment price workflow. None SprykerShop\Yves\QuoteRequestPage\Plugin\CheckoutPage
QuoteRequestCheckoutWorkflowStepResolverStrategyPlugin Modifies checkout steps for buyer RFQ edit workflow. None SprykerShop\Yves\QuoteRequestPage\Plugin\CheckoutPage

Pyz\Yves\CheckoutPage\CheckoutPageDependencyProvider.php

<?php
 
namespace Pyz\Yves\CheckoutPage;
 
use SprykerShop\Yves\CheckoutPage\CheckoutPageDependencyProvider as SprykerShopCheckoutPageDependencyProvider;
use SprykerShop\Yves\QuoteRequestAgentPage\Plugin\CheckoutPage\QuoteRequestAgentCheckoutWorkflowStepResolverStrategyPlugin;
use SprykerShop\Yves\QuoteRequestPage\Plugin\CheckoutPage\QuoteRequestCheckoutWorkflowStepResolverStrategyPlugin;
use SprykerShop\Yves\QuoteRequestPage\Plugin\CheckoutPage\QuoteWithCustomShipmentPriceCheckoutWorkflowStepResolverStrategyPlugin;
 
class CheckoutPageDependencyProvider extends SprykerShopCheckoutPageDependencyProvider
{
    /**
     * @return \SprykerShop\Yves\CheckoutPageExtension\Dependency\Plugin\CheckoutStepResolverStrategyPluginInterface[]
     */
    protected function getCheckoutStepResolverStrategyPlugins(): array
    {
        return [
            new QuoteRequestCheckoutWorkflowStepResolverStrategyPlugin(),
            new QuoteWithCustomShipmentPriceCheckoutWorkflowStepResolverStrategyPlugin(),
            new QuoteRequestAgentCheckoutWorkflowStepResolverStrategyPlugin(),
        ];
    }
}
Verification

Verify that when you add/edit shipping information in RFQ as an agent or a buyer you have access only to the address step and the shipment step.

Verify that if you set source shipment price as an agent and then convert the RFQ to cart as a buyer you don’t have access to the address step and the shipment step.