From: Agnibho Mondal Date: Mon, 24 May 2021 14:01:11 +0000 (+0530) Subject: USG WA form X-Git-Url: https://code.agnibho.com/repo?a=commitdiff_plain;h=bef296dca656a795c25f10eb5372e487fd0e193b;p=simpleipd.git USG WA form --- diff --git a/www/autocomplete/investigation.json b/www/autocomplete/investigation.json index 1aa6a91..7cdaf37 100644 --- a/www/autocomplete/investigation.json +++ b/www/autocomplete/investigation.json @@ -1,8 +1,7 @@ { "tests": [ "Chest Xray", - "Straight Xray Abdomen", - "USG W/A" + "Straight Xray Abdomen" ], "rooms": [ "labmed", @@ -14,6 +13,7 @@ "pathology", "ictc", "suraksha_clinic", + "radiology", "ccu_lab", "other_govt_hospital", "outside_lab" diff --git a/www/forms/report-usg-wa.schema.json b/www/forms/report-usg-wa.schema.json new file mode 100644 index 0000000..b7d66b9 --- /dev/null +++ b/www/forms/report-usg-wa.schema.json @@ -0,0 +1,72 @@ +{ + "$schema": "http://json-schema.org/draft/2020-12/schema", + "title": "usg_wa", + "description": "USG W/A", + "type": "object", + + "properties": { + "date": { + "description": "Date", + "type": "string", + "format": "date" + }, + "time": { + "description": "Time", + "type": "string", + "format": "time" + }, + "sample": { + "description": "Sample", + "type": "string" + }, + "liver": { + "description": "Liver", + "type": "string" + }, + "gb": { + "description": "GB", + "type": "string" + }, + "cbd": { + "description": "CBD", + "type": "string" + }, + "pv": { + "description": "PV", + "type": "string" + }, + "pancreas": { + "description": "Pancreas", + "type": "string" + }, + "spleen": { + "description": "Spleen", + "type": "string" + }, + "rk": { + "description": "RK", + "type": "string" + }, + "lk": { + "description": "LK", + "type": "string" + }, + "ub": { + "description": "UB", + "type": "string" + }, + "prostate": { + "description": "Prostate", + "type": "string" + }, + "ascites": { + "description": "Ascites", + "type": "string" + }, + "rpln": { + "description": "RPLN", + "type": "string" + } + }, + "required": ["date"] +}