+
Empfänger
Die Aussendung wird an die Kontaktemailadresse aller Bestellungen versendet. Wählen Sie folgende Konditionen aus, um die Empfänger zu beschränken:
@@ -44,11 +45,11 @@
@@ -56,12 +57,12 @@
@@ -82,19 +83,89 @@
-
Emailinhalt
-
Im folgenden Editor können Sie ein HTML-Email verfassen. Verwenden Sie as Menü und die Werkzeugleiste um den Text zu formatieren:
-
+
Email
+
+
Im folgenden Editor können Sie ein HTML-Email verfassen. Verwenden Sie das Menü und die Werkzeugleiste um den Text zu formatieren.
+
+
+
+
+
Dateianhänge
-
+
+
@@ -136,12 +207,12 @@
selector: '#body_html',
language: 'de',
skin: "tinymce-5",
- plugins: 'link autolink lists table',
+ plugins: ' code link autolink lists table',
paste_block_drop: true,
paste_as_text: true,
paste_data_images: false,
promotion: false,
- toolbar: 'undo redo | styles | bold italic underline strikethrough | fontfamily fontsize fontcolor | alignleft aligncenter alignright alignjustify | bullist numlist | outdent indent | table | link unlink',
+ toolbar: 'undo redo | styles | bold italic underline strikethrough | fontfamily fontsize fontcolor | alignleft aligncenter alignright alignjustify | bullist numlist | outdent indent | table | link unlink | code',
content_css: "=self::getResourcePath()?>/assets/css/tinymce.css",
font_family_formats: "Arial=arial,sans-serif; Courier New=courier new,courier,monospace; Georgia=georgia,palatino,serif; Helvetica=helvetica,sans-serif; Lucida Sans=lucida sans unicode,sans-serif; Tahoma=tahoma,arial,helvetica,sans-serif; Times New Roman=times new roman,times,serif"
@@ -170,12 +241,33 @@
});
//$('#body_html').summernote('fontSizeUnit', "pt");
//$('#body_html').summernote("fontSize", 12);*/
+
+ $('#tosend_date').datepicker({
+ language: 'de',
+ format: "dd.mm.yyyy",
+ showWeekDays: true,
+ todayBtn: 'linked',
+ autoclose: true
+ });
+
+ $(".select2").select2({
+ allowClear: true,
+ placeholder: ""
+ });
});
- $(".select2").select2({
- allowClear: true,
- placeholder: ""
- });
+ function deleteFile(id) {
+ event.preventDefault();
+ console.log($("#deletefile-" + id).val());
+ if(!$("#deletefile-" + id).val()) {
+ $('#file-' + id + " .filename").css("text-decoration", "line-through");
+ $('#file-' + id + " .filename").css("color", "red");
+ $("#deletefile-" + id).val("1");
+ } else {
+ $('#file-' + id + " .filename").removeAttr("style");
+ $("#deletefile-" + id).val("");
+ }
+ }
\ No newline at end of file
diff --git a/Layout/default/Preordernotification/Index.php b/Layout/default/Preordernotification/Index.php
index 964bbf5bf..1851e789d 100644
--- a/Layout/default/Preordernotification/Index.php
+++ b/Layout/default/Preordernotification/Index.php
@@ -24,7 +24,7 @@