Neues Konto: keine Abfrage wegen geƤnderten Kontodaten stellen
authorThomas Heck <theck@linet-services.de>
Wed, 29 Jan 2014 12:23:51 +0000 (13:23 +0100)
committerThomas Heck <theck@linet-services.de>
Wed, 29 Jan 2014 12:23:51 +0000 (13:23 +0100)
fixt #2319

templates/webpages/am/edit_accounts.html

index 297b2b8..1e5b03c 100644 (file)
@@ -276,16 +276,18 @@ $(function() {
 </fieldset>
 <hr size="3" noshade>
 
-<script type="text/javascript">
-function callback_save() {
-  var prev_desc = "[% description | html %]";
-  var prev_accno = "[% accno | html %]";
-  var cur_desc = $("#description").val();
-  var cur_accno = $("#accno").val();
+[% IF ( id ) %]
+  <script type="text/javascript">
+  function callback_save() {
+    var prev_desc = "[% description | html %]";
+    var prev_accno = "[% accno | html %]";
+    var cur_desc = $("#description").val();
+    var cur_accno = $("#accno").val();
 
-  if ( prev_desc != cur_desc || prev_accno != cur_accno )
-    return confirm(kivi.t8("Do you want to set the account number \"#1\" to \"#2\" and the name \"#3\" to \"#4\"?", [prev_accno, cur_accno, prev_desc, cur_desc]));
-  else
-    return true;
-}
-</script>
+    if ( prev_desc != cur_desc || prev_accno != cur_accno )
+      return confirm(kivi.t8("Do you want to set the account number \"#1\" to \"#2\" and the name \"#3\" to \"#4\"?", [prev_accno, cur_accno, prev_desc, cur_desc]));
+    else
+      return true;
+  }
+  </script>
+[% END %]