Verknüpfungen zum Preisfaktor-Objekt
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 9 Nov 2010 08:14:02 +0000 (09:14 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 12 Jan 2011 15:15:41 +0000 (16:15 +0100)
SL/DB/InvoiceItem.pm
SL/DB/OrderItem.pm

index d8b3903..04b28a1 100644 (file)
@@ -9,7 +9,12 @@ __PACKAGE__->meta->add_relationship(
     type         => 'one to one',
     class        => 'SL::DB::Part',
     column_map   => { parts_id => 'id' },
-  }
+  },
+  price_factor_obj => {
+    type           => 'one to one',
+    class          => 'SL::DB::PriceFactor',
+    column_map     => { price_factor_id => 'id' },
+  },
 );
 
 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
index 94d2bc8..9ee5743 100644 (file)
@@ -9,7 +9,12 @@ __PACKAGE__->meta->add_relationship(
     type         => 'one to one',
     class        => 'SL::DB::Part',
     column_map   => { parts_id => 'id' },
-  }
+  },
+  price_factor_obj => {
+    type           => 'one to one',
+    class          => 'SL::DB::PriceFactor',
+    column_map     => { price_factor_id => 'id' },
+  },
 );
 
 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.