升级一个模块时,我在创建新的客户属性时遇到了麻烦。
我已使用当前代码在/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.xml
有
setup_version="1.0.5" schema_version="1.0.5"
,因此它应该输入version_compare
条件并创建属性,但是在运行php bin/magento setup:upgrade
之后它不起作用。如果我签入setup_module
表,则setup_version
和schema_version
随module.xml
中的版本正确更改。出于某种原因,看来UpgradeData.php
根本没有执行。
答案 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;
我推荐的是:
创建一个新模块或找到应用程序/代码/ [YOURCOMPANYNAME] /客户-尝试对Magento本机模块进行响应。这样,您可以更轻松地管理代码,设计,并且Magento不需要为每个功能加载单独的模块。
在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(在这种情况下,无需检查版本)。
在bin/magento setup:upgrade
后检查eav_attribute
表中的新属性。
如果有,请记住bin / magento indexer:reindex,以便转到平面表。如果不存在。在upgrade
函数的开头放置`''die(var_dump('I'm running');。