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 + Order Management feature #2065

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
b45475b
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 2, 2023
89ed806
Merge branch 'master' of github.com:spryker/spryker-docs into feature…
michbeck Aug 2, 2023
4d7672e
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 2, 2023
f9060fc
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 2, 2023
a256746
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 3, 2023
66d6743
Merge branch 'master' of github.com:spryker/spryker-docs into feature…
michbeck Aug 3, 2023
7af90c3
Merge branch 'master' of github.com:spryker/spryker-docs into feature…
michbeck Aug 3, 2023
cfd3097
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
8260acb
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
d12a1a1
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
339759d
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
70ee49d
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
0427fec
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
c1325f2
Apply suggestions from code review
AlexSlawinski Aug 4, 2023
7cbebc1
CC-30055: Saving Service Point name in OMS & emails
michbeck Aug 4, 2023
4ca0947
Merge remote-tracking branch 'origin/feature/cc-26584-saving-service-…
michbeck Aug 4, 2023
d5fb473
Merge branch 'master' of github.com:spryker/spryker-docs into feature…
michbeck Aug 4, 2023
4bd1204
Apply suggestions from code review
Aug 7, 2023
061b293
Create install-the-order-management-service-points-feature.md
Aug 7, 2023
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
Prev Previous commit
Next Next commit
CC-30055: Saving Service Point name in OMS & emails
  • Loading branch information
michbeck committed Aug 4, 2023
commit 339759db450f6ad4ffd5843aa8d107193bb8c87a
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Follow the steps below to install the Service Points feature core.

To start feature integration, integrate the required features:

| NAME | VERSION | INTEGRATION GUIDE |
|-----------------------------|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Spryker Core | {{page.version}} | [Install the Spryker Core feature](/docs/pbc/all/miscellaneous/{{page.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |
| NAME | VERSION | INTEGRATION GUIDE |
|-----------------------------|------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Spryker Core | {{page.version}} | [Install the Spryker Core feature](/docs/pbc/all/miscellaneous/{{page.version}}/install-and-upgrade/install-features/install-the-spryker-core-feature.html) |
dmiseev marked this conversation as resolved.
Show resolved Hide resolved

### 1) Install the required modules using Composer

Expand Down Expand Up @@ -42,11 +42,11 @@ Make sure that the following modules have been installed:

1. Adjust the schema definition so entity changes trigger events.

| AFFECTED ENTITY | TRIGGERED EVENTS |
|-------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
| spy_service_point | Entity.spy_service_point.create<br>Entity.spy_service_point.update<br>Entity.spy_service_point.delete |
| spy_service_point_address | Entity.spy_service_point_address.create<br>Entity.spy_service_point_address.update<br>Entity.spy_service_point_address.delete |
| spy_service_point_store | Entity.spy_service_point_store.create<br>Entity.spy_service_point_store.update<br>Entity.spy_service_point_store.delete | |
| AFFECTED ENTITY | TRIGGERED EVENTS |
dmiseev marked this conversation as resolved.
Show resolved Hide resolved
|---------------------------|-------------------------------------------------------------------------------------------------------------------------------|
| spy_service_point | Entity.spy_service_point.create<br>Entity.spy_service_point.update<br>Entity.spy_service_point.delete |
| spy_service_point_address | Entity.spy_service_point_address.create<br>Entity.spy_service_point_address.update<br>Entity.spy_service_point_address.delete |
| spy_service_point_store | Entity.spy_service_point_store.create<br>Entity.spy_service_point_store.update<br>Entity.spy_service_point_store.delete | |

**src/Pyz/Zed/ServicePoint/Persistence/Propel/Schema/spy_service_point.schema.xml**

Expand Down Expand Up @@ -108,25 +108,25 @@ Make sure that the following changes have been applied in the database:

Make sure that propel entities have been generated successfully by checking their existence. Also, make generated entity classes extending respective Spryker core classes.

| CLASS NAMESPACE | EXTENDS |
|-----------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------|
| \Orm\Zed\ServicePoint\Persistence\SpyServicePoint | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePoint |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddress | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddress |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddressQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddressQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyService | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyService |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddressQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddressQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointStore | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointStore |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointStoreQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointStoreQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceType | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceType |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceTypeQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceTypeQuery |
| \Orm\Zed\ServicePointSearch\Persistence\SpyServicePointSearch | \Spryker\Zed\ServicePointSearch\Persistence\Propel\AbstractSpyServicePointSearch |
| \Orm\Zed\ServicePointSearch\Persistence\SpyServicePointSearchQuery | \Spryker\Zed\ServicePointSearch\Persistence\Propel\AbstractSpyServicePointSearchQuery |
| \Orm\Zed\ServicePointStorage\Persistence\SpyServicePointStorage | \Spryker\Zed\ServicePointStorage\Persistence\Propel\AbstractSpyServicePointStorage |
| \Orm\Zed\ServicePointStorage\Persistence\SpyServicePointStorageQuery | \Spryker\Zed\ServicePointStorage\Persistence\Propel\AbstractSpyServicePointStorageQuery |
| \Orm\Zed\ServicePointStorage\Persistence\SpySalesOrderItemServicePoint | \Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePoint |
| \Orm\Zed\ServicePointStorage\Persistence\SpySalesOrderItemServicePointQuery | \Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePointQuery |
| CLASS NAMESPACE | EXTENDS |
|-----------------------------------------------------------------------------|----------------------------------------------------------------------------------------------|
| \Orm\Zed\ServicePoint\Persistence\SpyServicePoint | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePoint |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddress | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddress |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddressQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddressQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyService | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyService |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointAddressQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointAddressQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointStore | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointStore |
| \Orm\Zed\ServicePoint\Persistence\SpyServicePointStoreQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServicePointStoreQuery |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceType | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceType |
| \Orm\Zed\ServicePoint\Persistence\SpyServiceTypeQuery | \Spryker\Zed\ServicePoint\Persistence\Propel\AbstractSpyServiceTypeQuery |
| \Orm\Zed\ServicePointSearch\Persistence\SpyServicePointSearch | \Spryker\Zed\ServicePointSearch\Persistence\Propel\AbstractSpyServicePointSearch |
| \Orm\Zed\ServicePointSearch\Persistence\SpyServicePointSearchQuery | \Spryker\Zed\ServicePointSearch\Persistence\Propel\AbstractSpyServicePointSearchQuery |
| \Orm\Zed\ServicePointStorage\Persistence\SpyServicePointStorage | \Spryker\Zed\ServicePointStorage\Persistence\Propel\AbstractSpyServicePointStorage |
| \Orm\Zed\ServicePointStorage\Persistence\SpyServicePointStorageQuery | \Spryker\Zed\ServicePointStorage\Persistence\Propel\AbstractSpyServicePointStorageQuery |
| \Orm\Zed\ServicePointStorage\Persistence\SpySalesOrderItemServicePoint | \Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePoint |
| \Orm\Zed\ServicePointStorage\Persistence\SpySalesOrderItemServicePointQuery | \Spryker\Zed\SalesServicePoint\Persistence\Propel\AbstractSpySalesOrderItemServicePointQuery |

Make sure that the following changes have been applied in transfer objects:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ To start feature integration, integrate the required features:
| NAME | VERSION | INTEGRATION GUIDE |
|------------------|------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Service Points | {{page.version}} | [Install the Service Points feature](/docs/pbc/all/service-points/{{page.version}}/install-and-upgrade/install-the-service-points-feature.html) |
dmiseev marked this conversation as resolved.
Show resolved Hide resolved
| Order Management | {{page.version}} | [Order Management feature integration](/docs/pbc/all/order-management-system/{{page.version}}/base-shop/install-and-upgrade/install-features/install-the-order-management-feature.html) |

## 1) Set up behavior
AlexSlawinski marked this conversation as resolved.
Show resolved Hide resolved

Expand Down