jQuery(document).ready(function($) { const VAT = 0.17; // מע"מ $('#calculatorForm').on('submit', function(e) { e.preventDefault(); const propertyPrice = parseFloat($('#propertyPrice').val()); const brokeragePercent = parseFloat($('#brokeragePercent').val()); const lawyerPercent = parseFloat($('#lawyerPercent').val()); const investorGuidance = parseFloat($('#investorGuidance').val()); const renovationType = $('#renovationType').val(); const appraisalType = $('#appraisalType').val(); const appraisalCost = parseFloat($('#appraisalCost').val()) || 0; const mortgageConsultant = parseFloat($('#mortgageConsultant').val()); const miscExpenses = parseFloat($('#miscExpenses').val()); // חישוב עלויות const brokerageFee = (propertyPrice * (brokeragePercent/100)) * (1 + VAT); const lawyerFee = (propertyPrice * (lawyerPercent/100)) * (1 + VAT); const investorGuidanceFee = investorGuidance * (1 + VAT); const mortgageConsultantFee = mortgageConsultant * (1 + VAT); let renovationCost = 0; if (renovationType === 'basic') { renovationCost = 10000; } else if (renovationType === 'full') { // כאן יש להוסיף לוגיקה לחישוב שיפוץ מלא // אפשר להוסיף חלון מודאל או טופס נוסף } const totalCost = propertyPrice + brokerageFee + lawyerFee + investorGuidanceFee + renovationCost + appraisalCost + mortgageConsultantFee + miscExpenses; // הצגת התוצאות let breakdown = `
מחיר דירה: ₪${propertyPrice.toLocaleString()}
עמלת תיווך: ₪${brokerageFee.toLocaleString()}
שכר טרחת עו"ד: ₪${lawyerFee.toLocaleString()}
ליווי משקיעים: ₪${investorGuidanceFee.toLocaleString()}
עלות שיפוץ: ₪${renovationCost.toLocaleString()}
שמאות: ₪${appraisalCost.toLocaleString()}
יועץ משכנתאות: ₪${mortgageConsultantFee.toLocaleString()}
הוצאות שונות: ₪${miscExpenses.toLocaleString()}
`; $('#costBreakdown').html(breakdown); $('#totalCost').html(`