X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fkivi.SalesPurchase.js;h=e8a1ba241cb3970764d50a558ba755c205bd2239;hb=13dbb277256839ba56baa4f6abe1c6126f3f46ee;hp=86704f24655710f2af630a0f445ba9fdeec50c21;hpb=008630aeb24f1350a4e5febd06006086053837c4;p=kivitendo-erp.git diff --git a/js/kivi.SalesPurchase.js b/js/kivi.SalesPurchase.js index 86704f246..e8a1ba241 100644 --- a/js/kivi.SalesPurchase.js +++ b/js/kivi.SalesPurchase.js @@ -170,8 +170,9 @@ namespace('kivi.SalesPurchase', function(ns) { $('#shiptoname').focus(); }; - this.submit_custom_shipto = function() { - $('#shipto_id').val(''); + this.submit_custom_shipto = function(id_selector) { + id_selector = id_selector || '#shipto_id'; + $(id_selector).val(''); $('#shipto_dialog').data('confirmed', true); $('#shipto_dialog').dialog('close'); }; @@ -268,21 +269,24 @@ namespace('kivi.SalesPurchase', function(ns) { var vc = $('#vc').val(); var data = { - action: 'show_sales_purchase_email_dialog', - cp_id: $('#cp_id').val(), - donumber: $('#donumber').val(), - format: $('#format').val(), - formname: $('#formname').val(), - id: $('#id').val(), - invnumber: $('#invnumber').val(), - language_id: $('#language_id').val(), - media: 'email', - ordnumber: $('#ordnumber').val(), - rowcount: $('#rowcount').val(), - quonumber: $('#quonumber').val(), - type: $('#type').val(), - vc: vc, - vc_id: $('#' + vc + '_id').val(), + action: 'show_sales_purchase_email_dialog', + cp_id: $('#cp_id').val(), + direct_debit: $('#direct_debit').prop('checked') ? 1 : 0, + donumber: $('#donumber').val(), + format: $('#format').val(), + formname: $('#formname').val(), + id: $('#id').val(), + invnumber: $('#invnumber').val(), + language_id: $('#language_id').val(), + media: 'email', + ordnumber: $('#ordnumber').val(), + cusordnumber: $('#cusordnumber').val(), + rowcount: $('#rowcount').val(), + quonumber: $('#quonumber').val(), + type: $('#type').val(), + vc: vc, + vc_id: $('#' + vc + '_id').val(), + project_id: $('#globalproject_id').val(), }; $('[name^=id_],[name^=partnumber_]').each(function(idx, elt) { @@ -309,7 +313,7 @@ namespace('kivi.SalesPurchase', function(ns) { this.activate_send_email_actions_regarding_printout = function() { var selected = $('#email_form_attachment_policy').val(); $('#email_form_attachment_filename').parents('tr')[selected !== 'no_file' ? 'show' : 'hide'](); - $('#email_form_print_options')[selected === 'normal' ? 'show' : 'hide'](); + $('#email_form_print_options')[selected !== 'no_file' ? 'show' : 'hide'](); }; // Printing records.