JavaScript

Features ›› Wealth ›› getCustomerStock ›› Sample Code ››
Parent Previous Next

Get Customer Stock


When the "Send" button is clicked, the web page will perform basic validation. Followed by using the given details to call the API with service name "getCustomerStock".

If there are no errors with the information provided, the web page will then proceed to parse a JSON string from "getCustomerStock" into "responseObj"


We will be able to import useful data from these 3 sources, call a function and store the user ID and PIN.






getUserID&getPIN


This code requires data variable from Jsp. Please refer to the hyperlink getUserID&getPIN above.



We will then create a function and a header. The header will contain serviceName, userID and PIN.

Afterwards, we will retrieve and validate all the values that we have so far.



setUserID&setPIN


This code requires data variable from Jsp. Please refer to the hyperlink setUserID&setPIN above.


showErrorModal


This code requires data variable showErrorModal from Jsp. Please refer to the hyperlink showErrorModal above.



Next, we will disable the send button.




We will set a header object as well as a content object.


The header object would contain:


While the content object would contain:


We will then use JSON to convert the headerObj and contentObj into var header and var content respectively.



xmlHttp


This code requires data variable xmlHttp from Jsp. Please refer to the hyperlink xmlHttp above.


ApiURL


This code requires data variable ApiURL from Jsp. Please refer to the hyperlink ApiURL above.



The next step would be to set up HTTP request.

If xmlHttp equals to null (nothing), the web page will display an alert message stating that "Browser does not support HTTP request.".

If xmlHttp does not not equal to null (nothing), the web page will return the data from the URL and header."

The timeout of this request will be 5000s.



xmlHttp


This code requires data variable xmlHttp from Jsp. Please refer to the hyperlink xmlHttp above.


ApiURL


This code requires data variable ApiURL from Jsp. Please refer to the hyperlink ApiURL above.



After finishing the step before, we will next setup the HTTP event handlers.

If globalerrorID = "010041", we would return the OTP Modal.

Else, if the globalerrorID does not = "010000", we would return the error details.




onreadystatechange


This code requires data variable onreadystatechange from Jsp. Please refer to the hyperlink onreadystatechange above.



xmlHttp


This code requires data variable xmlHttp from Jsp. Please refer to the hyperlink xmlHttp above.



showOTPModel


This code requires data variable showOTPModel from Jsp. Please refer to the hyperlink showOTPModel above.



showErrorModal


This code requires data variable showErrorModal from Jsp. Please refer to the hyperlink showErrorModal above.


Get and Display the necessary data.




We will then enable the "Send" button.

In the case of timeout, we will show the error modal: "Timeout invoking API."

Lastly, we will send the HTTP request.



xmlHttp


This code requires data variable xmlHttp from Jsp. Please refer to the hyperlink xmlHttp above.



ontimeout


This code requires data variable ontimeout from Jsp. Please refer to the hyperlink ontimeout above.



showErrorModal


This code requires data variable showErrorModal from Jsp. Please refer to the hyperlink showErrorModal above.



In the case of an error occurring, the button will be disabled.




When the update button is clicked, the OTP Modal will be shown.



setOTP


This code requires data variable setOTP from Jsp. Please refer to the hyperlink setOTP above.



Overview of "Get Customer Stock” function


<h2 class="page-header" style="color:#937851">Get Customer Stock</h2>


<div class="container">

   <div class="col-md-6">

       <div class="row">

           <h3 style="color:#937851">Input</h3>

       </div>

       <form class="form-horizontal well" style="padding-bottom: 0px;">

           <div class="form-group">

               <div class="col-sm-offset-4 col-sm-4">

                   <button id="Send" type="button" class="btn btn-primary">Send</button>

                   <button type="reset" class="btn btn-default">Clear</button>

               </div>

           </div>

           <div class="form-group">

               <label for="userID" class="col-sm-4 control-label">User ID</label>

               <div class="col-sm-4">

                   <input id="userID" type="text" class="form-control"/>

               </div>

           </div>

           <div class="form-group">

               <label for="PIN" class="col-sm-4 control-label">PIN</label>

               <div class="col-sm-4">

                   <input id="PIN" type="password" class="form-control"/>

               </div>

           </div>

           <div class="form-group">

               <label for="symbol" class="col-sm-4 control-label">Symbol</label>

               <div class="col-sm-4">

                   <input id="symbol" type="text" class="form-control"/>

               </div>

           </div>

       </form>

   </div>

   <div class="col-md-6">

       <div class="row">

           <h3 style="color:#937851">Output</h3>

       </div>

       <form class="form-horizontal well" style="padding-bottom: 0px;">

           <div class="form-group">

               <div class="col-sm-offset-4 col-sm-4">

                   <button type="reset" class="btn btn-default">Clear</button>

               </div>

           </div>

           <div class="form-group">

               <label for="symbol2" class="col-sm-4 control-label">Symbol</label>

               <div class="col-sm-4">

                   <input id="symbol2" type="text" class="form-control" disabled/>

               </div>

           </div>

           <div class="form-group">

               <label for="quantity" class="col-sm-4 control-label">Quantity</label>

               <div class="col-sm-4">

                   <input id="quantity" type="text" class="form-control" disabled/>

               </div>

           </div>

           <div class="form-group">

               <label for="price" class="col-sm-4 control-label">Price</label>

               <div class="col-sm-4">

                   <input id="price" type="text" class="form-control" disabled/>

               </div>

           </div>

           <div class="form-group">

               <label for="tradingDate" class="col-sm-4 control-label">Trading Date</label>

               <div class="col-sm-4">

                   <input id="tradingDate" type="text" class="form-control" disabled/>

               </div>

           </div>

           <div class="form-group">

               <label for="customerID" class="col-sm-4 control-label">Customer ID</label>

               <div class="col-sm-4">

                   <input id="customerID" type="text" class="form-control" disabled/>

               </div>

           </div>

       </form>

   </div>

</div>


<!-- javascript libraries

======================================== -->

<script src="assets/js/jquery.min.js"></script>

<script src="assets/js/jquery-ui.min.js"></script>

<script src="assets/js/bootstrap.min.js"></script>


<script type="text/javascript">


   $(document).ready(function () {

       

       // init user credentials

       document.getElementById("userID").value = getUserID();

       document.getElementById("PIN").value = getPIN();


       /*----------------------------------------

        * [Send] button clicked

        */

       

       /*var input = document.getElementById("PIN");

       input.addEventListener("keyup", function(event) {

         if (event.keyCode === 13) {

          event.preventDefault();

          document.getElementById("Send").click();

         }

       });*/

           

       $("#Send").click(function (event) {

           (function() {


               // set service header values

               var userID = document.getElementById("userID").value;

               setUserID(userID);

               var PIN = document.getElementById("PIN").value;

               setPIN(PIN);

               var serviceName = "getCustomerStock";

               

               // get and validate form values

               var symbol = document.getElementById("symbol").value;

               if (symbol === ""){

                   showErrorModal("Symbol cannot be blank.");

                   return;  

               }

               

               // disable Send button

               document.getElementById("Send").disabled = true;


               // set request parameters

               var headerObj = {

                   Header: {

                       serviceName: serviceName,

                       userID: userID,

                       PIN: PIN,

                       OTP: OTP

                   }

               };

               

               var contentObj = {

                   Content: {

                       symbol: symbol,

                   }

               };

                   

               var header = JSON.stringify(headerObj);

               var content = JSON.stringify(contentObj);


               // setup http request

               var xmlHttp = new XMLHttpRequest();

               if (xmlHttp === null){

                   alert("Browser does not support HTTP request.");

                   return;

               }

               xmlHttp.open("POST", getApiURL()+"?Header="+header+"&Content="+content, true);

               xmlHttp.timeout = 5000;


               // setup http event handlers

               xmlHttp.onreadystatechange = function() {

                   if (xmlHttp.readyState === 4 && xmlHttp.status === 200) {

                       responseObj = JSON.parse(xmlHttp.responseText);

                       serviceRespHeader = responseObj.Content.ServiceResponse.ServiceRespHeader;

                       globalErrorID = serviceRespHeader.GlobalErrorID;

                       if (globalErrorID === "010041"){

                           showOTPModal(1);

                           return;

                       }

                       else if (globalErrorID !== "010000"){

                           showErrorModal(serviceRespHeader.ErrorDetails);

                           return;

                       }

                       

                       // get data

                       CustomerStock = responseObj.Content.ServiceResponse.Depository;

                       symbol2 = CustomerStock.symbol;

                       quantity = CustomerStock.quantity;

                       price = CustomerStock.price;

                       tradingDate = CustomerStock.tradingDate;

                       customerID = CustomerStock.customerID;


                       // display data

                       document.getElementById("symbol2").value = getStockSymbolName(symbol2);

                       document.getElementById("quantity").value = quantity;

                       document.getElementById("price").value = price;

                       document.getElementById("tradingDate").value = tradingDate;

                       document.getElementById("customerID").value = customerID;

                       

                       // enable Send button

                       document.getElementById("Send").disabled = false;

                   }

               };

               xmlHttp.ontimeout = function (e) {

                   showErrorModal("Timeout invoking API.");

                   return;

               };                                        


               // send the http request

               xmlHttp.send();


           })();

       });


       /* ----------------------------------------

        * error model close button clicked

        */

       $("#CloseError").click(function (event) {

           (function() {

               document.getElementById("Send").disabled = false;

           })();

       });


       /* ----------------------------------------

        * OTP model update button clicked

        */

       $("#UpdateOTP").click(function (event) {

           (function() {

               var OTP = document.getElementById("OTP").value;

               setOTP(OTP, function() { // ensure OTP set before clicking Send

                   document.getElementById("Send").disabled = false;

                   document.getElementById("Send").click();

               });

           })();

       });

       

       


   });


</script>


Get Customer Stock

Created with the Personal Edition of HelpNDoc: Easily create CHM Help documents