Esempio n. 1
0
File: Pay.php Progetto: pancke/yyaf
 /**
  * 检查付款是否成功
  */
 public function checkAction()
 {
     $sMyOrder = $this->getParam('id', '');
     $aRow = Model_Finance::getMyOrder($sMyOrder);
     if ($aRow) {
         $this->showMsg('/payment/pay/success/id/' . $aRow['iAutoID'] . '.html', true);
     } else {
         $this->showMsg('付款还未到帐', false);
     }
 }