From: Thomas Heck Date: Wed, 29 Jan 2014 12:23:51 +0000 (+0100) Subject: Neues Konto: keine Abfrage wegen geƤnderten Kontodaten stellen X-Git-Tag: release-3.1.0beta1~15^2 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e07203821fb6db4d54d0396a0d14d1dbef94dbff;p=kivitendo-erp.git Neues Konto: keine Abfrage wegen geƤnderten Kontodaten stellen fixt #2319 --- diff --git a/templates/webpages/am/edit_accounts.html b/templates/webpages/am/edit_accounts.html index 297b2b8a4..1e5b03ce9 100644 --- a/templates/webpages/am/edit_accounts.html +++ b/templates/webpages/am/edit_accounts.html @@ -276,16 +276,18 @@ $(function() {
- + 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; + } + +[% END %]