Revision 94f5cb15
Von Bernd Bleßmann vor mehr als 2 Jahren hinzugefügt
bin/mozilla/is.pl | ||
---|---|---|
35 | 35 |
use SL::FU; |
36 | 36 |
use SL::IS; |
37 | 37 |
use SL::OE; |
38 |
use SL::Helper::UserPreferences::DisplayPreferences; |
|
38 | 39 |
use SL::MoreCommon qw(restore_form save_form); |
39 | 40 |
use SL::RecordLinks; |
40 | 41 |
|
... | ... | |
625 | 626 |
$form->{"select$item"} =~ s/option>\Q$form->{$item}\E/option selected>$form->{$item}/; |
626 | 627 |
} |
627 | 628 |
|
628 |
$TMPL_VAR{is_type_normal_invoice} = $form->{type} eq "invoice"; |
|
629 |
$TMPL_VAR{is_type_credit_note} = $form->{type} eq "credit_note"; |
|
630 |
$TMPL_VAR{is_format_html} = $form->{format} eq 'html'; |
|
631 |
$TMPL_VAR{dateformat} = $myconfig{dateformat}; |
|
632 |
$TMPL_VAR{numberformat} = $myconfig{numberformat}; |
|
629 |
$TMPL_VAR{is_type_normal_invoice} = $form->{type} eq "invoice"; |
|
630 |
$TMPL_VAR{is_type_credit_note} = $form->{type} eq "credit_note"; |
|
631 |
$TMPL_VAR{is_format_html} = $form->{format} eq 'html'; |
|
632 |
$TMPL_VAR{dateformat} = $myconfig{dateformat}; |
|
633 |
$TMPL_VAR{numberformat} = $myconfig{numberformat}; |
|
634 |
$TMPL_VAR{longdescription_dialog_size_percentage} = SL::Helper::UserPreferences::DisplayPreferences->new()->get_longdescription_dialog_size_percentage(); |
|
633 | 635 |
|
634 | 636 |
# hiddens |
635 | 637 |
$TMPL_VAR{HIDDENS} = [qw( |
Auch abrufbar als: Unified diff
Langtext-Dialog: Größe prozentual zum Hauptfenster einstellbar pro Benutzer
Ist hier in der Benutzereinstellung ein Wert != 0 gewählt, so wird der Dialog
entsprechend dargestellt. Auch die Größe des Editor-Bereichs wird in diesem
Fall angpepasst.
Ist 0 oder kein Wert gewählt, so ist das Verhalten wie zuvor.