// Improve collections : where() method reworked (prototype changed) + validation of fields

This commit is contained in:
rMalie
2011-12-19 16:57:28 +00:00
parent 219f3ac870
commit b2b678ab3d
15 changed files with 240 additions and 67 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ class OrderPaymentCore extends ObjectModel
public static function getByInvoiceId($id_invoice)
{
$payments = new Collection('OrderPayment');
$payments->where('a.id_order_invoice = '.(int)$id_invoice);
$payments->where('id_order_invoice', '=', $id_invoice);
return $payments;
}
}