magento / magento2

Prior to making any Submission(s), you must sign an Adobe Contributor License Agreement, available here at: https://opensource.adobe.com/cla.html. All Submissions you make to Adobe Inc. and its affiliates, assigns and subsidiaries (collectively “Adobe”) are subject to the terms of the Adobe Contributor License Agreement.
http://www.magento.com
Open Software License 3.0
11.48k stars 9.29k forks source link

Rest API products-render-info return wrong final price for logged in customer #35757

Open manhtranisobar opened 2 years ago

manhtranisobar commented 2 years ago

Preconditions and environment

Steps to reproduce

Expected result

Final price is 90$

Actual result

Final price is 100$

Additional information

There is no issue for other products with Tier price set to All Groups (Customer). Tier price is displayed as the final price in Api response when admin access token is used

Release note

No response

Triage and priority

m2-assistant[bot] commented 2 years ago

Hi @manhtranisobar. Thank you for your report. To speed up processing of this issue, make sure that you provided the following information:

Make sure that the issue is reproducible on the vanilla Magento instance following Steps to reproduce. To deploy vanilla Magento instance on our environment, Add a comment to the issue:

@magento give me 2.4-develop instance - upcoming 2.4.x release

For more details, review the Magento Contributor Assistant documentation.

Add a comment to assign the issue: @magento I am working on this

To learn more about issue processing workflow, refer to the Code Contributions.


:clock10: You can find the schedule on the Magento Community Calendar page.

:telephone_receiver: The triage of issues happens in the queue order. If you want to speed up the delivery of your contribution, join the Community Contributions Triage session to discuss the appropriate ticket.

:pencil2: Feel free to post questions/proposals/feedback related to the Community Contributions Triage process to the corresponding Slack Channel

m2-assistant[bot] commented 2 years ago

Hi @engcom-November. Thank you for working on this issue. In order to make sure that issue has enough information and ready for development, please read and check the following instruction: :point_down:

engcom-November commented 2 years ago

Verified the issue on Magento 2.4-develop branch with B2B features enabled and the issue is reproducible. Hence updating description and confirming the issue. image

github-jira-sync-bot commented 2 years ago

:white_check_mark: Jira issue https://jira.corp.magento.com/browse/AC-5979 is successfully created for this GitHub issue.

m2-assistant[bot] commented 2 years ago

:white_check_mark: Confirmed by @engcom-November. Thank you for verifying the issue.
Issue Available: @engcom-November, You will be automatically unassigned. Contributors/Maintainers can claim this issue to continue. To reclaim and continue work, reassign the ticket to yourself.

manhtranisobar commented 2 years ago

Hi @engcom-November Can I know when we have patch to fix this issue?

Kannakiraj123 commented 1 year ago

@magento I am working on this

Kannakiraj123 commented 1 year ago

Find below code fix the issue

1.In product collection pass customerGroupID

$productCollection->addPriceData($customerGroupId);

2.For Product rendering in foreach loop pass $item with customerGroupId

$item->setCustomerGroupId($customerGroupId);

foreach ($productCollection as $item) {
  $productRenderInfo = $this->productRenderFactory->create();
  $productRenderInfo->setStoreId($storeId);
  $productRenderInfo->setCurrencyCode($currencyCode);
  $item->setCustomerGroupId($customerGroupId);
  $this->productRenderCollectorComposite->collect($item, $productRenderInfo);
  $items[$item->getId()] = $productRenderInfo;
}