var $cust = $("#SCCUST").val();
$.ajax({
type: 'get',
async : false,
timeout: 30000,
dataType: 'text',
url:'IPAL03A.PGM',
data:{port:"TST", SCCUST:$cust, totpra:totprice.toString(), tottxa:
success: function($ipal){
console.log('success: ' + $ipal);
$("#waitmsg").hide();
$("#ipal").empty();
$("#ipal").append($ipal);
$("#ipal").append($ipal);
$("#ipal").dialog({
modal: true,
height: 650,
width: 650,
buttons: {
Close: function() {
$( this ).dialog( "close" );
}
}
});
}