사용자 지정 코드를 사용하여 Magento 2에서 제품의 계층 가격을 얻는 방법은 무엇입니까?
이것은 내 코드입니다
public function getProductCollection()
{
$collection = $this->_productCollectionFactory->create();
$collection->addAttributeToSelect('*');
$collection->setOrder('created_at', 'DESC');
// $collection->setPageSize(3); // fetching only 3 products
return $collection;
}
.phtml의 호출 함수
$productCollection = $block->getProductCollection();
$productCollection->setPageSize(2);
foreach ($productCollection as $product) {
echo $product->getName();
print_r($product->getTierPrice());
에코 getName, getPrice, getSpecial 가격 작동
그러나 getTierPrice 가 작동하지 않습니다.
전의. VIP 회원 카드 (customer_group)가 있습니다. 그룹 가격을 공개하지 않고 등급 가격 VIP 회원 카드를 보여주고 싶습니다