1 package SL::Controller::ClientConfig;
 
   4 use parent qw(SL::Controller::Base);
 
   9 __PACKAGE__->run_before('check_auth');
 
  13   my ($self, %params) = @_;
 
  15   $self->{posting_options} = [ { title => $::locale->text("never"), value => 0 },
 
  16                                { title => $::locale->text("every time"), value => 1 },
 
  17                                { title => $::locale->text("on the same day"), value => 2 }, ];
 
  18   $self->{payment_options} = [ { title => $::locale->text("never"), value => 0 },
 
  19                                { title => $::locale->text("every time"), value => 1 },
 
  20                                { title => $::locale->text("on the same day"), value => 2 }, ];
 
  21   $self->{accounting_options} = [ { title => $::locale->text("accrual"), value => "accrual" },
 
  22                                   { title => $::locale->text("cash"), value => "cash" }, ];
 
  23   $self->{inventory_options} = [ { title => $::locale->text("perpetual"), value => "perpetual" },
 
  24                                  { title => $::locale->text("periodic"), value => "periodic" }, ];
 
  25   $self->{profit_options} = [ { title => $::locale->text("balance"), value => "balance" },
 
  26                               { title => $::locale->text("income"), value => "income" }, ];
 
  28   map { $self->{$_} = SL::DB::Default->get->$_ } qw(is_changeable ir_changeable ar_changeable ap_changeable gl_changeable);
 
  30   $self->{payments_changeable} = SL::DB::Default->get->payments_changeable;
 
  32   map { $self->{$_} = SL::DB::Default->get->$_ } qw(accounting_method inventory_system profit_determination);
 
  34   $self->{show_bestbefore}     = SL::DB::Default->get->show_bestbefore;
 
  36   map { $self->{$_} = SL::DB::Default->get->$_ } qw(datev_check_on_sales_invoice datev_check_on_purchase_invoice datev_check_on_ar_transaction datev_check_on_ap_transaction datev_check_on_gl_transaction);
 
  37   # datev check: not implemented yet:
 
  38   #check_on_cash_and_receipt = 0
 
  40   #check_on_sepa_import = 0
 
  42   $self->render('client_config/form', title => $::locale->text('Client Configuration'));
 
  47   my ($self, %params) = @_;
 
  49   map { SL::DB::Default->get->update_attributes($_ => $::form->{$_}); } qw(is_changeable ir_changeable ar_changeable ap_changeable gl_changeable);
 
  51   SL::DB::Default->get->update_attributes('payments_changeable' => $::form->{payments_changeable});
 
  53   map { SL::DB::Default->get->update_attributes($_ => $::form->{$_}); } qw(accounting_method inventory_system profit_determination);
 
  55   SL::DB::Default->get->update_attributes('show_bestbefore'     => $::form->{show_bestbefore});
 
  57   map { SL::DB::Default->get->update_attributes($_ => $::form->{$_}); } qw(datev_check_on_sales_invoice datev_check_on_purchase_invoice datev_check_on_ar_transaction datev_check_on_ap_transaction datev_check_on_gl_transaction);
 
  59   flash_later('info', $::locale->text('Client Configuration saved!'));
 
  61   $self->redirect_to(action => 'edit');
 
  65 #################### private stuff ##########################
 
  68   $::auth->assert('admin');