X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fkivi.SalesPurchase.js;h=a350e1963d06f3f777bb0cb238e0de74b5812046;hb=43816cb7289ee9225c3bb229d077bd87a75562cc;hp=2b13dd8669d6366c4333fa2e20035964d65c376d;hpb=5a07eafc9d215ad427e1d0e1f1682294703f45ce;p=kivitendo-erp.git diff --git a/js/kivi.SalesPurchase.js b/js/kivi.SalesPurchase.js index 2b13dd866..a350e1963 100644 --- a/js/kivi.SalesPurchase.js +++ b/js/kivi.SalesPurchase.js @@ -274,10 +274,13 @@ namespace('kivi.SalesPurchase', function(ns) { return true; }; - this.show_email_dialog = function(send_action) { + this.show_email_dialog = function(send_action, vc, vc_id_selector) { $('#form').data('send-email-action', send_action || 'send_sales_purchase_email'); - var vc = $('#vc').val(); + vc = vc || $('#vc').val(); + vc_id_selector = vc_id_selector || '#' + vc + '_id'; + var vc_id = $(vc_id_selector).val(); + var data = { action: 'show_sales_purchase_email_dialog', cp_id: $('#cp_id').val(), @@ -295,7 +298,7 @@ namespace('kivi.SalesPurchase', function(ns) { quonumber: $('#quonumber').val(), type: $('#type').val(), vc: vc, - vc_id: $('#' + vc + '_id').val(), + vc_id: vc_id, project_id: $('#globalproject_id').val(), };