function updatePlacement1Action()
 {
     $form = new Form_Placement();
     $non_ccm_location = new Model_NonCcmLocations();
     $non_ccm_location->form_values = $this->_request->getPost();
     $var = $non_ccm_location->updatePlacement();
     if ($var == 0) {
         $this->redirect("/stock/placement?error=1");
     } else {
         $this->redirect("/stock/placement?success=1");
     }
     $this->view->form = $form;
     $result = $non_ccm_location->getLocationsName();
     $this->view->result = $result;
 }