/**
  * Loads the History for the given Order
  */
 public function loadHistoryStoreAction()
 {
     $orderId = $this->Request()->getParam("orderId");
     $history = new Shopware_Plugins_Frontend_RpayRatePay_Component_History();
     $historyData = $history->getHistory($orderId);
     $this->View()->assign(array("data" => $historyData, "success" => true));
 }