| 1 |
lars |
1 |
<?
|
|
|
2 |
require_once "../Online-Shop/connect2.php";
|
|
|
3 |
|
|
|
4 |
$statusFeld = "lieferscheinStatus";
|
|
|
5 |
$exportedFeld = "exported_lieferschein";
|
|
|
6 |
|
|
|
7 |
require_once "includes/bestellungen/system/artikelDatabase.php";
|
|
|
8 |
require_once "includes/lexware2006/getCountryISOcode.php";
|
|
|
9 |
|
|
|
10 |
$filename = "lieferscheinexport_lexware2006.xml"; // Dateiname der ausgegeben werden soll
|
|
|
11 |
|
|
|
12 |
header("Content-Type: application/xml");
|
|
|
13 |
header("Content-Disposition: attachment; filename=$filename");
|
|
|
14 |
|
|
|
15 |
echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n";
|
|
|
16 |
require_once "includes/lexware2006/lieferschein_list.php";
|
|
|
17 |
?>
|