Câu hỏi được gắn thẻ «attributes»

Thuộc tính thực thể Magento



1
Magento 2 Hiển thị thuộc tính khách hàng ở dạng ui_component
Tôi đã tạo ui_component biểu mẫu . Nơi tôi cần hiển thị chi tiết khách hàng, Giống như Chỉnh sửa khách hàng . Nhưng, tôi có thể hiển thị dữ liệu của họ từ customer_entitybảng. DataProvider.php public function getData() { if (isset($this->loadedData)) { return $this->loadedData; } // {Vendor}\{Module}\Model\GridFactory // Returns …



2
Cách lưu thuộc tính tùy chỉnh hình ảnh trong magento 2
Tôi cần hiển thị một vài hình ảnh của sản phẩm ở lối vào dựa trên điều kiện: nên kiểm tra sử dụng cho gương ảo. <?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Dcw\Vm\Observer; use Magento\Framework\Event\ObserverInterface; class ChangeTemplateObserver extends …





2
Magento 2: tệp catalog_attribut.xml là gì?
Tôi nhận thấy rằng Magento 2 chứa một số catalog_attributes.xmltệp trong các thư mục sau: app/code/Magento/Bundle/etc app/code/Magento/Catalog/etc app/code/Magento/CatalogSearch/etc app/code/Magento/CatalogUrlRewrite/etc app/code/Magento/Downloadable/etc app/code/Magento/GiftMessage/etc app/code/Magento/Msrp/etc app/code/Magento/Sales/etc app/code/Magento/Tax/etc app/code/Magento/Wishlist/etc Những tệp đó trông như thế này (ví dụ cho Salestệp): <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Catalog:etc/catalog_attributes.xsd"> <group name="quote_item"> <attribute name="sku"/> <attribute name="type_id"/> <attribute name="name"/> <attribute name="status"/> <attribute …

3
Magento 2 Làm cách nào để gỡ cài đặt các thuộc tính được thêm bởi mô-đun tùy chỉnh?
Cho đến nay tôi biết rằng khi gỡ cài đặt một mô-đun tùy chỉnh, có thể loại bỏ các bảng hoặc cột tùy chỉnh được thêm bởi mô-đun tùy chỉnh bằng cách sử dụng uninstall.phpphần mở rộng \Magento\Framework\Setup\UninstallInterface. Nhưng làm thế nào để loại bỏ các thuộc tính tùy chỉnh …


2
Thêm thuộc tính tùy chỉnh vào thuộc tính tùy chỉnh được lập trình
Xin chào, ai đó có thể giúp tôi với điều này? Tôi đã tạo một tập thuộc tính tùy chỉnh và thuộc tính tùy chỉnh như $installer = $this; /* @var $installer Mage_Eav_Model_Entity_Setup */ $installer->startSetup(); //Create Attribute set with Based on Default attribute set //$installer->removeAttributeSet(Mage_Catalog_Model_Product::ENTITY, 'New Attr Set'); /* $skeletonID=$installer->getAttributeSetId('catalog_product','Default'); …

5
Giá trị mặc định của thuộc tính sản phẩm tùy chỉnh thả xuống 'có / không'
Tôi cài đặt thuộc tính với đoạn script sau: $installer = $this; $installer->startSetup(); $installer->removeAttribute('catalog_product', 'customizableonly'); $installer->addAttribute('catalog_product', 'customizableonly', array( 'group' => 'General', 'input' => 'select', 'type' => 'int', 'label' => 'Customizable Only', 'source' => 'eav/entity_attribute_source_boolean', 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL, 'visible' => 1, 'required' => 0, 'visible_on_front' => 0, 'is_html_allowed_on_front' => 0, 'is_configurable' …

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.