X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/b8b112a39bd601b0bc717646d78de470631da22a..64b49f6c38c2c5763f21df00c7b4580ff70893be:/SL/DB/MetaSetup/PaymentTerm.pm diff --git a/SL/DB/MetaSetup/PaymentTerm.pm b/SL/DB/MetaSetup/PaymentTerm.pm index 3eda536ac..83bd6d289 100644 --- a/SL/DB/MetaSetup/PaymentTerm.pm +++ b/SL/DB/MetaSetup/PaymentTerm.pm @@ -25,38 +25,6 @@ __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); -__PACKAGE__->meta->relationships( - ap => { - class => 'SL::DB::PurchaseInvoice', - column_map => { id => 'payment_id' }, - type => 'one to many', - }, - - ar => { - class => 'SL::DB::Invoice', - column_map => { id => 'payment_id' }, - type => 'one to many', - }, - - customer => { - class => 'SL::DB::Customer', - column_map => { id => 'payment_id' }, - type => 'one to many', - }, - - oe => { - class => 'SL::DB::Order', - column_map => { id => 'payment_id' }, - type => 'one to many', - }, - - parts => { - class => 'SL::DB::Part', - column_map => { id => 'payment_id' }, - type => 'one to many', - }, -); - # __PACKAGE__->meta->initialize; 1;