Neuer Angebots-/Auftragscontroller: Sprach-Drop-Down aus Print-Optionen in Hauptbeleg...
[kivitendo-erp.git] / js / client_js.js
index fecbcbc..9fc14b6 100644 (file)
@@ -44,8 +44,10 @@ ns.eval_json_result = function(data) {
       $('#flash_' + category + '_detail').empty();
     });
   }
-  if ((data.js || '') != '')
+  if ((data.js || '') !== '')
+    // jshint -W061
     eval(data.js);
+    // jshint +W061
 
   if (data.eval_actions)
     $(data.eval_actions).each(function(idx, action) {
@@ -149,6 +151,7 @@ ns.eval_json_result = function(data) {
 
       // ## other stuff ##
       else if (action[0] == 'redirect_to')          window.location.href = action[1];
+      else if (action[0] == 'save_file')            kivi.save_file(action[1], action[2], action[3], action[4]);
       else if (action[0] == 'flash')                kivi.display_flash(action[1], action[2]);
       else if (action[0] == 'flash_detail')         kivi.display_flash_detail(action[1], action[2]);
       else if (action[0] == 'clear_flash')          kivi.clear_flash(action[1], action[2]);