X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=4d0e41b1371de131b473af06510cd92c06663a18;hb=142ea3bff784ba29bd87de5615bb4f2aec8c977f;hp=14f386a7a6251bb0a8636710c93f585202a16f74;hpb=1168e9c997382048dd721eb94a5e021ac9145432;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index 14f386a7a..4d0e41b13 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' }, @@ -22,6 +23,7 @@ __PACKAGE__->meta->columns( reference => { type => 'text' }, storno => { type => 'boolean', default => 'false' }, storno_id => { type => 'integer' }, + tax_point => { type => 'date' }, taxincluded => { type => 'boolean' }, transdate => { type => 'date', default => 'now' }, type => { type => 'text' },