rework investment model

This commit is contained in:
Tobias Brunner 2025-07-22 09:16:40 +02:00
parent 22bea2c53d
commit 6f6c80480f
Signed by: tobru
SSH key fingerprint: SHA256:kOXg1R6c11XW3/Pt9dbLdQvOJGFAy+B2K6v6PtRWBGQ
6 changed files with 633 additions and 141 deletions

View file

@ -415,10 +415,10 @@ class ROICalculatorApp {
if (selectedModel === 'loan') {
if (loanSection) loanSection.style.display = 'block';
if (modelDescription) modelDescription.textContent = 'Loan Model: Guaranteed returns with fixed monthly payments';
if (modelDescription) modelDescription.textContent = 'Loan Model: 3-7% guaranteed annual returns with predictable monthly payments and low risk';
} else {
if (loanSection) loanSection.style.display = 'none';
if (modelDescription) modelDescription.textContent = 'Direct Investment: Higher potential returns based on your sales performance';
if (modelDescription) modelDescription.textContent = 'Direct Investment: Performance-based returns with progressive scaling, bonuses up to 15%, and dynamic grace periods';
}
this.updateCalculations();