Revision c4a38e5b
Von Waldemar Toews vor mehr als 11 Jahren hinzugefügt
bin/mozilla/cp.pl | ||
---|---|---|
|
||
# sometimes it happens that values in customer arrive without the signs '--'
|
||
# but in order to select the right option field we need values with '--'
|
||
if ($form->{vc} eq "customer"){
|
||
if ($form->{vc} eq "customer" && $form->{"all_$form->{vc}"}){
|
||
my ($customername) = split /--/, $form->{ $form->{vc} };
|
||
$form->{ $form->{vc} } = $customername . "--" . $form->{customer_id};
|
||
}
|
Auch abrufbar als: Unified diff
Zahlungseingang: Im Eingabe Feld für Kunden die "--" unterdrücken.