X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=80c7e851a23966402630f4d1bfe9ab4fa2478095;hb=677f0dd53d5f964fb4e69eaf7236ffb6a830568b;hp=14f386a7a6251bb0a8636710c93f585202a16f74;hpb=e42233910a57d39f3ccef150db1212f7ecb7fb30;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index 14f386a7a..80c7e851a 100644 --- a/SL/DB/MetaSetup/GLTransaction.pm +++ b/SL/DB/MetaSetup/GLTransaction.pm @@ -4,17 +4,19 @@ 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' }, gldate => { type => 'date', default => 'now' }, id => { type => 'integer', not_null => 1, sequence => 'glid' }, + imported => { type => 'boolean', default => 'false' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, notes => { type => 'text' }, @@ -22,6 +24,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' },