From 9aad98ade7f74ec459deadcbe920326df089720f Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Mon, 17 Jun 2013 10:29:23 +0200 Subject: [PATCH] Mandanten-ID in CSV-Import-Script mitgeben 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 | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 scripts/csv-import-from-shell.sh diff --git a/scripts/csv-import-from-shell.sh b/scripts/csv-import-from-shell.sh old mode 100644 new mode 100755 index 277e8fcdc..e8a1991c2 --- a/scripts/csv-import-from-shell.sh +++ b/scripts/csv-import-from-shell.sh @@ -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} } -- 2.20.1