X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=f5925136219366ada2fcda75a9568739a0e886e6;hb=f24cf1f5ab8428ced545a382d0f0179ae6f40a81;hp=db03441b62c5ac06c56093d26d7634c811e2b57e;hpb=846a322f70e71c5d0338f13eeea842d0f87c5ae3;p=kivitendo-erp.git 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' },