From 19ee23d4cfe51c71d16681e42b28694f2af04e11 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bernd=20Ble=C3=9Fmann?= Date: Mon, 29 Jan 2018 16:17:49 +0100 Subject: [PATCH] Wiederkehrende Rechnungen: Template: eindeutige DOM-Ids MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit printer_id / copies werden so auch in den print_options benannt. Wenn dieses Template als Vorlage für ein Popup-Dialog verwendet wird, kann es sonst zu gleichen DOM-Ids kommen. --- templates/webpages/oe/edit_periodic_invoices_config.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/webpages/oe/edit_periodic_invoices_config.html b/templates/webpages/oe/edit_periodic_invoices_config.html index e563d39e3..3e5b9b6bd 100644 --- a/templates/webpages/oe/edit_periodic_invoices_config.html +++ b/templates/webpages/oe/edit_periodic_invoices_config.html @@ -87,13 +87,13 @@ [%- LxERP.t8('Printer') %] - [% L.select_tag("printer_id", ALL_PRINTERS, title_key = 'printer_description', default = config.printer_id, disabled = !config.print, style=style) %] + [% L.select_tag("printer_id", ALL_PRINTERS, title_key = 'printer_description', default = config.printer_id, disabled = !config.print, id = "pic_printer_id", style=style) %] [%- LxERP.t8('Copies') %] - [% L.input_tag("copies", config.copies, size => 6, disabled => !config.print) %] + [% L.input_tag("copies", config.copies, size => 6, disabled => !config.print, id = "pic_copies") %] @@ -147,8 +147,8 @@