Subversion Repositories SmartDukaan

Rev

Rev 1254 | Rev 1635 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1254 Rev 1317
Line 995... Line 995...
995
}
995
}
996
 
996
 
997
/** 
997
/** 
998
	Show Shipment details on click of AWBNo. link
998
	Show Shipment details on click of AWBNo. link
999
*/
999
*/
1000
function showShipmentDetails(value, providerName){
1000
function showShipmentDetails(value, providerName)	{
1001
	jQuery.ajax({
1001
	jQuery.ajax({
1002
          type: "GET",
1002
		type: "GET",
1003
          url: "/" + providerName.toLowerCase() + "-updates/" + value,
1003
		url: "/" + providerName.toLowerCase() + "-updates/" + value,
1004
          success: function(msg){
1004
		success: function(msg)	{
1005
    	       $("#orderShippingStatus").html(msg);
1005
			$("#orderShippingStatus").html(msg);
1006
          }
1006
			$("#shipmentDetails").show();
1007
     	});
1007
			$("#shipmentDetails .awbNo").text(value);
1008
 
1008
 
1009
	$("#shipmentDetails").show();
1009
			scrollWindow('shipmentDetails', 2000);
1010
	$("#shipmentDetails .awbNo").text(value);
-
 
1011
	
1010
		}
1012
	scrollWindow('shipmentDetails', 2000);
1011
	});
1013
}
1012
}
1014
 
1013
 
1015
/** 
1014
/** 
1016
	Close Shipment details on click of close button
1015
	Close Shipment details on click of close button
1017
*/
1016
*/