X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=a2cda636a6f58dc60533eb35a9369f5121a9a1a2;hb=b293ff8ad52fc76ba0c44783e3982418114d6b08;hp=a7d25f7bf9755fa29b16e851c346bb649f941d82;hpb=f9676efea9ccfa01df2a57dca9c45cc8fde0d09e;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index a7d25f7bf..a2cda636a 100644 --- a/SL/DB/MetaSetup/GLTransaction.pm +++ b/SL/DB/MetaSetup/GLTransaction.pm @@ -4,40 +4,52 @@ package SL::DB::GLTransaction; use strict; -use base qw(SL::DB::Object); - -__PACKAGE__->meta->setup( - table => 'gl', - - columns => [ - id => { type => 'integer', not_null => 1, sequence => 'glid' }, - reference => { type => 'text' }, - description => { type => 'text' }, - transdate => { type => 'date', default => 'now' }, - gldate => { type => 'date', default => 'now' }, - employee_id => { type => 'integer' }, - notes => { type => 'text' }, - department_id => { type => 'integer', default => '0' }, - taxincluded => { type => 'boolean' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - type => { type => 'text' }, - storno => { type => 'boolean', default => 'false' }, - storno_id => { type => 'integer' }, - ob_transaction => { type => 'boolean' }, - cb_transaction => { type => 'boolean' }, - ], - - primary_key_columns => [ 'id' ], - - allow_inline_column_values => 1, - - foreign_keys => [ - storno_obj => { - class => 'SL::DB::GLTransaction', - key_columns => { storno_id => 'id' }, - }, - ], +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' }, + ob_transaction => { type => 'boolean' }, + reference => { type => 'text' }, + storno => { type => 'boolean', default => 'false' }, + storno_id => { type => 'integer' }, + tax_point => { type => 'date' }, + taxincluded => { type => 'boolean' }, + transaction_description => { type => 'text' }, + transdate => { type => 'date', default => 'now' }, + type => { type => 'text' }, +); + +__PACKAGE__->meta->primary_key_columns([ 'id' ]); + +__PACKAGE__->meta->allow_inline_column_values(1); + +__PACKAGE__->meta->foreign_keys( + department => { + class => 'SL::DB::Department', + key_columns => { department_id => 'id' }, + }, + + employee => { + class => 'SL::DB::Employee', + key_columns => { employee_id => 'id' }, + }, + + storno_obj => { + class => 'SL::DB::GLTransaction', + key_columns => { storno_id => 'id' }, + }, ); 1;