Revision a34c05f3
Von Moritz Bunkus vor fast 10 Jahren hinzugefügt
bin/mozilla/oe.pl | ||
---|---|---|
510 | 510 |
|
511 | 511 |
$form->{invtotal} = $form->{invsubtotal}; |
512 | 512 |
|
513 |
my $rows = max 2, $form->numtextrows($form->{notes}, 25, 8); |
|
514 |
my $introws = max 2, $form->numtextrows($form->{intnotes}, 35, 8); |
|
515 |
$rows = max $rows, $introws; |
|
513 |
my $introws = max 5, $form->numtextrows($form->{intnotes}, 35, 8); |
|
516 | 514 |
|
517 |
$TMPL_VAR{notes} = qq|<textarea name=notes rows="$rows" cols="25">| . H($form->{notes}) . qq|</textarea>|;
|
|
515 |
$TMPL_VAR{notes} = qq|<textarea name="notes" class="texteditor" wrap="soft" style="width: 350px; height: 150px">| . H($form->{notes}) . qq|</textarea>|;
|
|
518 | 516 |
$TMPL_VAR{intnotes} = qq|<textarea name=intnotes rows="$introws" cols="35">| . H($form->{intnotes}) . qq|</textarea>|; |
519 | 517 |
|
520 | 518 |
if( $form->{customer_id} && !$form->{taxincluded_changed_by_user} ) { |
Auch abrufbar als: Unified diff
Einkauf/Verkauf: Bemerkungsfeld mit HTML-Editor ausgestattet