]> Softwares of Agnibho - simpleipd.git/commitdiff
New forms
authorAgnibho Mondal <mondal@agnibho.com>
Mon, 24 May 2021 12:51:04 +0000 (18:21 +0530)
committerAgnibho Mondal <mondal@agnibho.com>
Mon, 24 May 2021 12:51:04 +0000 (18:21 +0530)
www/autocomplete/investigation.json
www/forms/report-fluid-ascitic.schema.json [deleted file]
www/forms/report-fluid.schema.json [new file with mode: 0644]
www/forms/report-vdrl.schema.json [new file with mode: 0644]

index f26bf5a2a4038ba56ae3a67320cb21e891548526..1aa6a912dc94621ee91d87d724c1e98cf7295643 100644 (file)
@@ -13,6 +13,7 @@
         "parasitology",
         "pathology",
         "ictc",
+        "suraksha_clinic",
         "ccu_lab",
         "other_govt_hospital",
         "outside_lab"
diff --git a/www/forms/report-fluid-ascitic.schema.json b/www/forms/report-fluid-ascitic.schema.json
deleted file mode 100644 (file)
index 26daa33..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-{
-    "$schema": "http://json-schema.org/draft/2020-12/schema",
-    "title": "fluid_study",
-    "description": "Fluid Study",
-    "type": "object",
-
-    "properties": {
-        "date": {
-            "description": "Date",
-            "type": "string",
-            "format": "date"
-        },
-        "time": {
-            "description": "Time",
-            "type": "string",
-            "format": "time"
-        },
-        "sample": {
-            "description": "Sample",
-            "type": "string"
-        },
-        "cellCount": {
-            "description": "Cell Count",
-            "type": "integer"
-        },
-        "cellType": {
-            "description": "Cell Type",
-            "type": "string"
-        },
-        "protein": {
-            "description": "Protein",
-            "type": "integer"
-        },
-        "sugar": {
-            "description": "Sugar",
-            "type": "integer"
-        },
-        "ldh": {
-            "description": "LDH",
-            "type": "integer"
-        },
-        "gram": {
-            "description": "Gram Stain",
-            "type": "string"
-        },
-        "afb": {
-            "description": "AFB Stain",
-            "type": "string"
-        },
-        "fungal": {
-            "description": "Fungal Stain",
-            "type": "string"
-        },
-        "cs": {
-            "description": "Culture/Sensitivity",
-            "type": "string"
-        },
-        "cbnaat": {
-            "description": "CBNAAT",
-            "type": "string"
-        }
-    },
-    "required": ["date"]
-}
diff --git a/www/forms/report-fluid.schema.json b/www/forms/report-fluid.schema.json
new file mode 100644 (file)
index 0000000..d296c22
--- /dev/null
@@ -0,0 +1,68 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "fluid_study",
+    "description": "Fluid Study",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "sample": {
+            "description": "Sample",
+            "type": "string"
+        },
+        "cellCount": {
+            "description": "Cell Count",
+            "type": "integer"
+        },
+        "cellType": {
+            "description": "Cell Type",
+            "type": "string"
+        },
+        "protein": {
+            "description": "Protein",
+            "type": "integer"
+        },
+        "sugar": {
+            "description": "Sugar",
+            "type": "integer"
+        },
+        "ada": {
+            "description": "ADA",
+            "type": "integer"
+        },
+        "ldh": {
+            "description": "LDH",
+            "type": "integer"
+        },
+        "gram": {
+            "description": "Gram Stain",
+            "type": "string"
+        },
+        "afb": {
+            "description": "AFB Stain",
+            "type": "string"
+        },
+        "fungal": {
+            "description": "Fungal Stain",
+            "type": "string"
+        },
+        "cs": {
+            "description": "Culture/Sensitivity",
+            "type": "string"
+        },
+        "cbnaat": {
+            "description": "CBNAAT",
+            "type": "string"
+        }
+    },
+    "required": ["date"]
+}
diff --git a/www/forms/report-vdrl.schema.json b/www/forms/report-vdrl.schema.json
new file mode 100644 (file)
index 0000000..ea057ca
--- /dev/null
@@ -0,0 +1,29 @@
+{
+    "$schema": "http://json-schema.org/draft/2020-12/schema",
+    "title": "vdrl",
+    "description": "VDRL",
+    "type": "object",
+
+    "properties": {
+        "date": {
+            "description": "Date",
+            "type": "string",
+            "format": "date"
+        },
+        "time": {
+            "description": "Time",
+            "type": "string",
+            "format": "time"
+        },
+        "sample": {
+            "description": "Sample",
+            "type": "string"
+        },
+        "report": {
+            "description": "Report",
+            "type": "string",
+            "format": "textarea"
+        }
+    },
+    "required": ["date"]
+}