मैंने एक कस्टम कस्टम विशेषता को customer_address
टाइप के रूप में जोड़ा और यह सही तरीके से व्यवस्थापक में और ऑनपेकचेकआउट के साथ-साथ शिपिंग और बिलिंग पते में चलता है।
मैंने बनाया:
my_namespace/my_module/etc/module.xml
औरregistration.php
composer.json
मॉड्यूल बेस डायरेक्टरी में फाइलें।
my_namespace / my_module / सेटअप / InstallData.php
namespace Namespace\Module\Setup;
use Magento\Framework\Module\Setup\Migration;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;
/**
* @codeCoverageIgnore
*/
class InstallData implements InstallDataInterface
{
/**
* Customer setup factory
*
* @var CustomerSetupFactory
*/
private $customerSetupFactory;
/**
* Init
*
* @param CustomerSetupFactory $customerSetupFactory
*/
public function __construct(\Magento\Customer\Setup\CustomerSetupFactory $customerSetupFactory)
{
$this->customerSetupFactory = $customerSetupFactory;
}
/**
* {@inheritdoc}
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
/** @var CustomerSetup $customerSetup */
$customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);
$setup->startSetup();
// insert attribute
$customerSetup->addAttribute('customer_address', 'attr_code', [
'label' => 'My attribute',
'type' => 'varchar',
'input' => 'text',
'position' => 45,
'visible' => true,
'required' => false,
'system' => 0
]);
$MyAttribute = $customerSetup->getEavConfig()->getAttribute('customer_address', 'attr_code');
$MyAttribute->setData(
'used_in_forms',
['adminhtml_customer_address', 'customer_address_edit', 'customer_register_address']
);
$MyAttribute->save();
$setup->endSetup();
}
}
अब मुझे ग्राहक add
और edit
पता फ़ॉर्म में विशेषता फ़ील्ड जोड़ना होगा जो फ़ाइल से संबंधित हैं magento_customer / view / frontend / टेम्पलेट्स / पता / edit.phtml से संबंधित हैं
मैंने फ़ील्ड जोड़ा लेकिन मैं उस विशेषता का मान प्राप्त करने और सहेजने में सक्षम नहीं हूं।