summaryrefslogtreecommitdiff
path: root/LedgerSMB/Location.pm
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-26 18:00:56 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-04-26 18:00:56 +0000
commit666fd833584fe2e3618a397fe9d9a9bdf4c5b94b (patch)
tree19c4444705fd7f7803e0d7b597659c11d7e85b73 /LedgerSMB/Location.pm
parent2edd2e4de0f08a0a5f23647ea715f279671a0b89 (diff)
Doing a simple Perltidy commit so that I can evaluate differences between the branches and make sure patches are up to date
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1103 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'LedgerSMB/Location.pm')
-rw-r--r--LedgerSMB/Location.pm27
1 files changed, 14 insertions, 13 deletions
diff --git a/LedgerSMB/Location.pm b/LedgerSMB/Location.pm
index dc4b0123..929e1a6c 100644
--- a/LedgerSMB/Location.pm
+++ b/LedgerSMB/Location.pm
@@ -1,3 +1,4 @@
+
=head1 NAME
LedgerSMB::Location - LedgerSMB class for managing Business Locations
@@ -38,29 +39,29 @@ our $VERSION = '1.0.0';
our @ISA = qw(LedgerSMB::DBObject);
sub AUTOLOAD {
- my $self = shift;
- my $AUTOLOAD = $LedgerSMB::Location::AUTOLOAD;
- $AUTOLOAD =~ s/^.*:://;
- my $procname = "location_$AUTOLOAD";
- $self->exec_method(procname => "location_$AUTOLOAD", args => \@_);
+ my $self = shift;
+ my $AUTOLOAD = $LedgerSMB::Location::AUTOLOAD;
+ $AUTOLOAD =~ s/^.*:://;
+ my $procname = "location_$AUTOLOAD";
+ $self->exec_method( procname => "location_$AUTOLOAD", args => \@_ );
}
sub save {
- $ref = shift @{$self->exec_method(procname =>"location_save")};
- $self->merge($ref, 'id');
+ $ref = shift @{ $self->exec_method( procname => "location_save" ) };
+ $self->merge( $ref, 'id' );
}
sub get {
- $ref = shift @{$self->exec_method(procname =>'location_get')};
- $self->merge($ref, keys %{$ref});
+ $ref = shift @{ $self->exec_method( procname => 'location_get' ) };
+ $self->merge( $ref, keys %{$ref} );
}
sub search {
- $self->{search_results} =
- $self->exec_method(procname => 'location_search');
+ $self->{search_results} =
+ $self->exec_method( procname => 'location_search' );
}
sub list_all {
- $self->{search_results} =
- $self->exec_method(procname => 'location_list_all');
+ $self->{search_results} =
+ $self->exec_method( procname => 'location_list_all' );
}