Revision a40c356e
Von Bernd Bleßmann vor fast 3 Jahren hinzugefügt
js/kivi.SalesPurchase.js | ||
---|---|---|
313 | 313 |
this.activate_send_email_actions_regarding_printout = function() { |
314 | 314 |
var selected = $('#email_form_attachment_policy').val(); |
315 | 315 |
$('#email_form_attachment_filename').parents('tr')[selected !== 'no_file' ? 'show' : 'hide'](); |
316 |
$('#email_form_print_options')[selected === 'normal' ? 'show' : 'hide']();
|
|
316 |
$('#email_form_print_options')[selected !== 'no_file' ? 'show' : 'hide']();
|
|
317 | 317 |
}; |
318 | 318 |
|
319 | 319 |
// Printing records. |
Auch abrufbar als: Unified diff
E-Mail-Dialog: Druck-Optionen auch für Policy "letzten Ausdruck mitschicken", …
… da diese Option nun auch den ersten Ausdruck erzeugen kann, falls noch keiner
vorhanden ist.