Pflichtenheftabschätzung: Bei RETURN per AJAX speichern; "Speichern"-Button anzeigen
[kivitendo-erp.git] / templates / webpages / oe / edit_periodic_invoices_config.html
index 2df969e..74fb123 100644 (file)
@@ -1,7 +1,6 @@
 [% USE HTML %]
 [% USE LxERP %]
 [% USE L %]
-<body>
 
  <div class="listtop">[% title %]</div>
 
@@ -26,7 +25,7 @@
      <td valign="top">
       [% L.radio_button_tag("periodicity", value => "m", label => LxERP.t8("monthly"),   checked => periodicity == 'm') %]
       <br>
-      [% L.radio_button_tag("periodicity", value => "q", label => LxERP.t8("quarterly"), checked => periodicity == 'q') %]
+      [% L.radio_button_tag("periodicity", value => "q", label => LxERP.t8("every third month"), checked => periodicity == 'q') %]
       <br>
       [% L.radio_button_tag("periodicity", value => "y", label => LxERP.t8("yearly"),    checked => periodicity == 'y') %]
      </td>
@@ -56,7 +55,7 @@
     <tr>
      <th align="right">[%- LxERP.t8('Record in') %]</th>
      <td valign="top">
-      [% L.select_tag("ar_chart_id", AR, title_key => 'description', default => ar_chart_id)) %]
+      [% L.select_tag("ar_chart_id", AR, title_key => 'description', default => ar_chart_id) %]
      </td>
     </tr>
 
  <script type="text/javascript">
   <!--
     function toggle_printer_id_ctrl() {
-      var disabled = !$('#print').attr('checked');
-      $('#printer_id').attr('disabled', disabled);
-      $('#copies').attr('disabled', disabled);
+      var disabled = !$('#print').prop('checked');
+      $('#printer_id').prop('disabled', disabled);
+      $('#copies').prop('disabled', disabled);
     }
     -->
  </script>
-
-</body>
-</html>