function calcS(){ numitems=document.getElementById('tbl_sitems').rows.length-1; itemsqty = document.getElementsByName('itemsqty[]'); itemstax = document.getElementsByName('itemstax[]'); itemstotaltax = document.getElementsByName('itemstotaltax[]'); itemsuprice = document.getElementsByName('itemsuprice[]'); itemsprice = document.getElementsByName('itemsprice[]'); itemstotalprice = document.getElementsByName('itemstotalprice[]'); var tax = 0; var total = 0; for(i=0;i<numitems;i++){ iqty = parseInt(itemsqty[i].value); //Items quantity tip = iqty*toCurrency(parseFloat(itemsprice[i].value)); //Calculate total item price titax = iqty*toCurrency(parseFloat(itemsuprice[i].value))*toCurrency(parseFloat(itemstax[i].value)/100); //Calculate total item tax tax += titax; total += tip; itemstotaltax[i].value = toCurrency(titax); itemstotalprice[i].value = toCurrency(tip); } total = toCurrency(total); tax = toCurrency(tax); var subtotal = toCurrency(total-tax); document.getElementById('vtax').value=tax; document.getElementById('vsubtotal').value=subtotal; document.getElementById('vtotal').value=total; document.getElementById('findcustomertext').value=''; document.getElementById('findcustomertext').focus(); document.getElementById('num').value="0"; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง