Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.117.11.13
function enableBillDetails() {
$('#page_main_div').load('../html_modules/bill_details.html', function () {
document.getElementById('display_module_name').innerHTML =
'Download Bill Details';
document.getElementById('module_name_for_save').value =
'Download Bill Details';
getDefaultHeadFooterLinks('Download Bill Details');
});
}
function generate_bill_details() {
var nature_of_work = $('#nature_of_work').val();
var from_orderid = $('#from_orderid').val();
var to_orderid = $('#to_orderid').val();
if (nature_of_work == '') {
alert('please select nature_of_work..!');
return;
} else if (from_orderid == '') {
alert('please Enter OrderId..!');
return;
} else if (to_orderid == '') {
alert('please Enter OrderId..!');
return;
} else {
window.location.href =
$host_url +
'download_bill_details&nature_of_work=' +
nature_of_work +
'&from_orderid=' +
from_orderid +
'&to_orderid=' +
to_orderid;
}
}
|