function editAction()
 {
     if ($this->getRequest()->isPost()) {
         $data = $this->getRequest()->getPost();
         $db_wihtdraw = new Keeping_Model_DbTable_DbOutmoney();
         try {
             if ($this->getRequest()->getPost("btn_save_close")) {
                 $db_wihtdraw->updateWithdrawKeeping($data);
                 Application_Form_FrmMessage::Sucessfull('ការ​បញ្ចូល​​ជោគ​ជ័យ', self::REDIRECT_URL_EXIT);
             }
         } catch (Exception $e) {
             $this->view->msg = 'ការ​បញ្ចូល​មិន​ជោគ​ជ័យ';
         }
     }
     $db_wihtdraw = new Keeping_Model_DbTable_DbOutmoney();
     $id = $this->getRequest()->getParam("id");
     //     	echo $id;exit();
     $row = $db_wihtdraw->getWithdrawKeepingById($id);
     if (empty($row)) {
     }
     $this->view->id = $row['id'];
     $withdraw_keeping = new Keeping_Form_FrmOutMoney();
     $frm = $withdraw_keeping->dokMoney($row);
     Application_Model_Decorator::removeAllDecorator($frm);
     $this->view->frm = $frm;
 }