mirror of
https://gitlab.com/t6353/sharee.bike.git
synced 2025-05-10 14:06:26 +02:00
Add methode send_occupied2hotline. Fix pricing rental duration. Adding countries
This commit is contained in:
parent
7dcf48db2c
commit
b53156d502
8 changed files with 374 additions and 58 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue