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 get_layout_style {
+ return $_[0]->data->{layout_style} if exists $_[0]->data->{layout_style};
+ return '';
+}
+
sub AUTOLOAD {
our $AUTOLOAD;
Returns the default currency or undef if no currency has been
configured.
+=item C<get_layout_style>
+
+Returns the forced default layout style or '' if the database column
+does not exist yet.
+
=item C<get_accounting_method>
Returns the default accounting method, accrual or cash
Returns the default profit determination method, balance or income
+=item C<get_balance_startdate_method>
+
+Returns the default method for determining the startdate for the balance
+report.
+
+Valid options:
+closed_to start_of_year all_transactions last_ob_or_all_transactions last_ob_or_start_of_year
=item C<get_is_changeable>
=item C<get_ap_show_mark_as_paid>
-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<get_sales_order_show_delete>
=item C<get_bin_id_ignore_onhand>
-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<get_transfer_default>
=item C<get_transfer_default_use_master_default_bin>
=item C<get_parts_listing_image>
-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