-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Multishipping Checkout Store id is saved NULL in sales_order_item Table: FIXED #19321
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
Multishipping Checkout Store id is saved NULL in sales_order_item Table: FIXED #19321
Conversation
Hi @maheshWebkul721. Thank you for your contribution
For more details, please, review the Magento Contributor Assistant documentation |
Hi @sivaschenko, thank you for the review. |
@@ -352,6 +352,8 @@ | |||
comment="Super Product Id"/> | |||
<column xsi:type="int" name="parent_product_id" padding="10" unsigned="true" nullable="true" identity="false" | |||
comment="Parent Product Id"/> | |||
<column xsi:type="smallint" name="store_id" padding="5" unsigned="true" nullable="true" identity="false" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, we can't add a foreign key to store table due to Split database performance solution. This solution provides an ability to move quote related tables to a separate database and with current changes, we will have the fatal error due to missing table.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sidolov , foreign key removed
@sidolov any update on it? |
Thanks for the update @maheshWebkul721 ! We are continuing to process this pull request further. |
…g-storeid-fix # Conflicts: # app/code/Magento/Bundle/Model/Product/Type.php
Hi @maheshWebkul721, thank you for your contribution! |
…rder_item Table: FIXED #19321
Hi @maheshWebkul721. Thank you for your contribution. |
During Multishipping Checkout Store Id is saving NULL in sales_order_item Table. Fixed in this PR.
Description (*)
I was fixing the Quote item id issue in this PR #19192 , found there is also Store id issue with Multishipping checkout. There was no store_id column in quote_address_item that's why
store_id values saved NULL. I have added store_id column in quote_address_item table in this PR.
Fixed Issues (if relevant)
Manual testing scenarios (*)
Contribution checklist (*)