Compare commits
2 commits
dbc272853e
...
129c777afc
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
129c777afc | ||
|
|
44ffd0c0cd |
2 changed files with 8 additions and 8 deletions
|
|
@ -74,16 +74,16 @@ bestellformular = true
|
||||||
<h5>Welche Erweiterungen möchten Sie hinzubuchen?</h5><br>
|
<h5>Welche Erweiterungen möchten Sie hinzubuchen?</h5><br>
|
||||||
<div id="checkbox-group">
|
<div id="checkbox-group">
|
||||||
<input type="checkbox" id="zusatzmodul-pop2" name="zusatzmodul-pop2" value="Ja">
|
<input type="checkbox" id="zusatzmodul-pop2" name="zusatzmodul-pop2" value="Ja">
|
||||||
<label for="zusatzmodul-pop2">Bereitstellung, einmalig 438.00 CHF, jährliche Lizenzkosten 42.00 CHF</label>
|
<label for="zusatzmodul-pop2">Zusatzmodul POP2: Bereitstellung, einmalig 438.00 CHF; Jährliche Lizenzkosten 42.00 CHF</label>
|
||||||
<br>
|
<br>
|
||||||
<input type="checkbox" id="zusatzmodul-materialverwaltung" name="zusatzmodul-materialverwaltung" value="Ja">
|
<input type="checkbox" id="zusatzmodul-materialverwaltung" name="zusatzmodul-materialverwaltung" value="Ja">
|
||||||
<label for="zusatzmodul-materialverwaltung">Zusatzmodul Material - Bereitstellung, einmalig 342.00 CHF, Jährliche Lizenzkosten 138.00 CHF</label>
|
<label for="zusatzmodul-materialverwaltung">Zusatzmodul Material: Bereitstellung, einmalig 342.00 CHF; Jährliche Lizenzkosten 138.00 CHF</label>
|
||||||
<br>
|
<br>
|
||||||
<input type="checkbox" id="zusatzmodul-qr-code" name="zusatzmodul-qr-code" value="Ja">
|
<input type="checkbox" id="zusatzmodul-qr-code" name="zusatzmodul-qr-code" value="Ja">
|
||||||
<label for="zusatzmodul-qr-code">Zusatzmodul QR-Code für 36.00 CHF jährlich, Ausschaltgebühr einmalig pro Instanz 50.00 CHF</label>
|
<label for="zusatzmodul-qr-code">Zusatzmodul QR-Code: Bereitstellung, einmalig pro Instanz 50.00 CHF; Jährliche Lizenzkosten 36.00 CHF</label>
|
||||||
<br>
|
<br>
|
||||||
<input type="checkbox" id="zusatzmodul-perigon" name="zusatzmodul-perigon" value="Ja">
|
<input type="checkbox" id="zusatzmodul-perigon" name="zusatzmodul-perigon" value="Ja">
|
||||||
<label for="zusatzmodul-perigon">Zusatzmodul Perigon, Ausschaltgebühr einmalig 50.00 CHF</label>
|
<label for="zusatzmodul-perigon">Zusatzmodul Perigon: Bereitstellung, einmalig 50.00 CHF</label>
|
||||||
</div>
|
</div>
|
||||||
<div><br><br>
|
<div><br><br>
|
||||||
<center class="w-full">
|
<center class="w-full">
|
||||||
|
|
|
||||||
|
|
@ -171,15 +171,15 @@ function constructMessage()
|
||||||
$zusatzmodulQrCode = filter_input(INPUT_POST, 'zusatzmodul-qr-code');
|
$zusatzmodulQrCode = filter_input(INPUT_POST, 'zusatzmodul-qr-code');
|
||||||
if (isset($zusatzmodulQrCode))
|
if (isset($zusatzmodulQrCode))
|
||||||
{
|
{
|
||||||
$message .= ( $lang == "FR" ? "Module complémentaire code QR pour 36.00 CHF par an, frais de désactivation uniques par instance 50.00 CHF: "
|
$message .= ( $lang == "FR" ? "Module complémentaire code QR pour 36.00 CHF par an, frais unique de mise en service 50.00 CHF"
|
||||||
: "Zusatzmodul QR-Code - monatliche Gebühr 3.00 CHF; Bereitstellung, einmalig pro Instanz / Webserver 50.00 CHF");
|
: "Zusatzmodul QR-Code: Jährliche Lizenzkosten 36.00 CHF; Bereitstellung, einmalig pro Instanz 50.00 CHF");
|
||||||
$message .= "Zusatzmodul QR-Code" . "\n";
|
$message .= "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
$zusatzmodulPerigon = filter_input(INPUT_POST, 'zusatzmodul-perigon');
|
$zusatzmodulPerigon = filter_input(INPUT_POST, 'zusatzmodul-perigon');
|
||||||
if (isset($zusatzmodulPerigon))
|
if (isset($zusatzmodulPerigon))
|
||||||
{
|
{
|
||||||
$message .= "Zusatzmodul Perigon, Ausschaltgebühr einmalig 50.00 CHF" . "\n";
|
$message .= "Zusatzmodul Perigon, Bereitstellung, einmalig 50.00 CHF" . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
$anmerkung = filter_input(INPUT_POST, 'anmerkung');
|
$anmerkung = filter_input(INPUT_POST, 'anmerkung');
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue