X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FLocale.pm;h=881d5925e3df2b1db9d0c39d51840b82db2ba8b8;hb=f97b07787db5cacc0f90338fdb3c1237262917cb;hp=0668081239d86ae123ad5ba0261cdb88525a6a50;hpb=b32553a3c1bf57303b430d0c68e21fdff854999c;p=kivitendo-erp.git diff --git a/SL/Locale.pm b/SL/Locale.pm index 066808123..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(); @@ -401,14 +410,23 @@ sub reformat_date { sub format_date { $main::lxdebug->enter_sub(); - my ($self, $myconfig, $yy, $mm, $dd) = @_; + my $self = shift; + my $myconfig = shift; + my $yy = shift; + my $mm = shift; + 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; - my $format = $myconfig->{dateformat}; + $yy = $yy % 100 if 2 == $yy_len; + + my $format = ref $myconfig eq '' ? "$myconfig" : $myconfig->{dateformat}; $format =~ s{ d+ }{ sprintf("%0" . (length($&)) . "d", $dd) }gex; $format =~ s{ m+ }{ sprintf("%0" . (length($&)) . "d", $mm) }gex; - $format =~ s{ y+ }{ sprintf("%4d", $yy) }gex; + $format =~ s{ y+ }{ sprintf("%0${yy_len}d", $yy) }gex; $main::lxdebug->leave_sub();