Revision e38f0b87
Von Bernd Bleßmann vor etwa 1 Jahr hinzugefügt
SL/InstanceConfiguration.pm | ||
---|---|---|
62 | 62 |
return join "\n", grep { $_ } ($self->get_address_street1, $self->get_address_street2, $zipcode_city, $self->get_address_country); |
63 | 63 |
} |
64 | 64 |
|
65 |
sub get_layout_style { |
|
66 |
return $_[0]->data->{layout_style} if exists $_[0]->data->{layout_style}; |
|
67 |
return ''; |
|
68 |
} |
|
69 |
|
|
65 | 70 |
sub AUTOLOAD { |
66 | 71 |
our $AUTOLOAD; |
67 | 72 |
|
... | ... | |
121 | 126 |
Returns the default currency or undef if no currency has been |
122 | 127 |
configured. |
123 | 128 |
|
129 |
=item C<get_layout_style> |
|
130 |
|
|
131 |
Returns the forced default layout style or '' if the database column |
|
132 |
does not exist yet. |
|
133 |
|
|
124 | 134 |
=item C<get_accounting_method> |
125 | 135 |
|
126 | 136 |
Returns the default accounting method, accrual or cash |
Auch abrufbar als: Unified diff
Erzwungener Layout-Stil: Abfangen, wenn Spalte in defaults noch nicht vorhanden
Sonst gibt es eine Fehlermeldung bei Einloggen, wenn das DB-Upgrade-Skript
noch nicht durchgelaufen ist.