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

Install the Service Points feature, Install the Product offer shipment feature #1935

Merged
merged 4 commits into from
Jun 22, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -311,17 +311,17 @@ In Redis, make sure data is represented in the following format:

**vendor/spryker/spryker/Bundles/ProductOfferShipmentTypeDataImport/data/import/product_offer_shipment_type.csv**
```csv
shipment_type_key,product_offer_reference
delivery,offer1
delivery,offer2
delivery,offer3
pickup,offer4
product_offer_reference,shipment_type_key
offer1,delivery
offer2,delivery
offer3,delivery
offer4,pickup
```

| COLUMN | REQUIRED? | DATA TYPE | DATA EXAMPLE | DATA EXPLANATION |
|-------------------------|-----------|-----------|--------------|-----------------------------|
| shipment_type_key | mandatory | string | delivery | Key of the shipment type. |
| product_offer_reference | mandatory | string | offer1 | Reference of product offer. |
| shipment_type_key | mandatory | string | delivery | Key of the shipment type. |

2. Register the following data import plugin:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ s2,sp2,pickup,1
| service_type_key | mandatory | string | pickup | Unique key of the service type. |
| is_active | mandatory | bool | 0 | Defines if the service is active. |

**data/import/common/common/marketplace/product_offer_service.csv**
**data/import/common/common/product_offer_service.csv**

```csv
product_offer_reference,service_key
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: Install the Product offer shipment feature
description: Learn how to integrate the Product offer shipment feature into your project
last_updated: May 25, 2023
last_updated: June 20, 2023
template: feature-integration-guide-template
---

{% include pbc/all/install-features/{{page.version}}/install-the-product-offer-shipment-feature.md %} <!-- To edit, see /_includes/pbc/all/install-features/202304.0/install-the-product-offer-shipment-feature.md -->
{% include pbc/all/install-features/{{page.version}}/install-the-product-offer-shipment-feature.md %} <!-- To edit, see /_includes/pbc/all/install-features/202304.0/install-the-product-offer-shipment-feature.md -->
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Install the Service Points feature
description: Learn how to integrate the Service Points feature into your project
last_updated: June 6, 2023
last_updated: June 20, 2023
template: feature-integration-guide-template
---

Expand Down
Loading