FiBu Schellsuche in Headerzeile
[kivitendo-erp.git] / SL / DB / GLTransaction.pm
1 package SL::DB::GLTransaction;
2
3 use strict;
4
5 use SL::DB::MetaSetup::GLTransaction;
6
7 __PACKAGE__->meta->initialize;
8
9 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
10 __PACKAGE__->meta->make_manager_class;
11
12 sub abbreviation {
13   my $self = shift;
14
15   my $abbreviation = $::locale->text('GL Transaction (abbreviation)');
16   $abbreviation   .= "(" . $::locale->text('Storno (one letter abbreviation)') . ")" if $self->storno;
17   return $abbreviation;
18
19 }
20
21 1;