Skip to content

Commit 38cb7e9

Browse files
committed
ACP2E-2314: Product price is zero in "Products in Carts" report grid, if "Catalog Price Scope" is "Website"
- Fixed the issue.
1 parent 14c1547 commit 38cb7e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Reports/Model/ResourceModel/Quote/Item/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function prepareActiveCartItems()
121121

122122
$quoteItemsSelect->reset()
123123
->from(['main_table' => $this->getTable('quote_item')], '')
124-
->columns(['main_table.product_id', 'main_table.name'])
124+
->columns(['main_table.product_id', 'main_table.name', 'main_table.price'])
125125
->columns(['carts' => new \Zend_Db_Expr('COUNT(main_table.item_id)')])
126126
->columns('quote.base_to_global_rate')
127127
->joinInner(

0 commit comments

Comments
 (0)