[%- USE T8 %]
[%- USE L %]
-[% USE HTML %]<script type="text/javascript" src="js/FormManager.js" >
+[% USE HTML %]
+<h1>[% title %]</h1>
+
+<script type="text/javascript" src="js/FormManager.js" >
/****************************************************
* Form Dependency Manager- By Twey- http://www.twey.co.uk
* Visit Dynamic Drive for this script and more: http://www.dynamicdrive.com
<input type="hidden" name="fxgain_accno_id" value="[% HTML.escape(fxgain_accno_id) %]">
<input type="hidden" name="fxloss_accno_id" value="[% HTML.escape(fxloss_accno_id) %]">
-<table border="0" width="100%">
- <tr>
- <th class="listtop">[% title %]</th>
- </tr>
-</table>
-
<fieldset>
<legend>
[% 'Main Preferences' | $T8 %]
<label>
[% 'Account Number' | $T8 %]
</label></td>
- <td><input name="accno" size="20" value="[% HTML.escape(accno) %]"></td>
+ <td><input id="accno" name="accno" size="20" value="[% HTML.escape(accno) %]"></td>
</tr>
<tr>
<td>
[% 'Description' | $T8 %]
</label>
</td>
- <td><input name="description" size="40" value="[% HTML.escape(description) %]"></td>
+ <td><input id="description" name="description" size="40" value="[% HTML.escape(description) %]"></td>
</tr>
<tr>
<td>
<th align="left">[% 'EUER' | $T8 %]</th>
<td colspan="3"><select name="pos_eur">[% select_eur %]</select></td>
</tr>
+ [% IF use_case == 0 %]
<tr>
<th align="left">[% 'BWA' | $T8 %]</th>
<td colspan="3"><select name="pos_bwa">[% select_bwa %]</select></td>
<th align="left">[% 'Datevautomatik' | $T8 %]</th>
<td colspan="3"><input name="datevautomatik" type="checkbox" class="checkbox" value="T" [% IF datevautomatik %]checked [% END %]>[% 'If checked the taxkey will not be exported in the DATEV Export, but only IF chart taxkeys differ from general ledger taxkeys' | $T8 %] </td>
</tr>
+ [% END %]
<tr>
<th align="left">[% 'Folgekonto' | $T8 %]</th>
<td><select name="new_chart_id">[% selectnewaccount %]</select></td>
[% END %]
</fieldset>
<hr size="3" noshade>
+
+[% 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>
+[% END %]