6 [% L.hidden_tag("action", "MassInvoiceCreatePrint/dispatch") %]
7 [% L.hidden_tag("printer_id") %]
8 [% L.hidden_tag("bothsided") %]
11 <form method="post" action="ar.pl" id="create_new_form">
12 [% L.hidden_tag("callback", callback) %]
15 [% IF ALL_PRINTERS.size %]
16 <div id="print_options" class="hidden">
18 [% LxERP.t8("Print both sided") %]:
19 [% L.checkbox_tag('', id="print_options_bothsided") %]
22 [% LxERP.t8("Print destination") %]:
23 [% SET printers = [ { description=LxERP.t8("Download PDF, do not print") } ] ;
24 CALL printers.import(ALL_PRINTERS);
25 L.select_tag("", printers, id="print_options_printer_id", title_key="description", default=printer_id) %]
28 <p>[% L.button_tag("kivi.MassInvoiceCreatePrint.massPrint()", LxERP.t8('Print')) %]</p>