계급이 계층 적이라는 Magento 프로젝트의 요구 사항이 있습니다. 즉 하나의 계정이 여러 개의 다른 계정을 소유 할 수 있습니다. 한 계정이 다른 계정을 소유하고 있으면 해당 계정을 가장 할 수 있습니다 : 주문 생성, 계정 정보보기 및 이전 주문보기.가장의 Magento 사용자 하위 계정
어디서부터 시작해야할지 모르겠습니다. 생각이 있다면, 올바른 방향으로 나를 가리 키시겠습니까?
계급이 계층 적이라는 Magento 프로젝트의 요구 사항이 있습니다. 즉 하나의 계정이 여러 개의 다른 계정을 소유 할 수 있습니다. 한 계정이 다른 계정을 소유하고 있으면 해당 계정을 가장 할 수 있습니다 : 주문 생성, 계정 정보보기 및 이전 주문보기.가장의 Magento 사용자 하위 계정
어디서부터 시작해야할지 모르겠습니다. 생각이 있다면, 올바른 방향으로 나를 가리 키시겠습니까?
하나의 솔루션은 다중 선택 속성을 설정하고 가장 할 수있는 사용자의 사용자 ID로 채우는 것입니다. 그런 다음 magento를 실행하는 별도의 PHP 파일을 만들고 사용자가 선택한 사람을 기준으로 사용자를 기록하거나 CMS에 통합 할 수 있습니다.
여기 내 sso 사용자가 내 Microsoft 데이터베이스 로그인에서 magento로 이동할 수있게 해주는 사용자 정의 '로그인'코드가 있습니다.
이 기능을 호출하고 로그인하려는 '사용자'에게 전달합니다. 꽤 잘 작동하는 것 같지만 필요에 맞게 수정해야합니다. 상자 밖으로 나올 것으로 기대하지 마십시오!
FYI : magento가 dispatchevents()에 대해 필요로하는 모든 정크를 전달하지 않으면 사용자가 제대로 로그인하지 않습니다. 나는이 모든 dern 일을 리버스 엔지니어링했다, 그래서 다른 곳 외에 여기를 볼 것으로 예상하지 않고 비트와 젠토 코어 :
$userId = 5;
$user = Mage::getModel('customer/customer')->load($userId)->setWebsiteId(1);
$this->LoginToMagento($user, null);
function LoginToMagento($user, $noAddress) {
// Must include this file in order to use the object
include ('/var/www/app/code/core/Mage/Customer/controllers/AccountController.php');
// Configure Magento to think its using the frontend
Mage::getSingleton("core/session", array("name" => "frontend"));
Mage::getConfig()->init();
Mage::getConfig()->loadEventObservers('frontend');
Mage::app()->addEventArea('frontend');
Mage::app()->loadArea(Mage_Core_Model_App_Area::AREA_FRONTEND);
// Grab the request and modify it with my emulated controller's information
$request = Mage::app()->getRequest();
$request->setRouteName('customer');
$request->setControllerModule('Mage_Customer');
$request->setRoutingInfo('');
$request->setModuleName('customer');
$request->setControllerName('account');
$request->setModuleKey('module');
$request->setControllerKey('account');
$request->setActionName('loginPost');
$request->setActionKey('action');
// Grab the response
$response = Mage::app()->getResponse();
// Feed the request and response into a new accountcontroller object
$accountControl = new Mage_Customer_AccountController($request, $response);
// Dispatch events related to the controller actions for predispatch
Mage::dispatchEvent('controller_action_predispatch', array('controller_action' => $accountControl));
Mage::dispatchEvent('controller_action_predispatch_customer', array('controller_action' => $accountControl));
Mage::dispatchEvent('controller_action_predispatch_customer_account_loginPost', array('controller_action' => $accountControl));
// Grab an instance of the customer session model
$session = Mage::getSingleton('customer/session');
try{
// Attempt to login the user
$session->setCustomerAsLoggedIn($user);
$session->renewSession();
} catch (Mage_Core_Exception $e) {
// Lets hope to never get here
$message = $e->getMessage();
error_log($message);
Mage::getSingleton('core/session')->addError($message);
}
// Perform the postdispatch events for 'after emulation of the controller'
Mage::dispatchEvent('controller_action_postdispatch_customer_account_loginPost', array('controller_action'=>$accountControl));
Mage::dispatchEvent('controller_action_postdispatch_customer', array('controller_action'=>$accountControl));
Mage::dispatchEvent('controller_action_postdispatch', array('controller_action'=>$accountControl));
$customer = Mage::getModel('customer/customer')
->getCollection()
->addAttributeToSelect('*')
->addAttributeToFilter('entity_id', array('eq' => $user->getId()))
->getFirstItem();
try
{
// Prepare a collection of required values that the customer *should* have been set from netforum
$collection = Mage::getModel('eav/entity_attribute')->getCollection();
$collection->addFieldToFilter('entity_type_id', Mage::getModel('eav/entity')->setType('customer')->getTypeId());
// The var representing if validation has failed
$failedReq = false;
// Loop through each user defined required attribute and if we find one
// on the customer that is not set, forward the user to their account config page
foreach ($collection as $attribute)
{
if ($attribute['is_required'] && $attribute['is_user_defined'])
{
$attrCode = $attribute['attribute_code'];
if (!isset($customer[$attrCode]))
{
$failedReq = true;
}
}
}
// Try to determine where we logged in from (URL)
Mage::getSingleton("core/session", array("name" => "frontend"));
$session = Mage::getSingleton("customer/session");
$outputMessage = $session->getData('before_auth_url');
// Proceeed differently based on the existence of addresses
if ($noAddress == true)
{
if ($failedReq)
{
// Customer failed login. To be expected if they are signing in with SSO and never have before
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/account/edit/';
Mage::getSingleton('core/session')->addError('<b>Please fill in the required fields marked with * and click "Save"</b>');
header("Location: $redirect_to");
}
else
{
// Customer checks out ok, but has no addresses. Send them to the address setup screen
Mage::getSingleton('core/session')->addError('<b>Please fill in your address and phone number, then click "Save"</b>');
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/address/edit/';
header("Location: $redirect_to");
}
}
else
{
// Customer has addresses being passed from SSO
$defaultBillingId = $customer->getDefaultBillingAddress()->getId();
$hasPhoneNumber = false;
foreach ($customer->getAddresses() as $address)
{
$addrs = Mage::getModel('customer/address')->load($address->getId());
$magePhone = $addrs->getTelephone();
if ($magePhone)
{
$hasPhoneNumber = true;
}
}
if ($failedReq)
{
// Customer failed login. To be expected if they are signing in with SSO and never have before
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/account/edit/';
Mage::getSingleton('core/session')->addError('<b>Please fill in the required fields marked with * and click "Save"</b>');
header("Location: $redirect_to");
}
else
{
// Customer is has default values filled out
if (!$hasPhoneNumber)
{
// Phone number is missing for an address so redirect there and force em to enter it.
Mage::getSingleton('core/session')->addError('<b>Please fill in the required fields marked with * and click "Save Address"</b>');
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/address/edit/id/' . $defaultBillingId;
header("Location: $redirect_to");
}
else
{
// Everything is ok, so just try to send them back to where they came from, or the account screen
if ($outputMessage)
{
$redirect_to = $outputMessage;
}
else
{
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/account/';
}
header("Location: $redirect_to");
}
}
}
}
catch (Exception $e)
{
if ($outputMessage)
{
$redirect_to = $outputMessage;
}
else
{
$redirect_to = 'https://' . $_SERVER['HTTP_HOST'] . '/customer/account/';
}
header("Location: $redirect_to");
}
}
조각 늦어서 오전 알고 있지만
http://amasty.com/sales-reps-and-dealers.html
이 확장 프로그램은 귀하가 원하는 것을 성취하는데 도움이 될 수 있습니다. 계층 적 계정을 생성하고 영업 담당자/보조 관리자를 주문에 할당하고 액세스 수준을 제공 할 수 있습니다.
희망이 도움이됩니다.