

function recalculateTotalPrice() {
  if($('quantity').value == "") {
    return;
  }

  if(isNaN($('quantity').value) || Math.floor($('quantity').value) < 1) {
    $('quantity').value = 1;
  }
  
  $('quantity').value = Math.floor($('quantity').value);
  $('material_price').value = Math.floor($('material_price').value);
  
  $('order_total_price').set('text', ($('quantity').value * $('fiyat').value) + ($('quantity').value * $('material_price').value) + 1*$('delivery_price').value);


}
