From: Agnibho Mondal Date: Tue, 1 Jun 2021 20:32:49 +0000 (+0530) Subject: IO time X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=71dc1ae8143305bd0b440f2b428b7b0e6cdb9de4;p=simpleipd.git IO time --- diff --git a/lib/db.php b/lib/db.php index 505a92c..dd91dc8 100644 --- a/lib/db.php +++ b/lib/db.php @@ -37,15 +37,16 @@ class DB extends SQLite3 { $query->bindValue(":pid", $post["pid"]); $exist=$query->execute(); if($exist->fetchArray()[0]==0){ - $stmt=$this->prepare("INSERT INTO patients (pid,name,age,sex,status,vp,ward,bed,data) VALUES (:pid,:name,:age,:sex,:status,:vp,:ward,:bed,:data);"); + $stmt=$this->prepare("INSERT INTO patients (pid,name,age,sex,admission,status,vp,ward,bed,data) VALUES (:pid,:name,:age,:sex,:admission,:status,:vp,:ward,:bed,:data);"); } else{ - $stmt=$this->prepare("UPDATE patients SET name=:name,age=:age,sex=:sex,ward=:ward,bed=:bed,vp=:vp,data=:data WHERE pid=:pid;"); + $stmt=$this->prepare("UPDATE patients SET name=:name,age=:age,sex=:sex,admission=:admission,ward=:ward,bed=:bed,vp=:vp,data=:data WHERE pid=:pid;"); } $stmt->bindValue(":pid", $post["pid"]); $stmt->bindValue(":name", $post["name"]); $stmt->bindValue(":age", $post["age"]); $stmt->bindValue(":sex", $post["sex"]); + $stmt->bindValue(":admission", strtotime($post["date"]." ".$post["time"])); $stmt->bindValue(":status", "admitted"); $stmt->bindValue(":ward", $post["ward"]); $stmt->bindValue(":bed", $post["bed"]); diff --git a/www/nursing.php b/www/nursing.php index 2bafa2e..ba95dff 100644 --- a/www/nursing.php +++ b/www/nursing.php @@ -16,6 +16,20 @@ if(!empty($_GET["pid"])){ header("Location: view.php?pid=".$_GET["pid"]); exit(); } + $all=$db->getAllData($pid, "nursing"); + $io=""; + $lastIO=""; + while($io=="" && $a=$all->fetchArray()){ + $d=json_decode($a["data"]); + $io=$d->intake.$d->output; + $lastIO=$d->io_to; + } + if($lastIO==""){ + $d=$db->getAdmission($pid)->fetchArray(); + $dt=new DateTime(); + $dt->setTimestamp($d["admission"]); + $lastIO=$dt->format("H:i"); + } if(isSet($_GET["id"])){ $form=schema2form("forms/nursing.schema.json", $pid, $_GET["id"], "nursing"); } @@ -31,6 +45,7 @@ if(!empty($_GET["pid"])){ Nursing Notes +
diff --git a/www/res/script.js b/www/res/script.js index 2bb6233..8f98a10 100644 --- a/www/res/script.js +++ b/www/res/script.js @@ -33,6 +33,10 @@ $(document).ready(function(){ $(this).val(today.getFullYear()+"-"+("0"+(today.getMonth()+1)).slice(-2)+"-"+("0"+today.getDate()).slice(-2)); } }); + if($("#io_to_val").length){ + console.log($("#io_to_val").val()); + $("#io_from").val($("#io_to_val").val()); + } $("[type='time']").each(function(){ if($(this).val()==""){ $(this).val(("0"+today.getHours()).slice(-2)+":"+("0"+today.getMinutes()).slice(-2));