From: Moritz Bunkus Date: Mon, 17 Jun 2013 08:29:23 +0000 (+0200) Subject: Mandanten-ID in CSV-Import-Script mitgeben X-Git-Tag: release-3.1.0beta1~324 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=9aad98ade7f74ec459deadcbe920326df089720f;p=kivitendo-erp.git 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. --- 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} }