X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FLocale.pm;h=881d5925e3df2b1db9d0c39d51840b82db2ba8b8;hb=4c19594dc3035082cf79a81b285000f419429624;hp=47268ec641d80acf54c4503828c44fb6acd2d376;hpb=8484285f05cdb419d89c4385d8889117bbd2df62;p=kivitendo-erp.git diff --git a/SL/Locale.pm b/SL/Locale.pm index 47268ec64..881d5925e 100644 --- a/SL/Locale.pm +++ b/SL/Locale.pm @@ -36,6 +36,7 @@ package Locale; +use DateTime; use Encode; use List::Util qw(first); use List::MoreUtils qw(any); @@ -212,7 +213,7 @@ sub text { my $self = shift; my $text = shift; - if (exists $self->{texts}->{$text}) { + if ($self->{texts}->{$text}) { $text = $self->{iconv}->convert($self->{texts}->{$text}); } else { $text = $self->{iconv_english}->convert($text); @@ -239,6 +240,7 @@ sub findsub { $original =~ s/_+/_/g; $translation = lc $translation; + $translation =~ s/\s+/_/g; $self->{texts_reverse}->{$translation} ||= [ ]; push @{ $self->{texts_reverse}->{$translation} }, $original; @@ -373,6 +375,13 @@ sub parse_date { return ($yy, $mm, $dd); } +sub parse_date_to_object { + my $self = shift; + my ($yy, $mm, $dd) = $self->parse_date(@_); + + return $yy && $mm && $dd ? DateTime->new(year => $yy, month => $mm, day => $dd) : undef; +} + sub reformat_date { $main::lxdebug->enter_sub(); @@ -408,6 +417,8 @@ sub format_date { my $dd = shift; my $yy_len = shift || 4; + ($yy, $mm, $dd) = ($yy->year, $yy->month, $yy->day) if ref $yy eq 'DateTime'; + $main::lxdebug->leave_sub() and return "" unless $yy && $mm && $dd; $yy = $yy % 100 if 2 == $yy_len;