Backend Service

This commit is contained in:
2019-03-12 19:41:45 +00:00
parent 331cf30523
commit f717cd1c6f
@@ -6,9 +6,12 @@ class Reports extends Provider_Controller {
public function index() { public function index() {
$data = array(); $data = array();
$this->renderProviderSecurePage('patient/patientreport', $data); $this->renderProviderSecurePage('reports/report', $data);
} }
public function report(){
$this->index();
}
public function addnew() { public function addnew() {
$data = array(); $data = array();
$data["account_message"] = ""; $data["account_message"] = "";
@@ -54,11 +57,5 @@ $data["loc"] = $_SERVER["REMOTE_ADDR"];
$data["patient_list"] = $query->result(); $data["patient_list"] = $query->result();
return $data; return $data;
} }
public function report() {
$data = array();
$this->renderProviderSecurePage('patient/patientreport', $data);
}
public function chart(){
echo "patientChart";
}
} }