Revision 2193f03f
Von Bernd Blessmann vor fast 13 Jahren hinzugefügt
SL/CVar.pm | ||
---|---|---|
721 | 721 |
# stupid template expects everything formated. except objects |
722 | 722 |
# do not use outside of print routines for legacy templates |
723 | 723 |
|
724 |
return $::form->parse_amount(\%::myconfig, $value) if $config->{type} eq 'number';
|
|
724 |
return $::form->format_amount(\%::myconfig, $value) if $config->{type} eq 'number';
|
|
725 | 725 |
return $value->to_lxoffice if $config->{type} eq 'date' && blessed $value && $value->can('to_lxoffice'); |
726 | 726 |
return $value; |
727 | 727 |
} |
Auch abrufbar als: Unified diff
format_amount zum Formatieren verwenden, satt parse_amount.
Sonst sind die numerischen CVars beim Drucken nicht richtig formatiert.