// improve hasInvoice method

This commit is contained in:
aFolletete
2011-12-12 15:57:11 +00:00
parent ff0f55c8bc
commit 2ffa2ea399
+8 -4
View File
@@ -1589,10 +1589,14 @@ class OrderCore extends ObjectModel
*/
public function hasInvoice()
{
return Db::getInstance()->getValue('
SELECT COUNT(*)
FROM `'._DB_PREFIX_.'order_invoice`
WHERE `id_order` = '.(int)$this->id);
if (Db::getInstance()->getRow('
SELECT *
FROM `'._DB_PREFIX_.'order_invoice`
WHERE `id_order` = '.(int)$this->id.'
LIMIT 1')
)
return true;
return false;
}
}