我正在Magento 2中开发一个自定义模块。我想在编辑表单中添加一个多选项,以允许用户选择订单的状态。在Magento 1.9中,它以这种方式完成:
Mage::getModel('sales/order_status')->getResourceCollection()->getData();
如何在Magento 2中完成?
答案 0 :(得分:0)
您可以将此代码添加到{Vendor} / {Module} /etc/adminhtml/system.xml
<field id="order_status" translate="label" type="multiselect" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Order status</label>
<source_model>Magento\Sales\Model\Config\Source\Order\Status</source_model>
<comment>Select the status for the orders to be exported</comment>
</field>