diverse Doku Aktuallisierungen
[kivitendo-erp.git] / peppershop / ArtikelShopToErp.php
1 <?php
2
3 $debug = False;
4
5 $api = php_sapi_name();
6 if ( $api != "cli" ) {
7     echo "<html>\n<head>\n<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>\n</head>\n<body>\n";
8     @apache_setenv('no-gzip', 1);
9     @ini_set('zlib.output_compression', 0);
10     @ini_set('implicit_flush', 1);
11     $shopnr = $_GET["Shop"];
12     $nofiles = ( $_GET["nofiles"] == '1' )?true:false;
13 } else {
14     $p = array('shopnr','nofiles');
15     if ( $argc > 1 ) {
16         for( $i=1; $i<count($argv); $i++)  {
17                 $tmp = explode("=",trim($argv[$i]));
18                 if ( count($tmp) < 2 ) {
19                     echo "Falscher Aufruf: php ArtikelErpToShop.php shopnr=1 [nofiles=1]\n";
20                     exit (-1);
21                 };
22                 if ( ! in_array(strtolower($tmp[0]),$p) ) {
23                     echo "Falscher Aufruf: php ArtikelErpToShop.php shopnr=1 [nofiles=1]\n";
24                     exit (-1);
25                 };
26                 ${$tmp[0]} = trim($tmp[1]);
27         }
28     } else {
29         $shopnr=false;
30         $nofiles=false;
31     }
32 }
33
34 include_once("conf$shopnr.php");
35 include_once("error.php");
36 //Fehlerinstanz
37 $err = new error($api);
38
39 include_once("dblib.php");
40 include_once("pepper.php");
41 include_once("erplib.php");
42
43
44
45 //ERP-Instanz
46 $erpdb = new mydb($ERPhost,$ERPdbname,$ERPuser,$ERPpass,$ERPport,'pgsql',$err,$debug);
47 if ($erpdb->db->connected_database_name == $ERPdbname) {
48     $erp = new erp($erpdb,$err,$divStd,$divVerm,$auftrnr,$kdnum,$preA,$preK,$invbrne,$mwstS,$OEinsPart,$lager,$pricegroup,$ERPusrID);
49 } else {
50     $err->out('Keine Verbindung zur ERP',true);
51     exit();
52 }
53
54 //Shop-Instanz
55 $shopdb = new mydb($SHOPhost,$SHOPdbname,$SHOPuser,$SHOPpass,$SHOPport,'mysql',$err,$debug);
56 if ($shopdb->db->connected_database_name == $SHOPdbname) {
57      $shop = new pepper($shopdb,$err,$SHOPdbname,$divStd,$divVerm,$minder,$nachn,$versandS,$versandV,$paypal,$treuhand,$mwstLX,$mwstS,$variantnr);
58 } else {
59     $err->out('Keine Verbindung zum Shop',true);
60     exit();
61 }
62
63 $artikel = $shop->getAllArtikel();
64 $cnt = 0;
65 $errors = 0;
66 //Artikel die mehreren Warengruppen zugeordnet sind, werden nur einmal importiert.
67 //Es wird dann auch nur die erste Warengruppe angelegt.
68 if ( $api != 'cli' ) ob_start();
69
70 $err->out("Artikelimport von Shop $shopnr",true);
71
72 if ($artikel) foreach ($artikel as $row) {
73      $rc = $erp->chkPartnumber($row,true);
74      if ($rc) { 
75         $cnt++;
76      } else { 
77         $err->out('Fehler: '.$row['partnumber'],true);
78         $errors++;
79      }
80 }
81 $err->out('',true);
82 $err->out("$cnt Artikel geprüft bzw. übertragen, $errors Artikel nicht",true);
83 if ( $api != "cli" ) {
84     echo "</body>\n</html>\n";
85 }
86 ?>