St Stefan ob Stainz Import

This commit is contained in:
Frank Schubert
2023-05-16 13:00:19 +02:00
parent d6e2f71c9f
commit 9a74011139
12 changed files with 2125 additions and 3 deletions
@@ -8,6 +8,6 @@ IVT ID;Typ;Produkt;Standardpreis;Anzahl Kunden;Kunde
$types = array('-----', 'xDSL', 'FTTH', 'FTTB', 'DOCSIS', 'Funk', 'Telefon', 'Webhosting', 'Carrier', 'Housing', 'TV');
foreach($products as $product_id => $product):
?>
<?=$product_id?>;"<?=$types[$product['product']->typ]?>";"<?=$product['product']->name?>";<?=$product['product']->price?>;<?=$product['count']?>;<?=($product['customer']) ? $product['customer'] : ""?>;
<?=$product_id?>;"<?=$types[$product['product']->typ]?>";"<?=$product['product']->name?>";<?=str_replace('.',',',$product['product']->price)?>;<?=$product['count']?>;<?=($product['customer']) ? $product['customer'] : ""?>;
<?php
endforeach;