Revision ad20db68
Von Sven Schöling vor 1 Tag hinzugefügt
SL/AM.pm | ||
---|---|---|
57 | 57 |
use SL::Helper::UserPreferences::PartPickerSearch; |
58 | 58 |
use SL::Helper::UserPreferences::TimeRecording; |
59 | 59 |
use SL::Helper::UserPreferences::UpdatePositions; |
60 |
use SL::Helper::UserPreferences::ItemInputPosition; |
|
60 | 61 |
|
61 | 62 |
use strict; |
62 | 63 |
|
... | ... | |
569 | 570 |
SL::Helper::UserPreferences::PartPickerSearch->new()->get_all_as_list_default(); |
570 | 571 |
} |
571 | 572 |
|
573 |
sub order_item_input_position { |
|
574 |
SL::Helper::UserPreferences::ItemInputPosition->new()->get_order_item_input_position(); |
|
575 |
} |
|
576 |
|
|
572 | 577 |
sub save_preferences { |
573 | 578 |
$main::lxdebug->enter_sub(); |
574 | 579 |
|
... | ... | |
618 | 623 |
if (exists $form->{part_picker_search_all_as_list_default}) { |
619 | 624 |
SL::Helper::UserPreferences::PartPickerSearch->new()->store_all_as_list_default($form->{part_picker_search_all_as_list_default}) |
620 | 625 |
} |
626 |
if (exists $form->{order_item_input_position}) { |
|
627 |
SL::Helper::UserPreferences::ItemInputPosition->new()->store_order_item_input_position($form->{order_item_input_position}) |
|
628 |
} |
|
621 | 629 |
|
622 | 630 |
$main::lxdebug->leave_sub(); |
623 | 631 |
|
Auch abrufbar als: Unified diff
Order: Eingabeleiste jetzt auch in UserPrefs konfigurierbar