Fluxpunkt Active Directory Synchronisation
Installierte
Benutzeranzahl
Kauf *
UVP netto

Miete *
mtl / netto

Empfohlen für
1 - 20199 €
21 - 40399 €
41 - 80799 €
81 - 1501.299 €
151 - 2502.165 €
> 2502.945 €
<sup>* Die Benutzeranzahl entspricht der in der STARFACE installierten Anzahl an Benutzerlizenzen (PBX Userlizenz oder STARFACE User Light Lizenz und in Serverlizenz enthaltene Benutzerlizenz(en)). Active Directory Synchronisation prüft die in der STARFACE installierten Benutzerlizenzen – deren Anzahl muß kleiner oder gleich der maximalen Benutzeranzahl der Modullizenz sein. Modullizenzen lassen sich in Bezug auf die Benutzeranzahl nicht kombinieren.</sup>


Sie sind STARFACE Partner? Bitte lesen Sie unseren FAQ-Eintrag zum Bestellprozess und Einkaufskonditionen .

<script>
$(document).ready(function() {
   // fix dropdown width
   var dropdown = $('select[name="Mindestlaufzeit"]');
   dropdown.parents('div.dropdown-list').css('width','auto');
   // get purchase pricing
   var priceArr = dropdown.parents('table').find('tbody tr td:nth-child(2)').map(function(){
		// match extracts the first price (in case there are multiple prices)
		var p = parseFloat($(this).text().match(/^([\d\.,]*\s€)/)[0].replace(/[€\.\s]/g,'').trim());
		console.log("Base Price: " + p);
		return p;
   }).get();
   dropdown.change(
		function() {
			let min_duration = $(this).val();
			let index = dropdown.prop('selectedIndex');
			let tds = $(this).parents('table').find('tbody tr td:nth-child(3)');
			tds.each(
				function(tdIndex) {
					let purchasePrice = priceArr[tdIndex];
					let price = priceArr[tdIndex] / (parseInt(min_duration, 10));
					//let price = purchasePrice / ((parseInt(min_duration, 10)/1.75) + ((16 + index) - Math.sqrt(min_duration)));
					if (price <= 7) { price = 7; };
					let priceTag = Number(price)
					$(this).text(priceTag.toFixed(2).replace('.',',') + " €");
				}
			);
		}
   );
   dropdown.prop('selectedIndex', 2);
   dropdown.change(); // calculate on load
});
</script>