Browse Source

2020-04-09 / ct_chen

Actions:
1. modify system->authentication updating error

Files:
1. EVSE/rootfs/var/www/set_system.php
ct_chen 5 years ago
parent
commit
6b9b398f4c
1 changed files with 2 additions and 6 deletions
  1. 2 6
      EVSE/rootfs/var/www/set_system.php

+ 2 - 6
EVSE/rootfs/var/www/set_system.php

@@ -118,11 +118,10 @@ img {
 										</div>
 										<div class="form-group" style="display:<?php echo $am111;?>">
 											<label>Authentication</label>
-											<select type="text" class="form-control" id="AuthorisationMode" name="AuthorisationMode" <?php //onchange="AuthorisationMode_changed();"?>>
+											<select class="form-control" id="AuthorisationMode" name="AuthorisationMode">
 												<option value="0" <?php echo $obj->{'AuthorisationMode'}=="0"?"selected":""?>>enable</option>
 												<option value="1" <?php echo $obj->{'AuthorisationMode'}=="1"?"selected":""?>>disable</option>
 											</select>
-<?php /*											<small class="form-text text-muted-red"><label id="AuthorisationModeText" style="display:none;">You should set parameter about OCPP after this setting</label></small> */?>
 										</div>
 										<div class="form-group" style="display:<?php echo $am111;?>">
 											<label>Input Voltage R</label>
@@ -278,9 +277,6 @@ img {
 			format:"YYYY-MM-DD HH:mm:ss"
 		});
 		setInterval(function(){var t = new Date(document.getElementById("SystemDateTime0").placeholder);var t_s = t.getTime();t.setTime(t_s + 1000 );document.getElementById("SystemDateTime0").placeholder= t.Format("yyyy-MM-dd hh:mm:ss");}, 1000);
-		// if(document.getElementById("AuthorisationMode").value=="0"){
-			// document.getElementById("AuthorisationModeText").style.display="block";
-		// }
 		if(document.getElementById("ModelName").value.substr(8,1) != "0"){
 			document.getElementById("AcRatingCurrentDiv").style.display="block";
 		}
@@ -315,7 +311,7 @@ img {
 			var data =  "SystemId=" + document.getElementById("SystemId").value+
 						"&SystemDateTime=" + document.getElementById("SystemDateTime").value+
 						"&FactoryConfiguration=" + (document.getElementById("FactoryConfiguration").checked?1:0)+
-						"&AuthorisationMode=" + (document.getElementById("AuthorisationMode").checked?0:1)+
+						"&AuthorisationMode=" + document.getElementById("AuthorisationMode").value+
 						"&isAPP=" + (document.getElementById("isAPP").checked?1:0)+
 						"&isQRCode=" + (document.getElementById("isQRCode").checked?1:0)+
 						"&isRFID=" + (document.getElementById("isRFID").checked?1:0)+