Compare commits

..

No commits in common. "main" and "main" have entirely different histories.
main ... main

1 changed files with 15 additions and 29 deletions

View File

@ -49,15 +49,6 @@
text-align: center;
margin: 1ex auto 2ex auto;
}
#center_footer {
display: flex;
align-items: center;
justify-content: center;
}
.footnotes {
margin-top: 1em;
font-size: 0.9em;
}
</style>
</head>
<body>
@ -88,24 +79,24 @@
<input readonly="readonly" type="number" step="0.01" id="us" value="0.00"/>&thinsp;&euro;
</div>
<div>
<label for="n">Ne<u>t</u>to</label>
<input accesskey="t" type="number" step="0.01" id="n" value="0.00"/>&thinsp;&euro;
<label for="n">N<u>e</u>tto</label>
<input accesskey="e" type="number" step="0.01" id="n" value="0.00"/>&thinsp;&euro;
</div>
<div>
<label for="ec">Entropie-Tarif&#x202F;&sup1;</label><!-- ggf. k&uuml;nftig Grundlage wie Handbuch/Dokumentation verlinken -->
<label for="ec">Entropie-Tarif</label><!-- ggf. k&uuml;nftig Grundlage wie Handbuch/Dokumentation verlinken -->
<select id="ec">
<option value="l" accesskey="l" name="low">Umsatz &leq; 15.000&nbsp;&euro;</option><!-- low: <=1 TEUR -->
<option value="h" accesskey="h" name="high">Umsatz &gt; 15.000&nbsp;&euro;</option><!-- high: >1 TEUR -->
<option value="l" accesskey="l" name="low">Umsatz &leq; 1.000&nbsp;&euro;</option><!-- low: <=1 TEUR -->
<option value="h" accesskey="h" name="high">Umsatz &gt; 1.000&nbsp;&euro;</option><!-- high: >1 TEUR -->
<option value="c" accesskey="c" name="custom">nach&nbsp;Vereinbarung</option><!-- custom: separate agreement -->
</select>
</div>
<div>
<label for="z">Entropieumlagesatz</label>
<input type="number" step="0.01" id="z" value="20.00"/>&thinsp;%
<input type="number" step="0.01" id="z" value="23.00"/>&thinsp;%
</div>
<div>
<label for="eu">Entropieumlage</label>
<input readonly="readonly" type="number" step="0.01" id="eu" value="20.00"/>&thinsp;&euro;
<input readonly="readonly" type="number" step="0.01" id="eu" value="23.00"/>&thinsp;&euro;
</div>
<div>
<label for="k">K<u>o</u>Le</label>
@ -115,9 +106,7 @@
<section>
<button accesskey="r" id="b" type="button">Be<u>r</u>echnen</button>
</section>
<div class="footnotes">
&sup1;&#x202F;Es wird der monatliche Umsatz zugrunde gelegt.
</div>
</fieldset>
<script>
@ -161,15 +150,15 @@
var selInd=this.selectedIndex;
console.log('Entropie-Tarif: '+selInd+'('+z.disabled+': '+z.value+')');
switch(selInd){
case 0: //low: <15.000 EUR revenue
//20.0 %
z.value='20.00';
case 0: //low: <1.000 EUR revenue
//23.0 %
z.value='23.00';
z.disabled=true;
break;;
case 1: //high: >15.000 EUR revenue
//15 %
case 1: //high: >1.000 EUR revenue
//11.5 %
z.disabled=true;
z.value='15.0';
z.value='11.50';
break;;
case 2: //custom: according toseparate agreement
z.disabled=false;
@ -179,14 +168,11 @@
});
// set entropy tax to standard value
c.selectedIndex=0;
z.value='20.00';
z.value='23.00';
z.disabled=true;
// calc
s.click();
</script>
<div id="center_footer">
<p>Der Quellcode befindet sich unter <a href="https://git.wtf-eg.de/wtf-eg/simplekolecalc">https://git.wtf-eg.de/wtf-eg/simplekolecalc</a>. </p>
</div>
</div>
</body>
</html>