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

1
Ghi đè _prepareCollection () của khách hàng Magento không hoạt động
Tôi đã ghi đè phương thức _prepareCollection () của Mage_Adminhtml_Block_Customer_Grid và thêm các dòng sau ->addAttributeToSelect('cus_city') ->addAttributeToSelect('cus_country') ->addAttributeToSelect('cus_state') đến: protected function _prepareCollection() { $collection = Mage::getResourceModel('customer/customer_collection') ->addNameToSelect() ->addAttributeToSelect('email') ->addAttributeToSelect('created_at') ->addAttributeToSelect('group_id') ->addAttributeToSelect('cus_city') // added ->addAttributeToSelect('cus_country') // added ->addAttributeToSelect('cus_state') // added ->joinAttribute('billing_postcode', 'customer_address/postcode', 'default_billing', null, 'left') ->joinAttribute('billing_city', 'customer_address/city', 'default_billing', null, 'left') ->joinAttribute('billing_telephone', …

2
Làm cách nào để xóa tùy chọn Xóa khỏi thả xuống hàng loạt cho vai trò người dùng cụ thể trong Magento2?
Tôi có vai trò người dùng khác nhau cho trang web của tôi. Đối với vai trò người dùng cụ thể, tôi muốn xóa "Xóa" khỏi danh sách hành động hàng loạt hiển thị trên lưới khách hàng trong phần quản trị. Tùy chọn Xóa được kết xuất từ magento\vendor\magento\module-customer\view\adminhtml\ui_component\customer_listing.xml …

6
Magento 2 - Cách thêm một cột tùy chỉnh trong lưới khách hàng
Tôi đang sử dụng mã dưới đây để thêm một cột trong lưới khách hàng trong quản trị viên. /app/code/Namespace/Module/view/adminhtml/ui_component/customer_listing.xml <?xml version="1.0" encoding="UTF-8"?> <listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd"> <columns name="customer_columns" class="Magento\Customer\Ui\Component\Listing\Columns"> <column name="magcustomer_customer_approve" class="Namespace\Module\Ui\Component\Listing\Column\Showisapproved"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="filter" xsi:type="string">select</item> <item name="editor" xsi:type="string">select</item> <item name="component" xsi:type="string">Magento_Ui/js/grid/columns/select</item> <item name="dataType" xsi:type="string">select</item> …
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.