Magento 2 ऑर्डर ग्रिड में एक नया कॉलम कैसे जोड़ें
मैंने sales_orderनामक एक नया कॉलम तालिका में जोड़ा है export_status, अब मैं नए sales_orderकॉलम से डेटा के साथ नया ऑर्डर ग्रिड कॉलम जोड़ना चाहता हूं । मैं the sales_order_gridतालिका में स्तंभ जोड़ने में कामयाब रहा हूं । $installer->getConnection()->addColumn($installer->getTable("sales_order_grid"), "xml_exported", [ 'type' => \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, 'comment' => 'XML Exported' ]); अब मैं …