Latest Magento 2.1.1 from release archive
Admin -> Catalog -> Products
If you just update (not new) bundle product and edit any Bundle Items Saves works
I added new category and image, saves not works. Actually saves doesn't work for me even without any changes.
Update: i have more then 20 items, and save works only if i go to page 2 and wait until it loaded, then saves works correct.
Notice: Undefined index: delete in .../vendor/magento/module-bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php on line 130
Replacing in File /vendor/magento/module-bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php:
if ((bool)$optionData['delete']) {
&
if ((bool)$linkData['delete']) {
With:
if (isset($optionData['delete']) && (bool)$optionData['delete']) {
&
if (isset($linkData['delete']) && (bool)$linkData['delete']) {
does fix the Problem for me.
Probably also the solution for #6046.
yeah, tx, just i want to get this working in next release :)
@riyuk Thanks for the quick fix, works for me too. But come on Magento, this seriously can't be happening. We've got quite some websites depending on this stuff...
@riyuk When I apply your fix, by the way, connections from catalog_product_bundle_option_value seem to disappear. Had this problem?
Hi guys,
Notice: Undefined index: delete in .../vendor/magento/module-bundle/Controller/Adminhtml/Product/Initialization/Helper/Plugin/Bundle.php on line 130
The root issue because the attribute sets of your bundle products was missing the Attribute group named
Bundle Items
So to solve this issue, for each the Attribute Set of your bundle products let's open it and add more the Attribute Group named Bundle Items and move the Attribute code named shipment_type to the Attribute Group you have just added. See more here: http://i.prntscr.com/1e45d623dafc4a8d97297ccf3b4eba6e.png
Let's do it to solve the issue!
Regards,
quynhvv
@magecodenet, thanks for reporting this issue
Unfortunately I could not reproduce this issue. May you please advise if this problem is still relevant for latest release Magento 2?
@IlnitskiyArtem
yes it still there.
Release 2.1.7
Steps to reproduce:
@magekey, Thanks for the additional information!
We've created internal ticket MAGETWO-70162 to address this issue.
@magecodenet, thank you for your report.
We've created internal ticket(s) MAGETWO-70162 to track progress on the issue.
Hi @magecodenet. Thank you for your report.
The issue has been fixed in magento/magento2#12734 by @dzianis-yurevich in 2.2-develop branch
Related commit(s):
The fix will be available with the upcoming patch release.
Hi @magecodenet. Thank you for your report.
The issue has been fixed in magento-engcom/magento2ce#1359 by @magento-engcom-team in 2.3-develop branch
Related commit(s):
The fix will be available with the upcoming 2.3.0 release.