/** * Returns the data model based on the primary key given in the GET variable. * If the data model is not found, an HTTP exception will be raised. * @param integer $id the ID of the model to be loaded * @return Khachhang the loaded model * @throws CHttpException */ public function loadModel($id) { $model = Loaitin::model()->findByPk($id); if ($model === null) { throw new CHttpException(404, 'The requested page does not exist.'); } return $model; }
/** * trừ tiền dựa theo mã loại tin */ public function trutien($maLoaiTin) { //lấy giá tiền cần có để đăng tin $giaTien = Loaitin::model()->findByPk($maLoaiTin)->gia_dang; //lấy tổng số tiền trong tài khoản của khách hàng $tongTien = Khachhang::model()->findByPk(Yii::app()->user->userId)->so_du_tai_khoan; //Nếu không đủ tiền sẽ không cho đăng tin if ($tongTien < $giaTien) { return false; } if (Khachhang::model()->updateByPk(Yii::app()->user->userId, array('so_du_tai_khoan' => $tongTien - $giaTien))) { return true; } return false; }