add core revenue to model and allow to tweak params
This commit is contained in:
parent
a07788cb74
commit
491dbacda4
7 changed files with 476 additions and 118 deletions
|
|
@ -198,6 +198,18 @@ class ROICalculatorApp {
|
|||
}
|
||||
}
|
||||
|
||||
updateCoreServiceRevenue(value) {
|
||||
try {
|
||||
const element = document.getElementById('core-service-revenue');
|
||||
if (element) {
|
||||
element.value = value;
|
||||
this.updateCalculations();
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error updating core service revenue:', error);
|
||||
}
|
||||
}
|
||||
|
||||
updateScenarioChurn(scenarioKey, churnRate) {
|
||||
try {
|
||||
if (this.calculator && this.calculator.scenarios[scenarioKey]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue