Mandanten-ID in CSV-Import-Script mitgeben
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 17 Jun 2013 08:29:23 +0000 (10:29 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 17 Jun 2013 08:29:23 +0000 (10:29 +0200)
Das Script funktioniert aufgrund der Umstellung auf Import im
Hintergrund momentan so oder so nicht, aber hiermit klappt zumindest
die Authentifizierung wieder.

scripts/csv-import-from-shell.sh [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 277e8fc..e8a1991
@@ -14,6 +14,7 @@
 # ---- Logindaten und URL anpassen: ----
 login=MyLxOfficeUserName
 password=MySecretPassword
+client_id=ClientDatabaseID
 url='https://localhost/kivitendo-erp/controller.pl'
 
 function fail {
@@ -133,6 +134,7 @@ function do_curl {
     -F 'settings.shoparticle_if_missing=0' \
     -F "{AUTH}login=${login}" \
     -F "{AUTH}password=${password}" \
+    -F "{AUTH}client_id=${client_id}" \
     -F "file=@${file}" \
     ${url}
 }