我需要检查total_invoiced
字段是否在 Magento 的 sales_flat_order 表中具有值。我怎样才能检查它?
我在网格中的代码是,
protected function _prepareCollection()
{
$collection = Mage::getModel('sales/order')->getCollection()->addFilter('total_invoiced','notnull');
$this->setCollection($collection);
return parent::_prepareCollection();
}
我需要将在total_invoiced
字段中具有价值的订单添加到集合中。我怎么能?请分享如果有人知道解决方案。