예제 #1
0
파일: Finances.php 프로젝트: pancke/yyaf
 /**
  * 财务删除
  */
 public function delAction()
 {
     $iFinanceID = intval($this->getParam('id'));
     $iRet = Model_Finance::delData($iFinanceID);
     if ($iRet == 1) {
         return $this->showMsg('财务删除成功!', true);
     } else {
         return $this->showMsg('财务删除失败!', false);
     }
 }