วิธีเพิ่มลูกค้าโดยใช้โปรแกรมใน Magento 2


13

ฉันต้องการสร้างลูกค้าตามโปรแกรมใน Magento 2 ฉันไม่พบเอกสารมากมายรอบตัว ... โดยทั่วไปสิ่งที่ฉันต้องทำคือแปลรหัสต่อไปนี้เป็น "Magento 2":

$websiteId = Mage::app()->getWebsite()->getId();
$store = Mage::app()->getStore();

$customer = Mage::getModel("customer/customer");
$customer   ->setWebsiteId($websiteId)
            ->setStore($store)
            ->setFirstname('John')
            ->setLastname('Doe')
            ->setEmail('jd1@ex.com')
            ->setPassword('somepassword');

try{
    $customer->save();
}

คุณต้องการทำสิ่งนี้ด้วยสคริปต์แบบสแตนด์อโลนหรือคุณมีรูปแบบหรืออะไรซักอย่าง?
Marius

@Marius ฉันได้ทำงานในโมดูลนี้และฉันได้สร้างตัวควบคุม มันเป็นคอนโทรลเลอร์นี้ฉันต้องเตรียมข้อมูลบางอย่างเพื่อบันทึกและแนวคิดก็คือโทรหาแบบจำลองลูกค้าและบันทึกข้อมูลนั้น รหัสด้านบนสามารถวางไว้ในคอนโทรลเลอร์ที่ฉันต้องการจะทำเช่นเดียวกัน แต่สำหรับ Magento 2 ฉันยังคงสับสนเล็กน้อยกับโครงสร้างใหม่ของ Magento 2 และติดอยู่ที่นี่ตอนนี้ .. ฉันรู้ว่ามันมีส่วนเกี่ยวข้องกับการฉีดระดับ และกรณีวัตถุ แต่ผมไม่แน่ใจว่าจะทำ ...
เอดูอาร์

คำตอบ:


21

ตกลงหลังจากที่ฉันพบวิธีแก้ปัญหาในกรณีที่คนอื่นต้องการ .. วีโอไอพีใช้วิธีอื่นในการยกตัวอย่างวัตถุวิธีดั้งเดิมในการยกตัวอย่างวัตถุใน Magento 1.x ใช้ "Mage :: getModel (.. )" สิ่งนี้ มีการเปลี่ยนแปลงใน Magento 2 ตอนนี้ Magento ใช้ตัวจัดการวัตถุเพื่อยกตัวอย่าง objets ฉันจะไม่ป้อนรายละเอียดเกี่ยวกับวิธีการทำงาน .. ดังนั้นรหัสที่เทียบเท่าสำหรับการสร้างลูกค้าใน Magento 2 จะมีลักษณะดังนี้:

<?php

namespace ModuleNamespace\Module_Name\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    /**
     * @var \Magento\Store\Model\StoreManagerInterface
     */
    protected $storeManager;

    /**
     * @var \Magento\Customer\Model\CustomerFactory
     */
    protected $customerFactory;

    /**
     * @param \Magento\Framework\App\Action\Context      $context
     * @param \Magento\Store\Model\StoreManagerInterface $storeManager
     * @param \Magento\Customer\Model\CustomerFactory    $customerFactory
     */
    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Store\Model\StoreManagerInterface $storeManager,
        \Magento\Customer\Model\CustomerFactory $customerFactory
    ) {
        $this->storeManager     = $storeManager;
        $this->customerFactory  = $customerFactory;

        parent::__construct($context);
    }

    public function execute()
    {
        // Get Website ID
        $websiteId  = $this->storeManager->getWebsite()->getWebsiteId();

        // Instantiate object (this is the most important part)
        $customer   = $this->customerFactory->create();
        $customer->setWebsiteId($websiteId);

        // Preparing data for new customer
        $customer->setEmail("email@domain.com"); 
        $customer->setFirstname("First Name");
        $customer->setLastname("Last name");
        $customer->setPassword("password");

        // Save data
        $customer->save();
        $customer->sendNewAccountEmail();
    }
}

หวังว่าข้อมูลโค้ดนี้จะช่วยคนอื่น ..


6
คุณสนิทกันมาก คุณควรหลีกเลี่ยงการใช้ objectManager โดยตรงเมื่อเป็นไปได้ - เป็นรูปแบบที่ไม่ดี วิธีที่เหมาะสมในการทำเช่นนั้นคือใช้การฉีดพึ่งพาเพื่อรับคลาส 'factory' และใช้เพื่อสร้างอินสแตนซ์ หากคลาสโรงงานไม่มีอยู่สำหรับคลาสที่กำหนดคลาสนั้นจะถูกสร้างขึ้นโดยอัตโนมัติ ฉันได้แก้ไขโค้ดของคุณเพื่อใช้สิ่งนี้ (เพิ่มโรงงานในคอนสตรัคเตอร์และคลาสและการโทรสร้าง ()) และปฏิบัติตามมาตรฐานรหัส PSR-2
Ryan Hoerr

ขอบคุณสำหรับการแก้ไข @RyanH ฉันคิดถึงการใช้คลาสของโรงงาน แต่ไม่แน่ใจว่าจะทำอย่างไรฉันจึงใช้ objectManager ... ฉันจะอ่านเพิ่มเติมเกี่ยวกับมาตรฐานรหัส PSR-2 สำหรับโครงการในอนาคต ฉันกำลังใช้รหัสกับการแก้ไขของคุณตอนนี้และทุกอย่างทำงานได้อย่างสมบูรณ์ ขอบคุณ
Eduardo

@RyanH เสร็จสิ้น; )
Eduardo

ฉันสามารถดูได้ในฐานข้อมูล แต่ไม่ใช่สำหรับแผงผู้ดูแลระบบ สิ่งที่เกิดขึ้น?
Arni

1
@Arni; การคาดเดาครั้งแรกของฉันคือคุณต้องสร้างดัชนีใหม่อีกครั้ง :)
อเล็กซ์ทิมเมอร์

4

นี่คือวิธีง่ายๆในการสร้างลูกค้าใหม่ด้วยกลุ่มเริ่มต้นและร้านค้าปัจจุบัน

use Magento\Framework\App\RequestFactory;
use Magento\Customer\Model\CustomerExtractor;
use Magento\Customer\Api\AccountManagementInterface;

class CreateCustomer extends \Magento\Framework\App\Action\Action
{
    /**
     * @var RequestFactory
     */
    protected $requestFactory;

    /**
     * @var CustomerExtractor
     */
    protected $customerExtractor;

    /**
     * @var AccountManagementInterface
     */
    protected $customerAccountManagement;

    /**
     * @param \Magento\Framework\App\Action\Context $context
     * @param RequestFactory $requestFactory
     * @param CustomerExtractor $customerExtractor
     * @param AccountManagementInterface $customerAccountManagement
     */
    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        RequestFactory $requestFactory,
        CustomerExtractor $customerExtractor,
        AccountManagementInterface $customerAccountManagement
    ) {
        $this->requestFactory = $requestFactory;
        $this->customerExtractor = $customerExtractor;
        $this->customerAccountManagement = $customerAccountManagement;
        parent::__construct($context);
    }

    /**
     * Retrieve sources
     *
     * @return array
     */
    public function execute()
    {
        $customerData = [
            'firstname' => 'First Name',
            'lastname' => 'Last Name',
            'email' => 'customer@email.com',
        ];

        $password = 'MyPass123'; //set null to auto-generate

        $request = $this->requestFactory->create();
        $request->setParams($customerData);

        try {
            $customer = $this->customerExtractor->extract('customer_account_create', $request);
            $customer = $this->customerAccountManagement->createAccount($customer, $password);
        } catch (\Exception $e) {
            //exception logic
        }
    }
}

คำขอ $ ที่นี่คืออะไรเราสามารถเพิ่มแอตทริบิวต์ที่กำหนดเองได้ด้วยหรือไม่
jafar pinjar

วิธีการตั้งค่าคุณสมบัติที่กำหนดเอง?
jafar pinjar

0

รหัสนี้ทำงานในไฟล์ภายนอกหรือไฟล์คอนโซล CLI Magento

namespace Company\Module\Console;

use Braintree\Exception;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Magento\Framework\App\Bootstrap;


class ImportProducts extends Command
{

    public function magentoStart()
    {
        $startMagento = $this->bootstrap();
        $state = $startMagento['objectManager']->get('Magento\Framework\App\State');
        $state->setAreaCode('frontend');
        return $startMagento['objectManager'];
    }

    protected function bootstrap()
    {
        require '/var/www/html/app/bootstrap.php';
        $bootstrap = Bootstrap::create(BP, $_SERVER);
        $objectManager = $bootstrap->getObjectManager();
        return array('bootstrap' => $bootstrap, 'objectManager' => $objectManager);
    }

    protected function createCustomers($item)
    {
        $objectManager      = $this->magentoStart();
        $storeManager       = $objectManager->create('Magento\Store\Model\StoreManagerInterface');
        $customerFactory    = $objectManager->create('Magento\Customer\Model\CustomerFactory');

        $websiteId  = $storeManager->getWebsite()->getWebsiteId();
        $customer   = $customerFactory->create();
        $customer->setWebsiteId($websiteId);
        $customer->setEmail("eu@mailinator.com");
        $customer->setFirstname("First Name");
        $customer->setLastname("Last name");
        $customer->setPassword("password");
        $customer->save();
    }
}

0

ตัวอย่างข้างต้นทั้งหมดจะได้ผล แต่วิธีมาตรฐานควรใช้สัญญาการบริการมากกว่าคลาสที่เป็นรูปธรรมเสมอ

ดังนั้นวิธีการด้านล่างควรเป็นที่ต้องการสำหรับการสร้างลูกค้าโดยทางโปรแกรม

                /** @var \Magento\Customer\Api\Data\CustomerInterface $customer */
                $customer = $this->customerFactory->create();
                $customer->setStoreId($store->getStoreId());
                $customer->setWebsiteId($store->getWebsiteId());
                $customer->setEmail($email);
                $customer->setFirstname($firstName);
                $customer->setLastname($lastName);

                /** @var \Magento\Customer\Api\CustomerRepositoryInterface $customerRepository*/
                $customerRepository->save($customer);
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.