Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getGrpTransaction()
 {
     return $this->hasOne(MsTransactionPayment::className(), ['trs_id' => 'grp_transaction_id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStmTrs()
 {
     return $this->hasOne(MsTransactionPayment::className(), ['trs_id' => 'stm_trs_id']);
 }
 /**
  * Finds the MsTransactionPayment model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return MsTransactionPayment the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = MsTransactionPayment::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }