1 [% USE T8 %][% USE HTML %][%- USE LxERP -%][%- USE L -%]
3 [% L.hidden_tag("action", "MassInvoiceCreatePrint/dispatch") %]
4 [% L.hidden_tag("printer_id") %]
5 [% L.hidden_tag("bothsided") %]
8 <form method="post" action="ar.pl" id="create_new_form">
9 [% L.hidden_tag("callback", callback) %]
12 [% IF ALL_PRINTERS.size %]
13 <div id="print_options" class="hidden">
15 [% LxERP.t8("Print both sided") %]:
16 [% L.checkbox_tag('', id="print_options_bothsided") %]
19 [% LxERP.t8("Print destination") %]:
20 [% SET printers = [ { description=LxERP.t8("Download PDF, do not print") } ] ;
21 CALL printers.import(ALL_PRINTERS);
22 L.select_tag("", printers, id="print_options_printer_id", title_key="description", default=printer_id) %]
26 [% L.button_tag("kivi.MassInvoiceCreatePrint.massPrint()", LxERP.t8('Print')) %]