ManageTreat.php
Lekjew.com
# |
ลำดับที่ |
ชื่อผู้เข้ารับการรักษา |
แผนก |
วันที่เข้ารับการรักษา |
อาการ |
หมอ/แพทย์ |
สถานะ |
# |
ลำดับที่ |
ชื่อผู้เข้ารับการรักษา |
แผนก |
วันที่เข้ารับการรักษา |
อาการ |
หมอ/แพทย์ |
สถานะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ManageTreat_save.php
t_no;
$INSTREAT = "INSERT INTO treat (t_no, t_name, t_groupcase, t_treat_code, t_treat, t_datetime, t_case, doctor_code, t_doctor, t_status) values ( '$t_no','$t_name', '$t_groupcase', '$t_treat_code', '$t_treat','$UPDATE_AT', '$t_case', '$doctor_code','$t_doctor', 'ซักประวัติ' )";
$RSINS = sqlsrv_prepare($ConnDB, $INSTREAT);
if (!$RSINS) { throw new Exception($INSTREAT); $result[] = array("ERR" => $INSTREAT, "CSS" => "text-danger"); }
if (!sqlsrv_execute($RSINS)) { throw new Exception( $INSTREAT); $result[] = array("ERR" => $INSTREAT, "CSS" => "text-danger"); }
break;
case "EditTreat":
$t_no = $_POST['Edit_t_no'];
$t_name = $_POST['Edit_patient'];
$t_groupcase = $_POST['Edit_tcase']; //ปกติ, ฉุกเฉิน
$t_treat_code = $_POST['Edit_t_treat_code'];
$t_treat = $_POST['Edit_treat'];
$t_case = $_POST['Edit_t_case'];
$doctor_code = $_POST['Edit_doctor_code'];
$t_doctor = $_POST['Edit_t_doctor'];
$updtreat = "UPDATE treat SET t_name='$t_name', t_groupcase='$t_groupcase', t_treat_code='$t_treat_code', t_treat='$t_treat', t_case='$t_case' , doctor_code='$doctor_code' , t_doctor='$t_doctor' WHERE t_no ='$t_no' ";
$rsupd = sqlsrv_query($ConnDB, $updtreat);
if (!$rsupd) { throw new Exception($updtreat); $result[] = array("ERR" => $updtreat, "CSS" => "text-danger"); }
break;
}
} catch (Exception $ex) {
$result[] = array("ERR" => $ex->getMessage(), "CSS" => "text-danger");
sqlsrv_rollback($ConnDB);
sqlsrv_close($ConnDB);
}
sqlsrv_close($ConnDB);
}else{
$result[] = array("ERR" =>"ERROR CONNECTION SQL", "CSS" => "text-danger");
}
$json = array( 'result' => $result);
echo json_encode($json, JSON_UNESCAPED_UNICODE);
?>ManageTreat_data_tno.php
$rowp->t_no
, "t_name" => $rowp->t_name
, "t_groupcase" => $rowp->t_groupcase
, "t_treat_code"=> $rowp->t_treat_code
, "t_treat" => $rowp->t_treat
, "t_datetime" => $rowp->t_datetime
, "t_case" => $rowp->t_case
, "doctor_code" => $rowp->doctor_code
, "t_doctor" => $rowp->t_doctor
, "t_status" => $rowp->t_status
);
}
echo json_encode($data, JSON_UNESCAPED_UNICODE);
sqlsrv_close($ConnDB);
?>tophead.php
BWCostTMS
js.php
style.php
ManageTreat_doctor_data.php
$rowp->doctor_code
, "doctor_name" => $rowp->doctor_name
);
}
echo json_encode($data, JSON_UNESCAPED_UNICODE);
sqlsrv_close($ConnDB);
?>