-
Notifications
You must be signed in to change notification settings - Fork 9.4k
magento/magento2 #9196 - Products ordered report doesn't show simple (child) products of configurable products #9908
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
Conversation
…urable in product ordered report
…due to character limit
I check your PR and have next comment: Steps which I execute:
Could you please improve code for bundle(fixed) too ? Thanks for your contribution. Note: see attach screenshots: |
@k7triton - Sure I will work on that. |
keeping the forked develop branch updated with Magento 2 develop branch
…mn block to render the correct SKU
…mn block to render the correct SKU
Hi @k7triton and @okorshenko I have used a new Grid\Column block file extending the Widget\Grid\Column to control rendering the correct SKU based on the data. I have also made few changes to the SQL to get the necessary SKU data for bundle products. Below is the screenshot of a report for few different types of items ordered. Bundle Prod 1 is a fixed type bundle product. Here I am seeing an issue with the quantity. The item quantity for the Bundle Prod 1 (Fixed Type) and Bundle Prod 2 (Dynamic type) are "1" but the associated simple product's "Default Quantity" in backend was "100". So the actual quantity ordered should be "100" (coming from the associated simple product) not "1" (coming from the parent bundle product). Should this quantity issue also be fixed just like the SKU or is there any other business scenario to be taken care? |
hi @vkranjith |
@vkranjith Is the solution to show SKU of bundle options in brackets? Like Since Magento have 2 types of bundle product and one of it is supposed to ignore its option SKU (fixed SKU) it's better to ignore BundleFixedOptionSKU and show only BundleFixedSKU and its quantity: BundleFixedName ..... BundleFixedSKU.......1 BundleFixed with its options SKU doesn't fit into the flat data structure. |
@okorshenko and @tkacheva For BundleFixed product the option SKUs are within the brackets. I am getting this info through a small customization to the existing MySQL query and a column block (specifically for fixed bundle) to render the value. Let me know going forward what I should be doing. |
HI @vkranjith
Please, let me know if you have any questions |
…'t show simple (child) products of configurable products #9908
[EngCom] Public Pull Requests - MAGETWO-70817: remove redundant else and use strict check #10271 - MAGETWO-70787: update phpserver to support versioned static urls #10250 - MAGETWO-70764: Fix overwrite default value image/file with NULL #10253 - MAGETWO-70761: Show values that are duplicate in attribute error msg #10213 - MAGETWO-70758: Fix for #4530 $product->getRatingSummary() always returns null […] #10248 - MAGETWO-70706: simplify product lists #2 #9019 - MAGETWO-70669: Fix fatal errors with deleteOptionsAndSelections #7711 - MAGETWO-70464: Fix shipping address can use for billing #10130 - MAGETWO-69913: magento/magento2 #9196 - Products ordered report doesn't show simple (child) products of configurable products #9908
… report doesn't show simple (child) products of configurable products #9908 - for 2.2
… report doesn't show simple (child) products of configurable products #9908 - for 2.2
Products ordered report doesn't show simple (child) products of configurable products
Description
Separated simple products of a configurable in product ordered report so that it shows the simple (child) product of a configurable product.
This was achieved by changing the following files.
Fixed Issues (if relevant)
Manual testing scenarios
Contribution checklist