Add methode send_occupied2hotline. Fix pricing rental duration. Adding countries

This commit is contained in:
ragu 2023-06-21 14:59:05 +02:00
parent 7dcf48db2c
commit b53156d502
8 changed files with 374 additions and 58 deletions

View file

@ -497,11 +497,16 @@ Nach Abschluss der Registrierung erhalten Sie sowohl auf die von Ihnen hinterleg
if($key =~ /txt/ && $size eq "select" && $des eq "Land"){
my $country = $lb->country_code();
my $country_all = $lb->country_code_all();
$ctrel->{$key} = "DE" if(!$ctrel->{$key});
my @_valxx;
my @_valxx = ();
foreach (sort { $country->{$a} cmp $country->{$b} } keys (%$country)){
push @_valxx, "$_:$country->{$_}";
}
foreach (sort { $country_all->{$a} cmp $country_all->{$b} } keys (%$country_all)){
push @_valxx, "$_:$country_all->{$_}";
}
print $q->label({-for=>"$key",-style=>'padding-top:15px;'},"$label_des"),"\n";
print $but->selector_class("$key","form-control","","$ctrel->{$key}",@_valxx);