- Anaesthesia used: Type:
+ | Anaesthesia used: Type: *
@@ -607,8 +609,8 @@
- Name of Clinician |
- Cadre |
+ Name of Clinician * |
+ Cadre * |
@@ -620,7 +622,7 @@
+ answerLabels="MO,CO,Nurse" id="clinician_cadre" style="radio" />
|
@@ -638,7 +640,7 @@
-
+
|
- Theatre Register Number:
+ | Theatre Register Number: *
|
diff --git a/omod/src/main/webapp/resources/htmlforms/vmmc/vmmcPostOperationAssessment.html b/omod/src/main/webapp/resources/htmlforms/vmmc/vmmcPostOperationAssessment.html
index b4783c8cfa..de38c640d8 100644
--- a/omod/src/main/webapp/resources/htmlforms/vmmc/vmmcPostOperationAssessment.html
+++ b/omod/src/main/webapp/resources/htmlforms/vmmc/vmmcPostOperationAssessment.html
@@ -119,6 +119,15 @@
var postProcedureVal = getValue('post-procedure-instructions.value');
var dischargedByVal = getValue('discharged-by.value');
var clinicianCadreVal = getValue('clinician_cadre.value');
+ var removalDate = getValue('removal-date.value');
+ var scheduledApp = getValue('next-visit-date.value');
+
+ if( removalDate > scheduledApp) {
+ getField('next-visit-date.error').html('The next appointment date should not be less than the removal date').show();
+ return false;
+ } else {
+ getField('next-visit-date.error').html('The next appointment date should not be less than the removal date').hide();
+ }
if(systolicVal == "" ) {
getField('systolic.error').html('Please specify the blood pressure').show();
| |