Display links to Shipper’s Tracking page
We can have an additional, cool feature that allows the online customers track the status of their shipments from the Order Status page in iStore. What this means is that we can provide a link on the Order Status page, that would take the customer directly to the Shipper’s tracking page. For eg. the shipment is being handled by FedEx and, currently, there is no provision in iStore to provide this information.
Here is the snippet of the code that can be used in
ibeCOtdShpDtl.jsp
along with the necessary changes that will be required to be made using AK Developer responsibility
if (ship_code.trim().substring(0,3).equals(“FED”) ) {
%>
<%=sei_waybill%> <%
<%
}
if (ship_code.trim().substring(0,3).equals(“UPS”) ) {
%>
}
There are no comments yet.