更新模块时添加新的自定义客户属性

时间:2019-09-03 11:39:37

标签: php magento magento2 magento2.2

升级一个模块时,我在创建新的客户属性时遇到了麻烦。

我已使用当前代码在/app/code/vendor/modulename/Setup/UpgradeData.php下创建了UpgradeData.php文件:

namespace Ucs\CustomerAttribute\Setup;
use Magento\Customer\Model\Customer;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\UpgradeDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Customer\Setup\CustomerSetupFactory;
class UpgradeData implements UpgradeDataInterface{

private $customerSetupFactory;

public function __construct(
    CustomerSetupFactory $customerSetupFactory
) {
    $this->customerSetupFactory = $customerSetupFactory;
}

/**
 * {@inheritdoc}
 */
public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context){

    $setup->startSetup();

    $customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);

    if (version_compare($context->getVersion(), '1.0.6') < 0) {

        $customerSetup->addAttribute(\Magento\Customer\Model\Customer::ENTITY, 'nome_azienda', [
            'type' => 'varchar',
            'label' => 'Nome azienda',
            'input' => 'text',
            'source' => '',
            'required' => false,
            'visible' => true,
            'position' => 333,
            'system' => false,
            'backend' => ''
        ]);

        $attribute = $customerSetup->getEavConfig()->getAttribute(\Magento\Customer\Model\Customer::ENTITY, 'nome_azienda')
            ->addData(['used_in_forms' => [
                'adminhtml_customer',
                'adminhtml_checkout',
                'customer_account_create',
                'customer_account_edit'
            ]]);
        $attribute->save();


        $customerSetup->addAttribute(\Magento\Customer\Model\Customer::ENTITY, 'codice_univoco', [
            'type' => 'varchar',
            'label' => 'Codice Univoco',
            'input' => 'text',
            'source' => '',
            'required' => false,
            'visible' => true,
            'position' => 333,
            'system' => false,
            'backend' => ''
        ]);

        $attribute = $customerSetup->getEavConfig()->getAttribute(\Magento\Customer\Model\Customer::ENTITY, 'codice_univoco')
            ->addData(['used_in_forms' => [
                'adminhtml_customer',
                'adminhtml_checkout',
                'customer_account_create',
                'customer_account_edit'
            ]]);
        $attribute->save();


    }
}
}
简而言之,

它需要创建2个新文本(varchar)属性。我的module.xmlsetup_version="1.0.5" schema_version="1.0.5",因此它应该输入version_compare条件并创建属性,但是在运行php bin/magento setup:upgrade之后它不起作用。如果我签入setup_module表,则setup_versionschema_versionmodule.xml中的版本正确更改。出于某种原因,看来UpgradeData.php根本没有执行。

1 个答案:

答案 0 :(得分:0)

在Ucs \ CustomerAttribute \ etc \ module.xml中 将版本更改为1.0.6

然后替换

if (version_compare($context->getVersion(), '1.0.6') < 0) {

if (version_compare($context->getVersion(), '1.0.6', '<')) {

编辑:只是为了确保..

  

我已经在下面创建了UpgradeData.php文件   /app/code/vendor/modulename/Setup/UpgradeData.php

您的意思是app / code / Ucs / CustomerAttribute / Setup / UpgradeData.php吗?

Edit2:

我假设您的代理机构称为Ucs。这就是为什么我问这个问题的原因,因为这就是建议您的模块名称空间。 这不是推荐的做法,但是出于安装程序验证的目的,请将名称空间更改为: 命名空间vendor \ modulename \ Setup;

我推荐的是:

  1. 创建一个新模块或找到应用程序/代码/ [YOURCOMPANYNAME] /客户-尝试对Magento本机模块进行响应。这样,您可以更轻松地管理代码,设计,并且Magento不需要为每个功能加载单独的模块。

  2. 在UpgradeData.php中,尝试为每个版本调用单独的函数。 像:


     if (version_compare($context->getVersion(), '1.0.1', '<')) {
                $this->addCustomerMyAttribute();
            }
     $setup->endSetup();

然后在下面

 private function addCustomerMyAttribute($setup){
// Your code goes here

}

如果它是app / code / [YOURCOMPANYNAME]中Customer模块的第一个版本,请记住创建由UpgradeData.php插入的InstallData.php(在这种情况下,无需检查版本)。

  1. bin/magento setup:upgrade后检查eav_attribute表中的新属性。

  2. 如果有,请记住bin / magento indexer:reindex,以便转到平面表。如果不存在。在upgrade函数的开头放置`''die(var_dump('I'm running');。