Example #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Donthuoc::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to return any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'ngayKeDon' => $this->ngayKeDon]);
     $query->andFilterWhere(['like', 'donthuoc', $this->donthuoc])->andFilterWhere(['like', 'cachSD', $this->cachSD]);
     return $dataProvider;
 }
Example #2
0
 /**
  * Deletes an existing Benhan model.
  * If deletion is successful, the browser will be redirected to the 'index' page.
  * @param integer $id
  * @return mixed
  */
 public function actionDelete($id)
 {
     $hoso = $this->findModel($id)->maHS;
     $vienphi = Vienphi::findOne(['maBA' => $id]);
     if (!empty($vienphi)) {
         Vienphi::findOne(['maBA' => $id])->delete();
     }
     $donthuoc = Donthuoc::findOne(['maBA' => $id]);
     if (!empty($donthuoc)) {
         Donthuoc::findOne(['maBA' => $id])->delete();
     }
     $this->findModel($id)->delete();
     return $this->redirect(["index?hoso={$hoso}"]);
 }
 /**
  * Finds the Donthuoc model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Donthuoc the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Donthuoc::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Example #4
0
    return implode(',</br />', $array);
}], 'ketLuanBA:ntext', 'lichHen', ['label' => 'Viện phí', 'format' => 'raw', 'value' => function ($data) {
    $url = "vienphi/create?benhan={$data->id}";
    return Html::a('Viện phí', $url, ['title' => 'Go']);
}], ['label' => 'In hóa đơn', 'format' => 'raw', 'value' => function ($data) {
    $model1 = \app\models\Vienphi::findOne(['maBA' => $data->id]);
    if (!empty($model1)) {
        $url = "vienphi/inhoadon?benhan={$data->id}";
        return Html::a('In hóa đơn', $url, ['title' => 'Go']);
    } else {
        return '';
    }
}], ['label' => 'Kê đơn thuốc', 'format' => 'raw', 'value' => function ($data) {
    $url = "donthuoc/create?benhan={$data->id}";
    return Html::a('Kê đơn thuốc', $url, ['title' => 'Go']);
}], ['label' => 'In đơn thuốc', 'format' => 'raw', 'value' => function ($data) {
    $model1 = \app\models\Donthuoc::findOne(['maBA' => $data->id]);
    if (!empty($model1)) {
        $url = "donthuoc/indonthuoc?benhan={$data->id}";
        return Html::a('In đơn thuốc', $url, ['title' => 'Go']);
    } else {
        return '';
    }
}], ['label' => 'Khám bệnh', 'format' => 'raw', 'value' => function ($data) {
    $url = "bnpk/index?benhan={$data->id}";
    return Html::a('Khám bệnh', $url, ['title' => 'Go']);
}], ['class' => 'yii\\grid\\ActionColumn']]]);
?>

</div>
Example #5
0
        var printcontent = document.getElementById(el).innerHTML;
        document.body.innerHTML = printcontent;
        window.print();
        document.body.innerHTML = restorepage;
    }
</script>
<a href='javascript:history.go(-1)' class="btn btn-warning">Quay lại trang trước</a>
<input type="button" class="btn btn-default" id="print_button"  value="In hóa đơn" onclick="printContent('donthuoc')" />
<div class="col-md-10 col-md-offset-1" id="donthuoc">
    <center><h3>ĐƠN THUỐC</h3></center>
    <br /><br />
    <?php 
$benhan = \app\models\Benhan::findOne(['id' => $_GET['benhan']]);
$hoso = \app\models\Hoso::findOne(['id' => $benhan->maHS]);
$benhnhan = \app\models\Benhnhan::findOne(['id' => $hoso->maBN]);
$donthuoc = \app\models\Donthuoc::findOne(['maBA' => $benhan->id]);
?>
    <h4>
    <table>
        <tr>
            <td>Bệnh nhân :</td>
            <td><?php 
echo $benhnhan->tenBN;
?>
</td>
        </tr>
        <tr></tr>
        <tr>
            <td>Đơn thuốc :</td>
            <td><?php 
echo $donthuoc->donthuoc;