X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FInvoice.pm;h=be3466d60854756b25e0d85b51286bb6fce16266;hb=4791db863d4fa954318024ea1d79e62572ae2eb1;hp=3d7e93af9ef690f36b47b80c5ac0fa9435e9d8e9;hpb=82515b2d93dc5632f24d6e0b6f8f05f3fd19fbb0;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Invoice.pm b/SL/DB/MetaSetup/Invoice.pm index 3d7e93af9..be3466d60 100644 --- a/SL/DB/MetaSetup/Invoice.pm +++ b/SL/DB/MetaSetup/Invoice.pm @@ -54,7 +54,6 @@ __PACKAGE__->meta->setup( storno_id => { type => 'integer' }, marge_total => { type => 'numeric', precision => 5, scale => 15 }, marge_percent => { type => 'numeric', precision => 5, scale => 15 }, - notes_bottom => { type => 'text' }, donumber => { type => 'text' }, ], @@ -68,11 +67,21 @@ __PACKAGE__->meta->setup( key_columns => { customer_id => 'id' }, }, + dunning_config => { + class => 'SL::DB::DunningConfig', + key_columns => { dunning_config_id => 'id' }, + }, + globalproject => { class => 'SL::DB::Project', key_columns => { globalproject_id => 'id' }, }, + salesman => { + class => 'SL::DB::Employee', + key_columns => { salesman_id => 'id' }, + }, + storno_obj => { class => 'SL::DB::Invoice', key_columns => { storno_id => 'id' },