X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FCustomVariable.pm;h=7e6b5008079dff871a9d51ca7ec30e0106284677;hb=fe4751dee76f518853a0546a2b0ef4149c2324c4;hp=d9b154c09b10e59fc854819e8f29d541e37296e4;hpb=a261c69386e610e9653098d1e6ec2c6aa5a4b6db;p=kivitendo-erp.git diff --git a/SL/DB/CustomVariable.pm b/SL/DB/CustomVariable.pm index d9b154c09..7e6b50080 100644 --- a/SL/DB/CustomVariable.pm +++ b/SL/DB/CustomVariable.pm @@ -20,9 +20,11 @@ sub unparsed_value { sub _ensure_config { my ($self) = @_; - return $self->config if $self->config; + return $self->config if defined $self->{config}; return undef if !defined $self->config_id; - $self->config( SL::DB::CustomVariableConfig->new(id => $self->config_id)->load ); + + no warnings 'once'; + return $::request->cache('config_by_id')->{$self->config_id} //= SL::DB::CustomVariableConfig->new(id => $self->config_id)->load; } sub parse_value { @@ -80,7 +82,8 @@ sub value { sub value_as_text { my $self = $_[0]; - my $type = $self->config->type; + my $cfg = $self->_ensure_config; + my $type = $cfg->type; die 'not an accessor' if @_ > 1; @@ -89,7 +92,7 @@ sub value_as_text { } elsif ($type eq 'timestamp') { return $::locale->reformat_date( { dateformat => 'yy-mm-dd' }, $self->timestamp_value->ymd, $::myconfig{dateformat}); } elsif ($type eq 'number') { - return $::form->format_amount(\%::myconfig, $self->number_value, $self->config->processed_options->{PRECISION}); + return $::form->format_amount(\%::myconfig, $self->number_value, $cfg->processed_options->{PRECISION}); } elsif ( $type eq 'customer' ) { require SL::DB::Customer;