|
@@ -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)+
|