Page 1 of 1

Error On Dashboard

Posted: Wed Jan 18, 2012 2:03 am
by ToddR
When Im in My dashboard ,
Under latest 10 orders
I go to click view on a persons order and I get this error,
Fatal error: Call to undefined method ModelSaleCustomer::getTotalTransactionsByOrderId() in /home/trambila/public_html/admin/controller/sale/order.php on line 1240

Please Help ,
Email me at trambilas@aol.com for a quick response in return I will paypal you $5 via gift

Re: Error On Dashboard

Posted: Wed Jan 18, 2012 2:21 am
by jimmyphong
Call to undefined method ?

go to file : admin\model\sale\customer.php

find function getTotalTransactionsByOrderId has exits yet ?

code for this function :

Code: Select all

public function getTotalTransactionsByOrderId($order_id) {
		$query = $this->db->query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "customer_transaction WHERE order_id = '" . (int)$order_id . "'");
	
		return $query->row['total'];
	}	

Re: Error On Dashboard

Posted: Wed Jan 18, 2012 10:11 pm
by ToddR
public function getTotalCustomerTransactionsByOrderId($order_id) {
$query = $this->db->query("SELECT COUNT(*) AS total FROM " . DB_PREFIX . "customer_transaction WHERE order_id = '" . (int)$order_id . "'");

return $query->row['total'];

I have this one

Re: Error On Dashboard

Posted: Thu Apr 05, 2012 10:05 am
by niquey
Hi, did you get this fixed? I have the same problem. Thanks