/**
  * 商品一覧画面
  * route --> /item
  */
 public function indexAction()
 {
     $this->_log->debug(__CLASS__ . ":" . __FUNCTION__ . " called:(" . __LINE__ . ")");
     $mapper = new Item();
     $items = $mapper->selectAllItems();
     $customerID = Auth::getUserID();
     $customerInfo = $mapper->selectCustomerByCustomerID($customerID);
     $this->setViewSearchlist($items);
     $this->setViewIndata($customerInfo);
     return;
 }