Magento2'de şu anki müşteri grubu kimliği nasıl alınır?


16

Ben mevcut müşteri almak istiyorum grup kimliği içinde phtml dosyası. Hala giriş yapmadığımda, genel tip müşteri grubu iade edilir . Düzgün çıktı nasıl alınır?

Yanıtlar:


19

Magento\Customer\Model\Session $customerSession bu sınıfı kullanarak mevcut müşteri grubu kimliğini alırsınız

protected $_customerSession;

public function __construct(
        \Magento\Customer\Model\Session $customerSession,
    ) {
        $this->_customerSession = $customerSession;
    }

public function getGroupId(){
 if($this->_customerSession->isLoggedIn()):
        echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
    endif;
}

NOT: Müşteri kimliğini yalnızca müşteri giriş yaptığında alırsınız


7

kodu takip ederek grup kimliğini alabilirsiniz

protected $_customerSession;

public function __construct(
        ....    
        \Magento\Customer\Model\Session $customerSession,
        ....
    ) {


        $this->_customerSession = $customerSession;

    }

public function getGroupId(){
 if($this->_customerSession->isLoggedIn()):
        echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
    endif;

}

Ama giriş yapmadığım zaman iade 1 (Genel Müşteri Grubu Kimliği).
Rohan Hapani

1
@RohanHapani kodu nazikçe kontrol ve geri bildirim ekledi ..
Qaisar Satti

1
@ RohanHapani ben bu kodu test kullanıcı giriş yapmadım için if($this->_customerSession->isLoggedIn()):groupid göstermiyor kontrol yaptınız mı ?
Qaisar Satti

Evet ... Şimdi çalışıyor ... Teşekkürler Efendim :)
Rohan Hapani

6

Varsayılan olarak, Magento müşteri oturumu silecektir: \Magento\PageCache\Model\Layout\DepersonalizePlugin::afterGenerateXml.

/magento//a/92133/33057

Bir göz at:

satıcı / Magento / modül-müşteri / Modeli / Context.php

/**
 * Customer group cache context
 */
const CONTEXT_GROUP = 'customer_group';
/**
 * Customer authorization cache context
 */
const CONTEXT_AUTH = 'customer_logged_in';

Giriş yapmış müşteri ve müşteri grubunu kontrol edebiliriz:

 /**
 * @var \Magento\Framework\App\Http\Context $httpContext
 */
$isLogged = $this->httpContext->getValue(Context::CONTEXT_AUTH);
$customerGroupId = $this->httpContext->getValue(Context::CONTEXT_GROUP);

Bu kod satırlarını bloğunuza koyun.

Burada iyi bir açıklama daha var:

https://ranasohel.me/2017/05/05/how-to-get-customer-id-from-block-when-full-page-cache-enable-in-magento-2/


2

Hem oturum açmış hem de oturum açmamış müşteri için mevcut müşteri grubu kimliğini ve adını almak için bunu deneyin

protected $_customerSession;

protected $_customerGroupCollection;

public function __construct(
    ....    
    \Magento\Customer\Model\Session $customerSession,
    \Magento\Customer\Model\Group $customerGroupCollection,
    ....
) {


    $this->_customerSession = $customerSession;
    $this->_customerGroupCollection = $customerGroupCollection;

}

public function getCustomerGroup()
{
        echo $currentGroupId = $this->_customerSession->getCustomer()->getGroupId(); //Get current customer group ID
        $collection = $this->_customerGroupCollection->load($currentGroupId); 
        echo $collection->getCustomerGroupCode();//Get current customer group name
}

1
protected $_customerSession;

public function __construct(
        \Magento\Customer\Model\Session $customerSession,
    ) {
        $this->_customerSession = $customerSession;
    }

public function getGroupId(){
 if($this->_customerSession->isLoggedIn()):
        echo $customerGroup=$this->_customerSession->getCustomer()->getGroupId();
    endif;
}

Bu sizin için yararlı olabilir.


0

Önbelleğe alma kullanırsanız \ Magento \ Customer \ Model \ Session kullanılır.

Kullanmanız daha iyi olur:

private $sessionProxy;

public function __construct(
    use Magento\Customer\Model\Session\Proxy $sessionProxy,
) {
    $this->sessionProxy= $sessionProxy;
}

// may return groupId or \Magento\Customer\Model\GroupManagement::NOT_LOGGED_IN_ID  
public function getGroupId(){
   $this->sessionProxy->getCustomer()->getGroupId();
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.