X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FInstanceConfiguration.pm;h=4c767961da3d3fe31bb3724ce017de86a4953ebc;hb=d58b1a04c2facd0a4484cf2b801b27b9741cce26;hp=934cd77163ec979fb597abcf2e7e8a9532fc6446;hpb=64ee8a7b210195c65c4c9c46f320f50ceaac0c1a;p=kivitendo-erp.git diff --git a/SL/InstanceConfiguration.pm b/SL/InstanceConfiguration.pm index 934cd7716..4c767961d 100644 --- a/SL/InstanceConfiguration.pm +++ b/SL/InstanceConfiguration.pm @@ -52,6 +52,16 @@ sub get_currencies { return @{ $self->currencies }; } +sub get_address { + # Compatibility function: back in the day there was only a single + # address field. + my ($self) = @_; + + my $zipcode_city = join ' ', grep { $_ } ($self->get_address_zipcode, $self->get_address_city); + + return join "\n", grep { $_ } ($self->get_address_street1, $self->get_address_street2, $zipcode_city, $self->get_address_country); +} + sub AUTOLOAD { our $AUTOLOAD; @@ -176,7 +186,7 @@ Returns the default behavior for showing best before date, true or false =item C -Returns the default behavior for showing the mark as paid button for the +Returns the default behavior for showing the "mark as paid" button for the corresponding record type (true or false). =item C @@ -205,11 +215,9 @@ current stock quantity =item C -Returns the default bin_id for transfers without checking the. +Returns the default bin_id for transfers without checking the current stock quantity - - =item C =item C @@ -234,9 +242,13 @@ Returns the configuration for storing documents in the corresponding WebDAV fold Returns the configuration for "vertreter" -=item C +=item C + +Returns the configuration for experimental feature "assortment" + +=item C -Returns the configuration for experimental features +Returns the configuration for the experimental feature "order" =item C @@ -248,7 +260,7 @@ Returns the css format string for images shown in parts =item C -Returns the configuartion for showing the picture in the results when you search for parts +Returns the configuration for showing the picture in the results when you search for parts =back