X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c1ef3affe17e3c7d044ae3e6f70b802817de8ede..01f650056:/templates/webpages/common/_send_email_dialog.html
diff --git a/templates/webpages/common/_send_email_dialog.html b/templates/webpages/common/_send_email_dialog.html
index 3b00f1a28..79b984c81 100644
--- a/templates/webpages/common/_send_email_dialog.html
+++ b/templates/webpages/common/_send_email_dialog.html
@@ -3,7 +3,7 @@
[% BLOCK attach_file_list %]
[% IF files.as_list.size %]
- [% SET have_files = 1 ;
+ [% SET have_files = 1;
FOREACH file = files.as_list %]
|
@@ -12,7 +12,11 @@
[% END %]
|
- [% P.checkbox_tag("email_form.attach_file_ids[]", label=file.db_file.file_name, value=file.db_file.id, checked="1") %]
+ [% IF checked %]
+ [% P.checkbox_tag("email_form.attach_file_ids[]", label=file.db_file.file_name, value=file.db_file.id, checked="1") %]
+ [% ELSE %]
+ [% P.checkbox_tag("email_form.attach_file_ids[]", label=file.db_file.file_name, value=file.db_file.id, checked="0") %]
+ [% END %]
|
[% END %]
@@ -36,6 +40,13 @@
+ [%- IF ALL_EMPLOYEES.size %]
+
+ | [% LxERP.t8("CC to Employee") %] |
+ [% L.select_tag('email_form.cc_employee', ALL_EMPLOYEES, value_key='login' title_key='safe_name', with_empty=1, style=style) %] |
+
+ [%- END %]
+
| [% LxERP.t8("Cc") %] |
[% L.input_tag("email_form.cc", email_form.cc, size="80") %] |
@@ -87,15 +98,22 @@
[% IF INSTANCE_CONF.get_doc_storage %]
[% PROCESS attach_file_list
files = FILES.files
+ checked = INSTANCE_CONF.get_email_attachment_record_files_checked
label = LxERP.t8("Record's files") %]
[% PROCESS attach_file_list
files = FILES.vc_files
+ checked = INSTANCE_CONF.get_email_attachment_vc_files_checked
label = is_customer ? LxERP.t8("Files from customer") : LxERP.t8("Files from vendor") %]
[% PROCESS attach_file_list
files = FILES.part_files
+ checked = INSTANCE_CONF.get_email_attachment_part_files_checked
label = LxERP.t8("Files from parts") %]
+
+ [% PROCESS attach_file_list
+ files = FILES.project_files
+ label = LxERP.t8("Files from projects") %]
[% END %]
@@ -103,6 +121,6 @@
- [% L.button_tag(email_form.js_send_function, LxERP.t8("Send email")) %]
+ [% L.button_tag(email_form.js_send_function, LxERP.t8("Send email"), id='send_email') %]
[% L.button_tag("\$('#send_email_dialog').dialog('close');", LxERP.t8("Abort")) %]