Projekt

Allgemein

Profil

Herunterladen (480 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
82515b2d Sven Schöling
package SL::DB::GLTransaction;

use strict;

use SL::DB::MetaSetup::GLTransaction;

2d7e4203 Sven Schöling
__PACKAGE__->meta->initialize;

82515b2d Sven Schöling
# Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
__PACKAGE__->meta->make_manager_class;

f6ed86ef Geoffrey Richardson
sub abbreviation {
my $self = shift;

my $abbreviation = $::locale->text('GL Transaction (abbreviation)');
$abbreviation .= "(" . $::locale->text('Storno (one letter abbreviation)') . ")" if $self->storno;
return $abbreviation;

}

82515b2d Sven Schöling
1;