Subversion Repositories SmartDukaan

Rev

Rev 18184 | Rev 18449 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18184 Rev 18446
Line 700... Line 700...
700
			$users[$user['User']['id']] = $user['User']['first_name'];
700
			$users[$user['User']['id']] = $user['User']['first_name'];
701
		}
701
		}
702
		$this->layout = 'admin';
702
		$this->layout = 'admin';
703
		$this->set(compact('ignoredFields','page','totalPages','userId','activestores','storemapping','amazonorderurl','users', 'orderFilters', 'filter', 'apihost'));
703
		$this->set(compact('ignoredFields','page','totalPages','userId','activestores','storemapping','amazonorderurl','users', 'orderFilters', 'filter', 'apihost'));
704
	}
704
	}
-
 
705
	
-
 
706
	public function orderdetail(){
-
 
707
		$orderId = $this->request->query('order_id');
-
 
708
		$userId = $this->Auth->User('id');
-
 
709
		$next = "order/".$orderId;					
-
 
710
		$redirectUrl = $this->getAutoLoginUrl($userId,$next);
-
 
711
		$this->log($redirectUrl,'headers');
-
 
712
		$this->set(compact('redirectUrl','next'));
-
 
713
	}
705
}
714
}
706
715