X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=templates%2Fwebpages%2Foe%2Fedit_periodic_invoices_config.html;h=ebe5985bd7f5e6e324311335cc0b79fa889c1f98;hb=d281eedf12fcb699ebddbaa8395d6f15a06cff1f;hp=c469a02cebdba70e153c347425e9304730564e73;hpb=cf889668782d1ffbb76b9f28e1d36848544fa3b3;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 c469a02ce..ebe5985bd 100644 --- a/templates/webpages/oe/edit_periodic_invoices_config.html +++ b/templates/webpages/oe/edit_periodic_invoices_config.html @@ -1,9 +1,8 @@ [% USE HTML %] [% USE LxERP %] [% USE L %] - - -
[% title %]
+[% SET style="width: 400px" %] +

[% title %]

@@ -22,13 +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("quarterly"), checked => periodicity == 'q') %] -
- [% L.radio_button_tag("periodicity", value => "y", label => LxERP.t8("yearly"), checked => periodicity == 'y') %] + [% L.select_tag("periodicity", [ [ "o", LxERP.t8("one time") ], [ "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) %] @@ -46,6 +51,13 @@ + + [%- LxERP.t8('Create first invoice on') %](2) + + [% L.date_tag("first_billing_date_as_date", first_billing_date_as_date) %] + + + [% LxERP.t8('Extend automatically by n months') %] @@ -56,11 +68,16 @@ [%- LxERP.t8('Record in') %] - [% L.select_tag("ar_chart_id", L.options_for_select(AR, title => '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') %] [% L.checkbox_tag("print", onclick => "toggle_printer_id_ctrl()", checked => print) %] @@ -70,7 +87,7 @@ [%- LxERP.t8('Printer') %] - [% L.select_tag("printer_id", L.options_for_select(ALL_PRINTERS, title => '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) %] @@ -78,12 +95,45 @@ [%- LxERP.t8('Copies') %] [% L.input_tag("copies", copies, size => 6, disabled => !print) %] + + + [%- LxERP.t8("Send invoice via email") %] + [% L.checkbox_tag("send_email", onclick => "toggle_send_email_ctrl()", checked=send_email) %] + + + + [%- LxERP.t8("Contact to send to") %] + [% L.select_tag("email_recipient_contact_id", ALL_CONTACTS, title_key="full_name_dep", value_key="cp_id", default=email_recipient_contact_id, with_empty=1, disabled=!send_email, style=style) %] + + + + [%- LxERP.t8("Other recipients") %]3 + [% L.input_tag("email_recipient_address", email_recipient_address, disabled=!send_email, style=style) %] + + + + [%- LxERP.t8("Sender") %]4 + [% L.input_tag("email_sender", email_sender, disabled=!send_email, style=style) %] + + + + [%- LxERP.t8("Subject") %] + [% L.input_tag("email_subject", email_subject, disabled=!send_email, style=style) %] + + + + [%- LxERP.t8("Message") %] + [% L.textarea_tag("email_body", email_body, disabled=!send_email, rows=8, style=style) %] +


(1): [%- LxERP.t8('The end date is the last day for which invoices will possibly be created.') %]

+

(2): [% LxERP.t8("If missing then the start date will be used.") %]

+

(3): [% LxERP.t8("Multiple addresses can be entered separated by commas.") %]

+

(4): [% LxERP.t8("If left empty the default sender from the kivitendo configuration will be used (key 'email_from' in section 'periodic_invoices'; current value: #1).", HTML.escape(LXCONFIG.periodic_invoices.email_from)) %]

[% L.hidden_tag('action', 'save_periodic_invoices_config') %] @@ -96,12 +146,18 @@ - - -