UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' ) || !IS_ADMIN) { header ( 'Location: static_pages/' ); } class ControllerApiCustomerOrders extends AControllerAPI { public function get() { //init controller data $this->extensions->hk_InitData($this, __FUNCTION__); $this->loadLanguage('sale/order'); $this->loadModel('sale/order'); $request = $this->rest->getRequestParams(); if ( !has_value($request['customer_id']) ) { $this->rest->setResponseData( array('Error' => 'Customer ID is missing') ); $this->rest->sendResponse(200); return null; } $filter = array( 'filter_customer_id' => $request['customer_id'], 'sort' => 'o.date_added', 'order' => 'DESC', 'start' => 0, ); $orders = $this->model_sale_order->getOrders($filter); if (!count($orders)) { $this->rest->setResponseData( array('Message' => 'No order records found for the customer') ); $this->rest->sendResponse(200); return null; } $this->extensions->hk_UpdateData($this,__FUNCTION__); $this->rest->setResponseData( $orders ); $this->rest->sendResponse( 200 ); } }