12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127 |
- <?php
- ini_set('error_reporting', E_ALL | E_STRICT);
- $tag_header = 'set';
- include 'head.php';
- $obj = json_decode(trim($output[1]),true);//var_dump($obj);
- $system = json_decode(trim($output[0]),true);//var_dump($obj);
- $RatingCurrent = $system['RatingCurrent'];
- $AcRatingCurrent = $system['AcRatingCurrent'];
- $ModelName = $system['ModelName'];
- $RatingPower = substr($ModelName,4,2)*pow(10,-1+substr($ModelName,6,1));
- $Connector1=substr($ModelName,7,1);
- $Connector2=substr($ModelName,8,1);
- $Connector3=substr($ModelName,9,1);
- $connectorType1=ConnectorType($Connector1);
- $connectorType2=ConnectorType($Connector2);
- $connectorType3=ConnectorType($Connector3);
- $idx=0;
- if($obj['ChargingInfo1']){
- switch ($obj['ChargingInfo1']['SystemStatus']){
- case 0:
- $SystemStatus1='booting';
- break;
- case 1:
- $SystemStatus1='idle';
- break;
- case 2:
- $SystemStatus1='authorizing';
- break;
- case 3:
- $SystemStatus1='reassign check';
- break;
- case 4:
- $SystemStatus1='reassign';
- break;
- case 5:
- $SystemStatus1='preparing';
- break;
- case 6:
- $SystemStatus1='preparing for EV';
- break;
- case 7:
- $SystemStatus1='preparing for evse';
- break;
- case 8:
- $SystemStatus1='charging';
- break;
- case 9:
- $SystemStatus1='terminating';
- break;
- case 10:
- $SystemStatus1='complete';
- break;
- case 11:
- $SystemStatus1='alarm';
- break;
- case 12:
- $SystemStatus1='fault';
- break;
- case 13:
- $SystemStatus1='reservation';
- break;
- case 14:
- $SystemStatus1='booking';
- break;
- case 15:
- $SystemStatus1='maintain';
- break;
- case 16:
- $SystemStatus1='debug';
- break;
- case 17:
- $SystemStatus1='precharge step 0';
- break;
- case 18:
- $SystemStatus1='precharge step 1';
- break;
- case 19:
- $SystemStatus1='update';
- break;
- default:
- $SystemStatus1='unknown';
- break;
- }
- }
- if($obj['ChargingInfo2']){
- switch ($obj['ChargingInfo2']['SystemStatus']){
- case 0:
- $SystemStatus2='booting';
- break;
- case 1:
- $SystemStatus2='idle';
- break;
- case 2:
- $SystemStatus2='authorizing';
- break;
- case 3:
- $SystemStatus2='reassign check';
- break;
- case 4:
- $SystemStatus2='reassign';
- break;
- case 5:
- $SystemStatus2='preparing';
- break;
- case 6:
- $SystemStatus2='preparing for EV';
- break;
- case 7:
- $SystemStatus2='preparing for evse';
- break;
- case 8:
- $SystemStatus2='charging';
- break;
- case 9:
- $SystemStatus2='terminating';
- break;
- case 10:
- $SystemStatus2='complete';
- break;
- case 11:
- $SystemStatus2='alarm';
- break;
- case 12:
- $SystemStatus2='fault';
- break;
- case 13:
- $SystemStatus2='reservation';
- break;
- case 14:
- $SystemStatus2='booking';
- break;
- case 15:
- $SystemStatus2='maintain';
- break;
- case 16:
- $SystemStatus2='debug';
- break;
- case 17:
- $SystemStatus2='precharge step 0';
- break;
- case 18:
- $SystemStatus2='precharge step 1';
- break;
- case 19:
- $SystemStatus2='update';
- break;
- default:
- $SystemStatus2='unknown';
- break;
- }
- }
- if($obj['ChargingInfo3']){
- switch ($obj['ChargingInfo3']['SystemStatus']){
- case 0:
- $SystemStatus3='booting';
- break;
- case 1:
- $SystemStatus3='idle';
- break;
- case 2:
- $SystemStatus3='authorizing';
- break;
- case 3:
- $SystemStatus3='reassign check';
- break;
- case 4:
- $SystemStatus3='reassign';
- break;
- case 5:
- $SystemStatus3='preparing';
- break;
- case 6:
- $SystemStatus3='preparing for EV';
- break;
- case 7:
- $SystemStatus3='preparing for evse';
- break;
- case 8:
- $SystemStatus3='charging';
- break;
- case 9:
- $SystemStatus3='terminating';
- break;
- case 10:
- $SystemStatus3='complete';
- break;
- case 11:
- $SystemStatus3='alarm';
- break;
- case 12:
- $SystemStatus3='fault';
- break;
- case 13:
- $SystemStatus3='reservation';
- break;
- case 14:
- $SystemStatus3='booking';
- break;
- case 15:
- $SystemStatus3='maintain';
- break;
- case 16:
- $SystemStatus3='debug';
- break;
- case 17:
- $SystemStatus3='precharge step 0';
- break;
- case 18:
- $SystemStatus3='precharge step 1';
- break;
- case 19:
- $SystemStatus3='update';
- break;
- default:
- $SystemStatus3='unknown';
- break;
- }
- }
-
- function ConnectorType($connector){
- $result="";
- if($connector == "0"){
- $result= "";
- }
- else if($connector == "U" || $connector == "E"){
- $result= "CCS";
- }
- else if($connector == "G" || $connector == "D"){
- $result= "GB";
- }
- else if($connector == "J"){
- $result= "CHAdeMO";
- }
- else if($connector == "1" || $connector == "2" || $connector == "3" || $connector == "4" || $connector == "5" || $connector == "6"){
- $result= "AC";
- }
- else{
- $result= "";
- }
- return $result;
- }
- ?>
- <style>
- img {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- </style>
- <div class="envor-content">
- <!--
- Page Title start
- //-->
- <section class="envor-page-title-1" data-stellar-background-ratio="0.5">
- <div class="container">
- <div class="row">
- <div class="col-lg-9 col-md-9 col-sm-9">
- <h1><?php echo $lang->showWord("charging"); ?></h1>
- </div>
- </div>
- </div>
- <!--
- Page Title end
- //-->
- </section>
- <!--
- Main Content start
- //-->
- <a id="loadinghref"><div id="loading" style="display:none;"><input type="hidden" name="ModelName" id="ModelName" value="<?php echo $ModelName;?>"><img src="img/giphy.gif"/></div></a>
- <section class="envor-section">
- <div class="container">
- <div class="row">
- <div class="col-lg-12">
- <div class="envor-sorting" id="faq-sorting">
- <div class="envor-toggle">
- <!--Charging relevant parameters-->
- <article class="envor-sorting-item css">
- <header><?php echo $lang->showWord("charging_relevant_parameters"); ?><i class="fa fa-plus"></i></header>
- <section>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Max Charging Energy</label>
- <small class="form-text text-muted-red">kWh</small>
- <input type="text" name="MaxChargingEnergy" id="MaxChargingEnergy" class="form-control" value="<?php echo $obj['MaxChargingEnergy'];?>" placeholder="<?php echo ($obj['MaxChargingEnergy']==0||$obj['MaxChargingEnergy']=="")?"'0' means unlimit":"";?>" title="'0' means unlimit" onchange="MaxValue_changed(document.getElementById('MaxChargingEnergy').id,document.getElementById('MaxChargingEnergyText').id);">
- <small class="form-text text-muted-red"><label id="MaxChargingEnergyText" style="display:none;">'0' means unlimit</label></small>
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Max Charging Power</label>
- <small class="form-text text-muted-red">kW</small>
- <input type="text" name="MaxChargingPower" id="MaxChargingPower" class="form-control" value="<?php echo $obj['MaxChargingPower'];?>" placeholder="<?php echo ($obj['MaxChargingPower']==0||$obj['MaxChargingPower']=="")?"'0' means unlimit":"";?>" title="'0' means unlimit" onchange="MaxValue_changed(document.getElementById('MaxChargingPower').id,document.getElementById('MaxChargingPowerText').id);">
- <input type="hidden" name="RatingPower" id="RatingPower" value="<?php echo $RatingPower;?>">
- <small class="form-text text-muted-red"><label id="MaxChargingPowerText" style="display:none;">'0' means unlimit</label></small>
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Max Charging Current</label>
- <small class="form-text text-muted-red">amp</small>
- <input type="text" name="MaxChargingCurrent" id="MaxChargingCurrent" class="form-control" value="<?php echo $obj['MaxChargingCurrent'];?>" placeholder="<?php echo ($obj['MaxChargingCurrent']==0||$obj['MaxChargingCurrent']=="")?"'0' means unlimit":"";?>" title="'0' means unlimit" onchange="MaxValue_changed(document.getElementById('MaxChargingCurrent').id,document.getElementById('MaxChargingCurrentText').id);">
- <input type="hidden" name="RatingCurrent" id="RatingCurrent" value="<?php echo $RatingCurrent;?>">
- <small class="form-text text-muted-red"><label id="MaxChargingCurrentText" style="display:none;">'0' means unlimit</label></small>
- </div>
- <div class="form-group" id="AcMaxChargingCurrentDiv">
- <label>AC Max Charging Current</label>
- <small class="form-text text-muted-red">amp</small>
- <input type="text" name="AcMaxChargingCurrent" id="AcMaxChargingCurrent" class="form-control" value="<?php echo $obj['AcMaxChargingCurrent'];?>" placeholder="<?php echo ($obj['AcMaxChargingCurrent']==0||$obj['AcMaxChargingCurrent']=="")?"'0' means unlimit":"";?>" title="'0' means unlimit" onchange="MaxValue_changed(document.getElementById('AcMaxChargingCurrent').id,document.getElementById('AcMaxChargingCurrentText').id);">
- <input type="hidden" name="AcRatingCurrent" id="AcRatingCurrent" value="<?php echo $AcRatingCurrent;?>">
- <small class="form-text text-muted-red"><label id="AcMaxChargingCurrentText" style="display:none;">'0' means unlimit</label></small>
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Max Charging Duration</label>
- <small class="form-text text-muted-red">minutes</small>
- <input type="text" name="MaxChargingDuration" id="MaxChargingDuration" class="form-control" value="<?php echo $obj['MaxChargingDuration'];?>" placeholder="<?php echo ($obj['MaxChargingDuration']==0||$obj['MaxChargingDuration']=="")?"'0' means unlimit":"";?>" title="'0' means unlimit" onchange="MaxValue_changed(document.getElementById('MaxChargingDuration').id,document.getElementById('MaxChargingDurationText').id);">
- <small class="form-text text-muted-red"><label id="MaxChargingDurationText" style="display:none;">'0' means unlimit</label></small>
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>AC Phase Loss Policy</label>
- <select class="form-control" id="PhaseLossPolicy" name="PhaseLossPolicy">
- <option value="0" <?php echo $obj['PhaseLossPolicy']=="0"?"selected":""?>>de-rating</option>
- <option value="1" <?php echo $obj['PhaseLossPolicy']=="1"?"selected":""?>>stop charging</option>
- </select>
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card0</label>
- <input type="text" name="LocalWhiteCard0" id="LocalWhiteCard0" class="form-control" value="<?php echo $obj['LocalWhiteCard'][0];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card1</label>
- <input type="text" name="LocalWhiteCard1" id="LocalWhiteCard1" class="form-control" value="<?php echo $obj['LocalWhiteCard'][1];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card2</label>
- <input type="text" name="LocalWhiteCard2" id="LocalWhiteCard2" class="form-control" value="<?php echo $obj['LocalWhiteCard'][2];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card3</label>
- <input type="text" name="LocalWhiteCard3" id="LocalWhiteCard3" class="form-control" value="<?php echo $obj['LocalWhiteCard'][3];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card4</label>
- <input type="text" name="LocalWhiteCard4" id="LocalWhiteCard4" class="form-control" value="<?php echo $obj['LocalWhiteCard'][4];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card5</label>
- <input type="text" name="LocalWhiteCard5" id="LocalWhiteCard5" class="form-control" value="<?php echo $obj['LocalWhiteCard'][5];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card6</label>
- <input type="text" name="LocalWhiteCard6" id="LocalWhiteCard6" class="form-control" value="<?php echo $obj['LocalWhiteCard'][6];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card7</label>
- <input type="text" name="LocalWhiteCard7" id="LocalWhiteCard7" class="form-control" value="<?php echo $obj['LocalWhiteCard'][7];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card8</label>
- <input type="text" name="LocalWhiteCard8" id="LocalWhiteCard8" class="form-control" value="<?php echo $obj['LocalWhiteCard'][8];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Local White Card9</label>
- <input type="text" name="LocalWhiteCard9" id="LocalWhiteCard9" class="form-control" value="<?php echo $obj['LocalWhiteCard'][9];?>">
- </div>
- <?php /* LCM UI 相關參數
- <div class="form-group" id="isBillingDiv">
- <label>
- <input type="checkbox" id="isBilling" name="isBilling" <?php echo $obj['isBilling']==1?"checked":"";?> onclick="isBilling_clicked()">
- Billing</label>
- </div>
- <div class="form-group" id="CurrencyDiv">
- <label>Currency</label>
- <select class="form-control" id="Currency" name="Currency">
- <option value="1" <?php echo $obj['Currency']=="1"?"selected":""?>>AED - Emirati Dirham</option>
- <option value="2" <?php echo $obj['Currency']=="2"?"selected":""?>>ARS - Argentine Peso</option>
- <option value="3" <?php echo $obj['Currency']=="3"?"selected":""?>>AUD - Australian Dollar</option>
- <option value="4" <?php echo $obj['Currency']=="4"?"selected":""?>>BGN - Bulgarian Lev</option>
- <option value="5" <?php echo $obj['Currency']=="5"?"selected":""?>>BHD - Bahraini Dinar</option>
- <option value="6" <?php echo $obj['Currency']=="6"?"selected":""?>>BND - Bruneian Dollar</option>
- <option value="7" <?php echo $obj['Currency']=="7"?"selected":""?>>BRL - Brazilian Real</option>
- <option value="8" <?php echo $obj['Currency']=="8"?"selected":""?>>BWP - Botswana Pula</option>
- <option value="9" <?php echo $obj['Currency']=="9"?"selected":""?>>CAD - Canadian Dollar</option>
- <option value="10" <?php echo $obj['Currency']=="10"?"selected":""?>>CHF - Swiss Franc</option>
- <option value="11" <?php echo $obj['Currency']=="11"?"selected":""?>>CLP - Chilean Peso</option>
- <option value="12" <?php echo $obj['Currency']=="12"?"selected":""?>>CNY - Chinese Yuan Renminbi</option>
- <option value="13" <?php echo $obj['Currency']=="13"?"selected":""?>>COP - Colombian Peso</option>
- <option value="14" <?php echo $obj['Currency']=="14"?"selected":""?>>CZK - Czech Koruna</option>
- <option value="15" <?php echo $obj['Currency']=="15"?"selected":""?>>DKK - Danish Krone</option>
- <option value="16" <?php echo $obj['Currency']=="16"?"selected":""?>>EUR - Euro</option>
- <option value="17" <?php echo $obj['Currency']=="17"?"selected":""?>>GBP - British Pound</option>
- <option value="18" <?php echo $obj['Currency']=="18"?"selected":""?>>HKD - Hong Kong Dollar</option>
- <option value="19" <?php echo $obj['Currency']=="19"?"selected":""?>>HRK - Croatian Kuna</option>
- <option value="20" <?php echo $obj['Currency']=="20"?"selected":""?>>HUF - Hungarian Forint</option>
- <option value="21" <?php echo $obj['Currency']=="21"?"selected":""?>>IDR - Indonesian Rupiah</option>
- <option value="22" <?php echo $obj['Currency']=="22"?"selected":""?>>ILS - Israeli Shekel</option>
- <option value="23" <?php echo $obj['Currency']=="23"?"selected":""?>>INR - Indian Rupee</option>
- <option value="24" <?php echo $obj['Currency']=="24"?"selected":""?>>IRR - Iranian Rial</option>
- <option value="25" <?php echo $obj['Currency']=="25"?"selected":""?>>ISK - Icelandic Krona</option>
- <option value="26" <?php echo $obj['Currency']=="26"?"selected":""?>>JPY - Japanese Yen</option>
- <option value="27" <?php echo $obj['Currency']=="27"?"selected":""?>>KRW - South Korean Won</option>
- <option value="28" <?php echo $obj['Currency']=="28"?"selected":""?>>KWD - Kuwaiti Dinar</option>
- <option value="29" <?php echo $obj['Currency']=="29"?"selected":""?>>KZT - Kazakhstani Tenge</option>
- <option value="30" <?php echo $obj['Currency']=="30"?"selected":""?>>LKR - Sri Lankan Rupee</option>
- <option value="31" <?php echo $obj['Currency']=="31"?"selected":""?>>LYD - Libyan Dinar</option>
- <option value="32" <?php echo $obj['Currency']=="32"?"selected":""?>>MUR - Mauritian Rupee</option>
- <option value="33" <?php echo $obj['Currency']=="33"?"selected":""?>>MXN - Mexican Peso</option>
- <option value="34" <?php echo $obj['Currency']=="34"?"selected":""?>>MYR - Malaysian Ringgit</option>
- <option value="35" <?php echo $obj['Currency']=="35"?"selected":""?>>NOK - Norwegian Krone</option>
- <option value="36" <?php echo $obj['Currency']=="36"?"selected":""?>>NPR - Nepalese Rupee</option>
- <option value="37" <?php echo $obj['Currency']=="37"?"selected":""?>>NZD - New Zealand Dollar</option>
- <option value="38" <?php echo $obj['Currency']=="38"?"selected":""?>>OMR - Omani Rial</option>
- <option value="39" <?php echo $obj['Currency']=="39"?"selected":""?>>PHP - Philippine Peso</option>
- <option value="40" <?php echo $obj['Currency']=="40"?"selected":""?>>PKR - Pakistani Rupee</option>
- <option value="41" <?php echo $obj['Currency']=="41"?"selected":""?>>PLN - Polish Zloty</option>
- <option value="42" <?php echo $obj['Currency']=="42"?"selected":""?>>QAR - Qatari Riyal</option>
- <option value="43" <?php echo $obj['Currency']=="43"?"selected":""?>>RON - Romanian New Leu</option>
- <option value="44" <?php echo $obj['Currency']=="44"?"selected":""?>>RUB - Russian Ruble</option>
- <option value="45" <?php echo $obj['Currency']=="45"?"selected":""?>>SAR - Saudi Arabian Riyal</option>
- <option value="46" <?php echo $obj['Currency']=="46"?"selected":""?>>SEK - Swedish Krona</option>
- <option value="47" <?php echo $obj['Currency']=="47"?"selected":""?>>SGD - Singapore Dollar</option>
- <option value="48" <?php echo $obj['Currency']=="48"?"selected":""?>>THB - Thai Baht</option>
- <option value="49" <?php echo $obj['Currency']=="49"?"selected":""?>>TRY - Turkish Lira</option>
- <option value="50" <?php echo $obj['Currency']=="50"?"selected":""?>>TTD - Trinidadian Dollar</option>
- <option value="51" <?php echo $obj['Currency']=="51"?"selected":""?>>TWD - Taiwan New Dollar</option>
- <option value="52" <?php echo $obj['Currency']=="52"?"selected":""?>>USD - US Dollar</option>
- <option value="53" <?php echo $obj['Currency']=="53"?"selected":""?>>VEF - Venezuelan Bolivar</option>
- <option value="54" <?php echo $obj['Currency']=="54"?"selected":""?>>ZAR - South African Rand</option>
- </select>
- </div>
- <div class="form-group" id="FeeDiv">
- <div class="form-group">
- <label>Fee 00:00~00:59</label>
- <input type="text" name="Fee0" id="Fee0" class="form-control" value="<?php echo round($obj['Fee'][0],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 01:00~01:59</label>
- <input type="text" name="Fee0" id="Fee1" class="form-control" value="<?php echo round($obj['Fee'][1],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 02:00~02:59</label>
- <input type="text" name="Fee2" id="Fee2" class="form-control" value="<?php echo round($obj['Fee'][2],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 03:00~03:59</label>
- <input type="text" name="Fee3" id="Fee3" class="form-control" value="<?php echo round($obj['Fee'][3],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 04:00~04:59</label>
- <input type="text" name="Fee4" id="Fee4" class="form-control" value="<?php echo round($obj['Fee'][4],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 05:00~05:59</label>
- <input type="text" name="Fee5" id="Fee5" class="form-control" value="<?php echo round($obj['Fee'][5],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 06:00~06:59</label>
- <input type="text" name="Fee6" id="Fee6" class="form-control" value="<?php echo round($obj['Fee'][6],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 07:00~07:59</label>
- <input type="text" name="Fee7" id="Fee7" class="form-control" value="<?php echo round($obj['Fee'][7],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 08:00~08:59</label>
- <input type="text" name="Fee8" id="Fee8" class="form-control" value="<?php echo round($obj['Fee'][8],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 09:00~09:59</label>
- <input type="text" name="Fee9" id="Fee9" class="form-control" value="<?php echo round($obj['Fee'][9],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 10:00~10:59</label>
- <input type="text" name="Fee10" id="Fee10" class="form-control" value="<?php echo round($obj['Fee'][10],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 11:00~11:59</label>
- <input type="text" name="Fee11" id="Fee11" class="form-control" value="<?php echo round($obj['Fee'][11],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 12:00~12:59</label>
- <input type="text" name="Fee12" id="Fee12" class="form-control" value="<?php echo round($obj['Fee'][12],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 13:00~13:59</label>
- <input type="text" name="Fee13" id="Fee13" class="form-control" value="<?php echo round($obj['Fee'][13],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 14:00~14:59</label>
- <input type="text" name="Fee14" id="Fee14" class="form-control" value="<?php echo round($obj['Fee'][14],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 15:00~15:59</label>
- <input type="text" name="Fee15" id="Fee15" class="form-control" value="<?php echo round($obj['Fee'][15],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 16:00~16:59</label>
- <input type="text" name="Fee16" id="Fee16" class="form-control" value="<?php echo round($obj['Fee'][16],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 17:00~17:59</label>
- <input type="text" name="Fee17" id="Fee17" class="form-control" value="<?php echo round($obj['Fee'][17],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 18:00~18:59</label>
- <input type="text" name="Fee18" id="Fee18" class="form-control" value="<?php echo round($obj['Fee'][18],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 19:00~19:59</label>
- <input type="text" name="Fee19" id="Fee19" class="form-control" value="<?php echo round($obj['Fee'][19],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 20:00~20:59</label>
- <input type="text" name="Fee20" id="Fee20" class="form-control" value="<?php echo round($obj['Fee'][20],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 21:00~21:59</label>
- <input type="text" name="Fee21" id="Fee21" class="form-control" value="<?php echo round($obj['Fee'][21],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 22:00~22:59</label>
- <input type="text" name="Fee22" id="Fee22" class="form-control" value="<?php echo round($obj['Fee'][22],2);?>">
- </div>
- <div class="form-group">
- <label>Fee 23:00~23:59</label>
- <input type="text" name="Fee23" id="Fee23" class="form-control" value="<?php echo round($obj['Fee'][23],2);?>">
- </div>
- </div>*/?>
- <?php /* <div class="form-group" style="display:<?php echo $am111;?>">
- <label>CcsAuthentication</label>
- <select class="form-control" id="CcsAuthentication" name="CcsAuthentication">
- <option value="0" <?php echo $obj['CcsAuthentication']==0?"selected":""?>>EIM</option>
- <option value="1" <?php echo $obj['CcsAuthentication']==1?"selected":""?>>EIM&PnC mixed</option>
- </select>
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>AcCcsChargingModel</label>
- <select class="form-control" id="AcCcsChargingModel" name="AcCcsChargingModel">
- <option value="0" <?php echo $obj['AcCcsChargingModel']==0?"selected":""?>>BC (PWM) only</option>
- <option value="1" <?php echo $obj['AcCcsChargingModel']==0?"selected":""?>>BC&PLC mixed</option>
- </select>
- </div>*/?>
- </section>
- </article>
- <?php if($obj['ChargingInfo1']){ $idx++;?>
- <!--Charging Information-->
- <article class="envor-sorting-item css">
- <header><?php echo $connectorType1." ".$lang->showWord("charging_information")."(connector".$idx.")"; ?><i class="fa fa-plus"></i></header>
- <section>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>User Id</label>
- <input type="text" readonly class="form-control" value="<?php echo $obj['ChargingInfo1']['StartUserId'];?>">
- <input type="hidden" name="UserId1" id="UserId1" value="<?php echo $obj['ChargingInfo1']['StartUserId'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Start Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['StartDateTime'];?>">
- <input type="hidden" name="StartDateTime1" id="StartDateTime1" value="<?php echo $obj['ChargingInfo1']['StartDateTime'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Stop Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['StopDateTime'];?>">
- <input type="hidden" name="StopDateTime1" id="StopDateTime1" value="<?php echo $obj['ChargingInfo1']['StopDateTime'];?>">
- </div>
- <?php /* <div class="form-group" style="display:<?php echo $am111;?>">
- <label>StartMethod</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['StartMethod'];?>">
- <input type="hidden" name="StartMethod1" id="StartMethod1" value="<?php echo $obj['ChargingInfo1']['StartMethod'];?>">
- </div>*/?>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>System Status</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $SystemStatus1;?>">
- <input type="hidden" name="SystemStatus1" id="SystemStatus1" value="<?php echo $obj['ChargingInfo1']['SystemStatus'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Connector Temperature</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['ConnectorTemp'];?> ℃">
- <input type="hidden" name="ConnectorTemp1" id="ConnectorTemp1" value="<?php echo $obj['ChargingInfo1']['ConnectorTemp'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Present Charging Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['PresentChargingVoltage'];?> volt">
- <input type="hidden" name="PresentChargingVoltage1" id="PresentChargingVoltage1" value="<?php echo $obj['ChargingInfo1']['PresentChargingVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Current</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['PresentChargingCurrent'];?> amp">
- <input type="hidden" name="PresentChargingCurrent1" id="PresentChargingCurrent1" value="<?php echo $obj['ChargingInfo1']['PresentChargingCurrent'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Power</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['PresentChargingPower'];?> kW">
- <input type="hidden" name="PresentChargingPower1" id="PresentChargingPower1" value="<?php echo $obj['ChargingInfo1']['PresentChargingPower'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Energy</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['PresentChargedEnergy'];?> kWh">
- <input type="hidden" name="PresentChargedEnergy1" id="PresentChargedEnergy1" value="<?php echo $obj['ChargingInfo1']['PresentChargedEnergy'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Duration</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['PresentChargedDuration'];?> seconds">
- <input type="hidden" name="PresentChargedDuration1" id="PresentChargedDuration1" value="<?php echo $obj['ChargingInfo1']['PresentChargedDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Remain Charging Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['RemainChargingDuration'];?> seconds">
- <input type="hidden" name="RemainChargingDuration1" id="RemainChargingDuration1" value="<?php echo $obj['ChargingInfo1']['RemainChargingDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Max Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['EvBatteryMaxVoltage'];?> volt">
- <input type="hidden" name="EvBatteryMaxVoltage1" id="EvBatteryMaxVoltage1" value="<?php echo $obj['ChargingInfo1']['EvBatteryMaxVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Target Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['EvBatterytargetVoltage'];?> volt">
- <input type="hidden" name="EvBatterytargetVoltage1" id="EvBatterytargetVoltage1" value="<?php echo $obj['ChargingInfo1']['EvBatterytargetVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Soc</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo1']['EvBatterySoc'];?>">
- <input type="hidden" name="EvBatterySoc1" id="EvBatterySoc1" value="<?php echo $obj['ChargingInfo1']['EvBatterySoc'];?>">
- </div>
- </section>
- </article>
- <?php }?>
- <?php if($obj['ChargingInfo2']){ $idx++;?>
- <!--Charging Information-->
- <article class="envor-sorting-item css">
- <header><?php echo $connectorType2." ".$lang->showWord("charging_information")."(connector".$idx.")"; ?><i class="fa fa-plus"></i></header>
- <section>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>User Id</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['StartUserId'];?>">
- <input type="hidden" name="UserId2" id="UserId2" value="<?php echo $obj['ChargingInfo2']['StartUserId'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Start Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['StartDateTime'];?>">
- <input type="hidden" name="StartDateTime2" id="StartDateTime2" value="<?php echo $obj['ChargingInfo2']['StartDateTime'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Stop Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['StopDateTime'];?>">
- <input type="hidden" name="StopDateTime2" id="StopDateTime2" value="<?php echo $obj['ChargingInfo2']['StopDateTime'];?>">
- </div>
- <?php /* <div class="form-group" style="display:<?php echo $am111;?>">
- <label>StartMethod</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['StartMethod'];?>">
- <input type="hidden" name="StartMethod2" id="StartMethod2" value="<?php echo $obj['ChargingInfo2']['StartMethod'];?>">
- </div>*/?>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>System Status</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $SystemStatus2;?>">
- <input type="hidden" name="SystemStatus2" id="SystemStatus2" value="<?php echo $obj['ChargingInfo2']['SystemStatus'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Connector Temperature</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['ConnectorTemp'];?> ℃">
- <input type="hidden" name="ConnectorTemp2" id="ConnectorTemp2" value="<?php echo $obj['ChargingInfo2']['ConnectorTemp'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Present Charging Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['PresentChargingVoltage'];?> volt">
- <input type="hidden" name="PresentChargingVoltage2" id="PresentChargingVoltage2" value="<?php echo $obj['ChargingInfo2']['PresentChargingVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Current</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['PresentChargingCurrent'];?> amp">
- <input type="hidden" name="PresentChargingCurrent2" id="PresentChargingCurrent2" value="<?php echo $obj['ChargingInfo2']['PresentChargingCurrent'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Power</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['PresentChargingPower'];?> kW">
- <input type="hidden" name="PresentChargingPower2" id="PresentChargingPower2" value="<?php echo $obj['ChargingInfo2']['PresentChargingPower'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Energy</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['PresentChargedEnergy'];?> kWh">
- <input type="hidden" name="PresentChargedEnergy2" id="PresentChargedEnergy2" value="<?php echo $obj['ChargingInfo2']['PresentChargedEnergy'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Duration</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['PresentChargedDuration'];?> seconds">
- <input type="hidden" name="PresentChargedDuration2" id="PresentChargedDuration2" value="<?php echo $obj['ChargingInfo2']['PresentChargedDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Remain Charging Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['RemainChargingDuration'];?> seconds">
- <input type="hidden" name="RemainChargingDuration2" id="RemainChargingDuration2" value="<?php echo $obj['ChargingInfo2']['RemainChargingDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Max Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['EvBatteryMaxVoltage'];?> volt">
- <input type="hidden" name="EvBatteryMaxVoltage2" id="EvBatteryMaxVoltage2" value="<?php echo $obj['ChargingInfo2']['EvBatteryMaxVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Target Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['EvBatterytargetVoltage'];?> volt">
- <input type="hidden" name="EvBatterytargetVoltage2" id="EvBatterytargetVoltage2" value="<?php echo $obj['ChargingInfo2']['EvBatterytargetVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Soc</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo2']['EvBatterySoc'];?>">
- <input type="hidden" name="EvBatterySoc2" id="EvBatterySoc2" value="<?php echo $obj['ChargingInfo2']['EvBatterySoc'];?>">
- </div>
- </section>
- </article>
- <?php }?>
- <?php if($obj['ChargingInfo3']){ $idx++;?>
- <!--Charging Information-->
- <article class="envor-sorting-item css">
- <header><?php echo $connectorType3." ".$lang->showWord("charging_information")."(connector".$idx.")"; ?><i class="fa fa-plus"></i></header>
- <section>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>User Id</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['StartUserId'];?>">
- <input type="hidden" name="UserId3" id="UserId3" value="<?php echo $obj['ChargingInfo3']['StartUserId'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Start Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['StartDateTime'];?>">
- <input type="hidden" name="StartDateTime3" id="StartDateTime3" value="<?php echo $obj['ChargingInfo3']['StartDateTime'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Stop Date Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['StopDateTime'];?>">
- <input type="hidden" name="StopDateTime3" id="StopDateTime3" value="<?php echo $obj['ChargingInfo3']['StopDateTime'];?>">
- </div>
- <?php /* <div class="form-group" style="display:<?php echo $am111;?>">
- <label>StartMethod</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['StartMethod'];?>">
- <input type="hidden" name="StartMethod3" id="StartMethod3" value="<?php echo $obj['ChargingInfo3']['StartMethod'];?>">
- </div>*/?>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>System Status</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $SystemStatus3;?>">
- <input type="hidden" name="SystemStatus3" id="SystemStatus3" value="<?php echo $obj['ChargingInfo3']['SystemStatus'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Connector Temperature</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['ConnectorTemp'];?> ℃">
- <input type="hidden" name="ConnectorTemp3" id="ConnectorTemp3" value="<?php echo $obj['ChargingInfo3']['ConnectorTemp'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Present Charging Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['PresentChargingVoltage'];?> volt">
- <input type="hidden" name="PresentChargingVoltage3" id="PresentChargingVoltage3" value="<?php echo $obj['ChargingInfo3']['PresentChargingVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Current</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['PresentChargingCurrent'];?> amp">
- <input type="hidden" name="PresentChargingCurrent3" id="PresentChargingCurrent3" value="<?php echo $obj['ChargingInfo3']['PresentChargingCurrent'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Power</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['PresentChargingPower'];?> kW">
- <input type="hidden" name="PresentChargingPower3" id="PresentChargingPower3" value="<?php echo $obj['ChargingInfo3']['PresentChargingPower'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Energy</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['PresentChargedEnergy'];?> kWh">
- <input type="hidden" name="PresentChargedEnergy3" id="PresentChargedEnergy3" value="<?php echo $obj['ChargingInfo3']['PresentChargedEnergy'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am111;?>">
- <label>Present Charging Duration</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['PresentChargedDuration'];?> seconds">
- <input type="hidden" name="PresentChargedDuration3" id="PresentChargedDuration3" value="<?php echo $obj['ChargingInfo3']['PresentChargedDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>Remain Charging Time</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['RemainChargingDuration'];?> seconds">
- <input type="hidden" name="RemainChargingDuration3" id="RemainChargingDuration3" value="<?php echo $obj['ChargingInfo3']['RemainChargingDuration'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Max Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['EvBatteryMaxVoltage'];?> volt">
- <input type="hidden" name="EvBatteryMaxVoltage3" id="EvBatteryMaxVoltage3" value="<?php echo $obj['ChargingInfo3']['EvBatteryMaxVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Target Voltage</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['EvBatterytargetVoltage'];?> volt">
- <input type="hidden" name="EvBatterytargetVoltage3" id="EvBatterytargetVoltage3" value="<?php echo $obj['ChargingInfo3']['EvBatterytargetVoltage'];?>">
- </div>
- <div class="form-group" style="display:<?php echo $am001;?>">
- <label>EV Battery Soc</label>
- <input type="text" readonly class="form-control" placeholder="<?php echo $obj['ChargingInfo3']['EvBatterySoc'];?>">
- <input type="hidden" name="EvBatterySoc3" id="EvBatterySoc3" value="<?php echo $obj['ChargingInfo3']['EvBatterySoc'];?>">
- </div>
- </section>
- </article>
- <?php }?>
- <article class="envor-sorting-item css">
- <div align="center"><button id="save"><?php echo $lang->showWord("set")?></button></div>
- </article>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- <?php
- include 'foot.php';
- ?>
- <script type="text/JavaScript">
- $(document).ready(function(){
- if(document.getElementById("MaxChargingEnergy").value=="0" || document.getElementById("MaxChargingEnergy").value==""){
- document.getElementById("MaxChargingEnergyText").style.display="block";
- }
- if(document.getElementById("MaxChargingPower").value=="0" || document.getElementById("MaxChargingPower").value==""){
- document.getElementById("MaxChargingPowerText").style.display="block";
- }
- if(document.getElementById("MaxChargingCurrent").value=="0" || document.getElementById("MaxChargingCurrent").value==""){
- document.getElementById("MaxChargingCurrentText").style.display="block";
- }
- if(document.getElementById("MaxChargingDuration").value=="0" || document.getElementById("MaxChargingDuration").value==""){
- document.getElementById("MaxChargingDurationText").style.display="block";
- }
- if(document.getElementById("ModelName").value.substr(8,1) != "0"){
- document.getElementById("AcMaxChargingCurrentDiv").style.display="block";
- if(document.getElementById("AcMaxChargingCurrent").value=="0" || document.getElementById("AcMaxChargingCurrent").value==""){
- document.getElementById("AcMaxChargingCurrentText").style.display="block";
- }
- }
- else{
- document.getElementById("AcMaxChargingCurrentDiv").style.display="none";
- }
- // isBilling_clicked();
- });
- document.getElementById("save").onclick = function() {
- if(formCheck())
- {
- window.location="#loadinghref";
- document.getElementById("loading").style.display="block";
- // 發送 Ajax 查詢請求並處理
- var request = new XMLHttpRequest();
- request.open("POST", "set_charging_action.php");
- // POST 參數須使用 send() 發送
- var data = "MaxChargingEnergy=" + document.getElementById("MaxChargingEnergy").value +
- "&MaxChargingPower=" + document.getElementById("MaxChargingPower").value +
- "&MaxChargingCurrent=" + document.getElementById("MaxChargingCurrent").value+
- "&AcMaxChargingCurrent=" + document.getElementById("AcMaxChargingCurrent").value+
- "&MaxChargingDuration=" + document.getElementById("MaxChargingDuration").value+
- "&PhaseLossPolicy=" + document.getElementById("PhaseLossPolicy").value+
- "&LocalWhiteCard0=" + document.getElementById("LocalWhiteCard0").value+
- "&LocalWhiteCard1=" + document.getElementById("LocalWhiteCard1").value+
- "&LocalWhiteCard2=" + document.getElementById("LocalWhiteCard2").value+
- "&LocalWhiteCard3=" + document.getElementById("LocalWhiteCard3").value+
- "&LocalWhiteCard4=" + document.getElementById("LocalWhiteCard4").value+
- "&LocalWhiteCard5=" + document.getElementById("LocalWhiteCard5").value+
- "&LocalWhiteCard6=" + document.getElementById("LocalWhiteCard6").value+
- "&LocalWhiteCard7=" + document.getElementById("LocalWhiteCard7").value+
- "&LocalWhiteCard8=" + document.getElementById("LocalWhiteCard8").value+
- "&LocalWhiteCard9=" + document.getElementById("LocalWhiteCard9").value;
- // "&isBilling=" + (document.getElementById("isBilling").checked?1:0)+
- // "&Currency=" + document.getElementById("Currency").value+
- // "&Fee0=" + document.getElementById("Fee0").value+
- // "&Fee1=" + document.getElementById("Fee1").value+
- // "&Fee2=" + document.getElementById("Fee2").value+
- // "&Fee3=" + document.getElementById("Fee3").value+
- // "&Fee4=" + document.getElementById("Fee4").value+
- // "&Fee5=" + document.getElementById("Fee5").value+
- // "&Fee6=" + document.getElementById("Fee6").value+
- // "&Fee7=" + document.getElementById("Fee7").value+
- // "&Fee8=" + document.getElementById("Fee8").value+
- // "&Fee9=" + document.getElementById("Fee9").value+
- // "&Fee10=" + document.getElementById("Fee10").value+
- // "&Fee11=" + document.getElementById("Fee11").value+
- // "&Fee12=" + document.getElementById("Fee12").value+
- // "&Fee13=" + document.getElementById("Fee13").value+
- // "&Fee14=" + document.getElementById("Fee14").value+
- // "&Fee15=" + document.getElementById("Fee15").value+
- // "&Fee16=" + document.getElementById("Fee16").value+
- // "&Fee17=" + document.getElementById("Fee17").value+
- // "&Fee18=" + document.getElementById("Fee18").value+
- // "&Fee19=" + document.getElementById("Fee19").value+
- // "&Fee20=" + document.getElementById("Fee20").value+
- // "&Fee21=" + document.getElementById("Fee21").value+
- // "&Fee22=" + document.getElementById("Fee22").value+
- // "&Fee23=" + document.getElementById("Fee23").value;
-
- // POST 請求必須設置表頭在 open() 下面,send() 上面
- request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
- request.send(data);
- request.onreadystatechange = function() {
- // 伺服器請求完成
- if (request.readyState == 4) {
- document.getElementById("loading").style.display="none";
- // 伺服器回應成功
- if (request.status == 200 && JSON.parse(request.responseText).result=="Success") {
- alert("<?php echo $lang->showWord("done")?>");
- location.href="set_charging.php";
- } else {
- alert(JSON.parse(request.responseText).message);
- }
- request = null;
- }
- }
- }
- }
-
- function formCheck()
- {
- var LocalWhiteCard0 = document.getElementById("LocalWhiteCard0").value;
- var LocalWhiteCard1 = document.getElementById("LocalWhiteCard1").value;
- var LocalWhiteCard2 = document.getElementById("LocalWhiteCard2").value;
- var LocalWhiteCard3 = document.getElementById("LocalWhiteCard3").value;
- var LocalWhiteCard4 = document.getElementById("LocalWhiteCard4").value;
- var LocalWhiteCard5 = document.getElementById("LocalWhiteCard5").value;
- var LocalWhiteCard6 = document.getElementById("LocalWhiteCard6").value;
- var LocalWhiteCard7 = document.getElementById("LocalWhiteCard7").value;
- var LocalWhiteCard8 = document.getElementById("LocalWhiteCard8").value;
- var LocalWhiteCard9 = document.getElementById("LocalWhiteCard9").value;
- var RatingCurrent = document.getElementById("RatingCurrent").value;
- var RatingPower = document.getElementById("RatingPower").value;
- var MaxChargingEnergy = document.getElementById("MaxChargingEnergy").value;
- var MaxChargingPower = document.getElementById("MaxChargingPower").value;
- var MaxChargingCurrent = document.getElementById("MaxChargingCurrent").value;
- var AcMaxChargingCurrent = document.getElementById("AcMaxChargingCurrent").value;
- var MaxChargingDuration = document.getElementById("MaxChargingDuration").value;
-
- if(LocalWhiteCard0 != ""){
- if(LocalWhiteCard0.length>32){
- alert("Local White Card0 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard0").focus();
- return false;
- }
- }
- if(LocalWhiteCard1 != ""){
- if(LocalWhiteCard1.length>32){
- alert("Local White Card1 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard1").focus();
- return false;
- }
- }
- if(LocalWhiteCard2 != ""){
- if(LocalWhiteCard2.length>32){
- alert("Local White Card2 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard2").focus();
- return false;
- }
- }
- if(LocalWhiteCard3 != ""){
- if(LocalWhiteCard3.length>32){
- alert("Local White Card3 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard3").focus();
- return false;
- }
- }
- if(LocalWhiteCard4 != ""){
- if(LocalWhiteCard4.length>32){
- alert("Local White Card4 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard4").focus();
- return false;
- }
- }
- if(LocalWhiteCard5 != ""){
- if(LocalWhiteCard5.length>32){
- alert("Local White Card5 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard5").focus();
- return false;
- }
- }
- if(LocalWhiteCard6 != ""){
- if(LocalWhiteCard6.length>32){
- alert("Local White Card6 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard6").focus();
- return false;
- }
- }
- if(LocalWhiteCard7 != ""){
- if(LocalWhiteCard7.length>32){
- alert("Local White Card7 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard7").focus();
- return false;
- }
- }
- if(LocalWhiteCard8 != ""){
- if(LocalWhiteCard8.length>32){
- alert("Local White Card8 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard8").focus();
- return false;
- }
- }
- if(LocalWhiteCard9 != ""){
- if(LocalWhiteCard9.length>32){
- alert("Local White Card9 must be less than 32 bytes!");
- document.getElementById("LocalWhiteCard9").focus();
- return false;
- }
- }
- if(MaxChargingEnergy >65535)
- {
- alert("Max Charging Energy must <= 65535!");
- document.getElementById("MaxChargingEnergy").focus();
- return false;
- }
- if(MaxChargingEnergy < 0)
- {
- alert("Max Charging Energy must >= 0!");
- document.getElementById("MaxChargingEnergy").focus();
- return false;
- }
- if(AcMaxChargingCurrent >65535)
- {
- alert("Ac Max Charging Current must <= 65535!");
- document.getElementById("MaxChargingCurrent").focus();
- return false;
- }
- if(AcMaxChargingCurrent < 0)
- {
- alert("Ac Max Charging Current must >= 0!");
- document.getElementById("MaxChargingCurrent").focus();
- return false;
- }
- if(RatingPower!="" && RatingPower!=0){
- if(MaxChargingPower > RatingPower)
- {
- alert("Max Charging Power must be less than RatingPower("+RatingPower+")!");
- document.getElementById("MaxChargingPower").focus();
- return false;
- }
- }
- else{
- if(MaxChargingPower >65535)
- {
- alert("Max Charging Power must <= 65535!");
- document.getElementById("MaxChargingPower").focus();
- return false;
- }
- }
- if(MaxChargingPower < 0)
- {
- alert("Max Charging Power must >= 0!");
- document.getElementById("MaxChargingPower").focus();
- return false;
- }
- if(RatingCurrent!="" && RatingCurrent!=0){
- if(MaxChargingCurrent > RatingCurrent)
- {
- alert("Max Charging Current must be less than RatingCurrent("+RatingCurrent+")!");
- document.getElementById("MaxChargingCurrent").focus();
- return false;
- }
- }
- else{
- if(MaxChargingCurrent >65535)
- {
- alert("Max Charging Current must <= 65535!");
- document.getElementById("MaxChargingCurrent").focus();
- return false;
- }
- }
- if(AcRatingCurrent!="" && AcRatingCurrent!=0){
- if(AcMaxChargingCurrent > AcRatingCurrent)
- {
- alert("Ac Max Charging Current must be less than Ac Rating Current("+RatingCurrent+")!");
- document.getElementById("AcMaxChargingCurrent").focus();
- return false;
- }
- }
- else{
- if(AcMaxChargingCurrent >65535)
- {
- alert("Ac Max Charging Current must <= 65535!");
- document.getElementById("AcMaxChargingCurrent").focus();
- return false;
- }
- }
- if(MaxChargingCurrent < 0)
- {
- alert("MaxChargingCurrent must >= 0!");
- document.getElementById("MaxChargingCurrent").focus();
- return false;
- }
- if(MaxChargingDuration >65535)
- {
- alert("MaxChargingDuration must <= 65535!");
- document.getElementById("MaxChargingDuration").focus();
- return false;
- }
- if(MaxChargingDuration < 0)
- {
- alert("MaxChargingDuration must >= 0!");
- document.getElementById("MaxChargingDuration").focus();
- return false;
- }
-
- return true;
- }
- function MaxValue_changed(id,id2){
- if(document.getElementById(id).value == "0" || document.getElementById(id).value == ""){
- document.getElementById(id2).style.display="block";
- }
- else{
- document.getElementById(id2).style.display="none";
- }
- }
- function isBilling_clicked(){
- if(document.getElementById("isBilling").checked){
- document.getElementById("CurrencyDiv").style.display="block";
- document.getElementById("FeeDiv").style.display="block";
- }
- else{
- document.getElementById("CurrencyDiv").style.display="none";
- document.getElementById("FeeDiv").style.display="none";
- }
- }
- function isNumberKey(evt)
- {
- var charCode = (evt.which) ? evt.which : event.keyCode
-
- if (charCode > 31 && (charCode < 48 || charCode > 57) && (charCode != 46))
- return false;
-
- return true;
- }
-
- </script>
- </html>
|