X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Foe%2Fedit_periodic_invoices_config.html;h=8ee4952afa232ad045bc74b85cdd24674c2f05e1;hb=d59c544786c8f76756e2ec10dc3b8f803355efdc;hp=2e6b5a406fd4e66f56927c260444692f7219d3ef;hpb=f48af81769e3a7da01d09ff63e61dbd09fe5ad2e;p=kivitendo-erp.git diff --git a/templates/webpages/oe/edit_periodic_invoices_config.html b/templates/webpages/oe/edit_periodic_invoices_config.html index 2e6b5a406..8ee4952af 100644 --- a/templates/webpages/oe/edit_periodic_invoices_config.html +++ b/templates/webpages/oe/edit_periodic_invoices_config.html @@ -1,8 +1,8 @@ [% USE HTML %] [% USE LxERP %] [% USE L %] - -
[% title %]
+[% SET style="width: 400px" %] +

[% title %]

@@ -21,15 +21,19 @@ - [%- LxERP.t8('Periodicity') %] + [%- LxERP.t8('Billing Periodicity') %] - [% L.radio_button_tag("periodicity", value => "m", label => LxERP.t8("monthly"), checked => periodicity == 'm') %] -
- [% L.radio_button_tag("periodicity", value => "q", label => LxERP.t8("every third month"), checked => periodicity == 'q') %] -
- [% L.radio_button_tag("periodicity", value => "b", label => LxERP.t8("semiannually"), checked => periodicity == 'b') %] -
- [% L.radio_button_tag("periodicity", value => "y", label => LxERP.t8("yearly"), checked => periodicity == 'y') %] + [% L.select_tag("periodicity", [ [ "m", LxERP.t8("monthly") ], [ "q", LxERP.t8("every third month") ], [ "b", LxERP.t8("semiannually") ], [ "y", LxERP.t8("yearly") ] ], default=periodicity, style=style) %] + + + + + [%- LxERP.t8('Order value periodicity') %] + + [% L.select_tag("order_value_periodicity", + [ [ "p", LxERP.t8("same as periodicity") ], [ "m", LxERP.t8("monthly") ], [ "q", LxERP.t8("every third month") ], [ "b", LxERP.t8("semiannually") ], [ "y", LxERP.t8("yearly") ], + [ "2", LxERP.t8("2 years") ], [ "3", LxERP.t8("3 years") ], [ "4", LxERP.t8("4 years") ], [ "5", LxERP.t8("5 years") ], ], + default=order_value_periodicity, style=style) %] @@ -64,10 +68,15 @@ [%- LxERP.t8('Record in') %] - [% 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, style=style) %] + + [%- LxERP.t8('direct debit') %] + [% L.checkbox_tag("direct_debit", checked=direct_debit) %] + + [%- LxERP.t8('Print automatically') %] @@ -78,7 +87,7 @@ [%- LxERP.t8('Printer') %] - [% L.select_tag("printer_id", ALL_PRINTERS, title_key = 'printer_description', default = printer_id, disabled = !print) %] + [% L.select_tag("printer_id", ALL_PRINTERS, title_key = 'printer_description', default = printer_id, disabled = !print, style=style) %]