Sonst gehen diese in den Belegen nach einem Erneuern verloren.
Zum Nachvollziehen: CVar von Typ Textfeld bei Waren anlegen und
in Belegen editierbar machen. Dann Beleg erstellen, Ware eingeben,
2. Zeile ansehen. Erneuern und nochmals 2. Zeile ansehen. Vor diesem
commit schrumpfte das Textfeld.
} elsif ($config->{type} eq 'number') {
$config->{precision} = $1 if ($config->{options} =~ m/precision=(\d+)/i);
+ } elsif ($config->{type} eq 'textfield') {
+ $config->{width} = 30;
+ $config->{height} = 5;
+ $config->{width} = $1 if ($config->{options} =~ m/width=(\d+)/i);
+ $config->{height} = $1 if ($config->{options} =~ m/height=(\d+)/i);
+
+ } elsif ($config->{type} eq 'text') {
+ $config->{maxlength} = $1 if ($config->{options} =~ m/maxlength=(\d+)/i);
+
}
$self->_unpack_flags($config);