X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/846a322f70e71c5d0338f13eeea842d0f87c5ae3..72abd969e20421aaa76fa6bd675c261ffcf1863c:/SL/DB/MetaSetup/GLTransaction.pm diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index db03441b6..f59251362 100644 --- a/SL/DB/MetaSetup/GLTransaction.pm +++ b/SL/DB/MetaSetup/GLTransaction.pm @@ -4,12 +4,13 @@ package SL::DB::GLTransaction; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('gl'); __PACKAGE__->meta->columns( cb_transaction => { type => 'boolean' }, + deliverydate => { type => 'date' }, department_id => { type => 'integer' }, description => { type => 'text' }, employee_id => { type => 'integer' }, @@ -42,11 +43,6 @@ __PACKAGE__->meta->foreign_keys( key_columns => { employee_id => 'id' }, }, - employee_obj => { - class => 'SL::DB::Employee', - key_columns => { employee_id => 'id' }, - }, - storno_obj => { class => 'SL::DB::GLTransaction', key_columns => { storno_id => 'id' },