From: Moritz Bunkus Date: Thu, 13 Jan 2011 09:32:35 +0000 (+0100) Subject: Die Datenbankfelder notes_bottom und project_manager_id gibt es in der offiziellen... X-Git-Tag: release-2.6.2beta2~27 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=2cf0bf46e2d6372ad8402d73e2ab1e7cc59b122e;p=kivitendo-erp.git Die Datenbankfelder notes_bottom und project_manager_id gibt es in der offiziellen Version nicht --- diff --git a/SL/DB/MetaSetup/DeliveryOrder.pm b/SL/DB/MetaSetup/DeliveryOrder.pm index 806c9637a..66596543d 100644 --- a/SL/DB/MetaSetup/DeliveryOrder.pm +++ b/SL/DB/MetaSetup/DeliveryOrder.pm @@ -36,7 +36,6 @@ __PACKAGE__->meta->setup( is_sales => { type => 'boolean' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, - notes_bottom => { type => 'text' }, taxzone_id => { type => 'integer' }, taxincluded => { type => 'boolean' }, terms => { type => 'integer' }, diff --git a/SL/DB/MetaSetup/Invoice.pm b/SL/DB/MetaSetup/Invoice.pm index 6269da90a..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' }, ], diff --git a/SL/DB/MetaSetup/Order.pm b/SL/DB/MetaSetup/Order.pm index 914918dab..e616aa3d0 100644 --- a/SL/DB/MetaSetup/Order.pm +++ b/SL/DB/MetaSetup/Order.pm @@ -46,8 +46,6 @@ __PACKAGE__->meta->setup( transaction_description => { type => 'text' }, marge_total => { type => 'numeric', precision => 5, scale => 15 }, marge_percent => { type => 'numeric', precision => 5, scale => 15 }, - notes_bottom => { type => 'text' }, - project_manager_id => { type => 'integer' }, ], primary_key_columns => [ 'id' ], @@ -65,11 +63,6 @@ __PACKAGE__->meta->setup( key_columns => { globalproject_id => 'id' }, }, - project_manager => { - class => 'SL::DB::Employee', - key_columns => { project_manager_id => 'id' }, - }, - salesman => { class => 'SL::DB::Employee', key_columns => { salesman_id => 'id' }, diff --git a/SL/DB/MetaSetup/PurchaseInvoice.pm b/SL/DB/MetaSetup/PurchaseInvoice.pm index 0ea9d10fa..448b2a6e0 100644 --- a/SL/DB/MetaSetup/PurchaseInvoice.pm +++ b/SL/DB/MetaSetup/PurchaseInvoice.pm @@ -43,7 +43,6 @@ __PACKAGE__->meta->setup( globalproject_id => { type => 'integer' }, transaction_description => { type => 'text' }, storno_id => { type => 'integer' }, - notes_bottom => { type => 'text' }, ], primary_key_columns => [ 'id' ],