X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FAM.pm;h=b7c60033b9c7a8280c238e4757d147e958591371;hb=1b7759ed7c474adef6eb75b6cc04431768fff8c3;hp=6302c24810cd820804b9c49658b4794432b1cec7;hpb=b30eacc6bbc6f76fcd4f1342070d5796fc97b896;p=kivitendo-erp.git diff --git a/SL/AM.pm b/SL/AM.pm index 6302c2481..b7c60033b 100644 --- a/SL/AM.pm +++ b/SL/AM.pm @@ -54,6 +54,7 @@ use SL::DB; use SL::GenericTranslations; use SL::Helper::UserPreferences::PositionsScrollbar; use SL::Helper::UserPreferences::PartPickerSearch; +use SL::Helper::UserPreferences::UpdatePositions; use strict; @@ -105,7 +106,7 @@ sub get_account { # get the taxkeys of the account $form->{ACCOUNT_TAXKEYS} = []; - foreach my $taxkey ( @{ $chart_obj->taxkeys } ) { + foreach my $taxkey ( sort { $b->startdate <=> $a->startdate } @{ $chart_obj->taxkeys } ) { push @{ $form->{ACCOUNT_TAXKEYS} }, { id => $taxkey->id, chart_id => $taxkey->chart_id, tax_id => $taxkey->tax_id, @@ -541,6 +542,10 @@ sub sales_search_customer_partnumber { SL::Helper::UserPreferences::PartPickerSearch->new()->get_sales_search_customer_partnumber(); } +sub positions_show_update_button { + SL::Helper::UserPreferences::UpdatePositions->new()->get_show_update_button(); +} + sub save_preferences { $main::lxdebug->enter_sub(); @@ -575,6 +580,9 @@ sub save_preferences { if (exists $form->{sales_search_customer_partnumber}) { SL::Helper::UserPreferences::PartPickerSearch->new()->store_sales_search_customer_partnumber($form->{sales_search_customer_partnumber}) } + if (exists $form->{positions_show_update_button}) { + SL::Helper::UserPreferences::UpdatePositions->new()->store_show_update_button($form->{positions_show_update_button}) + } $main::lxdebug->leave_sub(); @@ -1199,7 +1207,7 @@ sub _save_tax { chart_categories, id ) - VALUES (?, ?, ?, ?, (SELECT accno FROM chart WHERE id = ?), ?, ?, ?, ?)|; + VALUES (?, ?, ?, ?, ?, ?, ?, ?)|; } push(@values, $form->{id}); do_query($form, $dbh, $query, @values);