diff --git a/bin/backend/controls/OutputDialog.js b/bin/backend/controls/OutputDialog.js
index ee162e98631e3002dd9ff241615fec964306c8c2..836f820374ddaf2bda5eec528ae3de3cb61b4a8f 100644
--- a/bin/backend/controls/OutputDialog.js
+++ b/bin/backend/controls/OutputDialog.js
@@ -25,7 +25,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
 ], function (QUI, QUIConfirm, QUISelect, QUISandbox, ERPComments, QUIFormUtils, QUIAjax, QUILocale, Mustache, template) {
     "use strict";
 
-    var lg = 'quiqqer/erp';
+    const lg = 'quiqqer/erp';
 
     return new Class({
 
@@ -70,13 +70,13 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                 }
             });
 
-            this.$Output       = null;
-            this.$Preview      = null;
+            this.$Output = null;
+            this.$Preview = null;
             this.$customerMail = null;
-            this.$Template     = null;
+            this.$Template = null;
 
             this.$CommentsBox = null;
-            this.$Form        = null;
+            this.$Form = null;
             this.$MessagesBox = null;
 
             this.$mailSent = false;
@@ -91,9 +91,9 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                 onOpen     : this.$onOpen,
                 onSubmit   : this.$onSubmit,
                 onOpenBegin: function () {
-                    var winSize = QUI.getWindowSize();
-                    var height  = 800;
-                    var width   = 1400;
+                    const winSize = QUI.getWindowSize();
+                    let height = 800;
+                    let width = 1400;
 
                     if (winSize.y * 0.9 < height) {
                         height = winSize.y * 0.9;
@@ -113,13 +113,13 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * event: on open
          */
         $onOpen: function () {
-            var self    = this,
-                Content = this.getContent();
+            const self    = this,
+                  Content = this.getContent();
 
             this.Loader.show();
             this.getContent().set('html', '');
 
-            var onError = function (error) {
+            const onError = function (error) {
                 self.close().then(function () {
                     self.destroy();
                 });
@@ -211,11 +211,11 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                 this.$getTemplates(),
                 this.$getEntityData()
             ]).then(function (result) {
-                var templates  = result[0];
-                var EntityData = result[1];
+                const templates = result[0];
+                const EntityData = result[1];
 
-                var Form     = Content.getElement('form'),
-                    Selected = false;
+                const Form = Content.getElement('form');
+                let Selected = false;
 
                 if (!templates.length) {
                     new Element('option', {
@@ -225,7 +225,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
 
                     Form.elements.template.disabled = true;
 
-                    var PreviewContent = self.getContent().getElement('.quiqqer-erp-outputDialog-preview');
+                    const PreviewContent = self.getContent().getElement('.quiqqer-erp-outputDialog-preview');
 
                     new Element('div', {
                         'class': 'quiqqer-erp-outputDialog-nopreview',
@@ -239,8 +239,8 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                     return;
                 }
 
-                for (var i = 0, len = templates.length; i < len; i++) {
-                    var Template = templates[i];
+                for (let i = 0, len = templates.length; i < len; i++) {
+                    let Template = templates[i];
 
                     if (Template.isSystemDefault && EntityData.hideSystemDefaultTemplate) {
                         continue;
@@ -261,7 +261,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                     self.$Template = {
                         id      : event.target.value,
                         provider: event.target.getElement('option[value="' + event.target.value + '"]')
-                            .get('data-provider')
+                                       .get('data-provider')
                     };
 
                     self.$renderPreview();
@@ -269,7 +269,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
 
                 // Set initial template and render preview
                 Form.elements.template.value = Selected.id;
-                self.$Template               = {
+                self.$Template = {
                     id      : Selected.id,
                     provider: Selected.provider
                 };
@@ -284,12 +284,14 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
 
                 // Load comments
                 self.$CommentsBox = Content.getElement('.quiqqer-erp-outputDialog-comments');
-                self.$Form        = Form;
+                self.$Form = Form;
 
                 if (!self.getAttribute('comments') || !self.getAttribute('comments').length) {
-                    self.$CommentsBox.destroy();
-                    self.$CommentsBox = null;
+                    if (self.$CommentsBox) {
+                        self.$CommentsBox.destroy();
+                    }
 
+                    self.$CommentsBox = null;
                     return;
                 }
 
@@ -307,12 +309,12 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * Render preview with selected template
          */
         $renderPreview: function () {
-            var self           = this;
-            var PreviewContent = this.getContent().getElement('.quiqqer-erp-outputDialog-preview');
+            const self = this;
+            const PreviewContent = this.getContent().getElement('.quiqqer-erp-outputDialog-preview');
 
             this.Loader.show();
 
-            var showPreviewError = function () {
+            const showPreviewError = function () {
                 PreviewContent.set('html', '');
 
                 new Element('div', {
@@ -357,12 +359,12 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * event: on submit
          */
         $onSubmit: function () {
-            var self = this,
-                Run  = Promise.resolve();
+            const self = this;
+            let Run = Promise.resolve();
 
             this.Loader.show();
 
-            var action = this.$Output.getValue();
+            const action = this.$Output.getValue();
 
             switch (action) {
                 case 'print':
@@ -379,14 +381,14 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
             }
 
             Run.then(function () {
-                var Form = self.getContent().getElement('form');
+                const Form = self.getContent().getElement('form');
 
                 self.fireEvent('output', [
                     QUIFormUtils.getFormData(Form),
                     self
                 ]);
 
-                var Submit = self.getButton('submit');
+                const Submit = self.getButton('submit');
 
                 switch (action) {
                     case 'print':
@@ -434,13 +436,13 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         print: function () {
-            var self     = this,
-                entityId = this.getAttribute('entityId');
+            const self     = this,
+                  entityId = this.getAttribute('entityId');
 
             return new Promise(function (resolve) {
-                var id      = 'print-document-' + entityId,
-                    Content = self.getContent(),
-                    Form    = Content.getElement('form');
+                const id      = 'print-document-' + entityId,
+                      Content = self.getContent(),
+                      Form    = Content.getElement('form');
 
                 self.Loader.show();
 
@@ -476,7 +478,10 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @param {String|Number} id
          */
         $onPrintFinish: function (id) {
-            this.fireEvent('printFinish', [this, id]);
+            this.fireEvent('printFinish', [
+                this,
+                id
+            ]);
 
             (function () {
                 document.getElements('#print-document-' + id).destroy();
@@ -490,13 +495,13 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         saveAsPdf: function () {
-            var self     = this,
-                entityId = this.getAttribute('entityId');
+            const self     = this,
+                  entityId = this.getAttribute('entityId');
 
             return new Promise(function (resolve) {
-                var id      = 'download-document-' + entityId,
-                    Content = self.getContent(),
-                    Form    = Content.getElement('form');
+                const id      = 'download-document-' + entityId,
+                      Content = self.getContent(),
+                      Form    = Content.getElement('form');
 
                 new Element('iframe', {
                     src   : URL_OPT_DIR + 'quiqqer/erp/bin/output/backend/download.php?' + Object.toQueryString({
@@ -532,7 +537,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         $onOutputChange: function () {
-            var Recipient = this.getElm().getElement('[name="recipient"]');
+            const Recipient = this.getElm().getElement('[name="recipient"]');
 
             Recipient.getParent('tr').setStyle('display', 'none');
 
@@ -551,14 +556,14 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
             }
 
             this.$resizeCommentsBox();
-            this.getButton('submit').enable()
+            this.getButton('submit').enable();
         },
 
         /**
          * event: on output change -> to print
          */
         $onChangeToPrint: function () {
-            var Submit = this.getButton('submit');
+            const Submit = this.getButton('submit');
 
             Submit.setAttribute('text', QUILocale.get(lg, 'controls.OutputDialog.data.output.print.btn'));
             Submit.setAttribute('textimage', 'fa fa-print');
@@ -568,7 +573,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * event: on output change -> to pdf
          */
         $onChangeToPDF: function () {
-            var Submit = this.getButton('submit');
+            const Submit = this.getButton('submit');
 
             Submit.setAttribute('text', QUILocale.get(lg, 'controls.OutputDialog.data.output.pdf.btn'));
             Submit.setAttribute('textimage', 'fa fa-file-pdf-o');
@@ -578,8 +583,8 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * event: on output change -> to Email
          */
         $onChangeToEmail: function () {
-            var Submit    = this.getButton('submit');
-            var Recipient = this.getElm().getElement('[name="recipient"]');
+            const Submit = this.getButton('submit');
+            const Recipient = this.getElm().getElement('[name="recipient"]');
 
             Recipient.getParent('tr').setStyle('display', null);
 
@@ -602,13 +607,9 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
 
         /**
          * If e-mail recipient changes
-         *
-         * @param {DocumentEvent} event
          */
-        $onChangeMailRecipient: function (event) {
-            var Submit = this.getButton('submit');
-
-            Submit.enable();
+        $onChangeMailRecipient: function () {
+            this.getButton('submit').enable();
             this.$mailSent = false;
         },
 
@@ -618,7 +619,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         $getEntityData: function () {
-            var self = this;
+            const self = this;
 
             return new Promise(function (resolve, reject) {
                 QUIAjax.get('package_quiqqer_erp_ajax_output_getEntityData', resolve, {
@@ -636,7 +637,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         $getTemplates: function () {
-            var self = this;
+            const self = this;
 
             return new Promise(function (resolve, reject) {
                 QUIAjax.get('package_quiqqer_erp_ajax_output_getTemplates', resolve, {
@@ -653,7 +654,7 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         $getPreview: function () {
-            var self = this;
+            const self = this;
 
             return new Promise(function (resolve, reject) {
                 QUIAjax.get('package_quiqqer_erp_ajax_output_getPreview', resolve, {
@@ -674,8 +675,8 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
          * @return {Promise}
          */
         $sendMail: function () {
-            var self = this,
-                Form = this.getContent().getElement('form');
+            const self = this,
+                  Form = this.getContent().getElement('form');
 
             return new Promise(function (resolve, reject) {
                 QUIAjax.post('package_quiqqer_erp_ajax_output_sendMail', resolve, {
@@ -701,9 +702,9 @@ define('package/quiqqer/erp/bin/backend/controls/OutputDialog', [
                 return;
             }
 
-            var maxHeight = 685 - (710 - this.getContent().getSize().y);
+            const maxHeight = 685 - (710 - this.getContent().getSize().y);
+            const height = this.$Form.getSize().y + this.$MessagesBox.getSize().y;
 
-            var height = this.$Form.getSize().y + this.$MessagesBox.getSize().y;
             this.$CommentsBox.setStyle('height', (maxHeight - height));
         }
     });