]> wagnertech.de Git - mfinanz.git/blobdiff - SL/DB/OrderItem.pm
Bug 1597 - Report Lagerbestand wirft Fehler, wenn Artikelnummer ausgeblendet werden...
[mfinanz.git] / SL / DB / OrderItem.pm
index 94d2bc81d265cb8de2570cfe294d4c56af82d4d6..1e17d364c27c1bd1c257c800c8e5725e8478d15a 100644 (file)
@@ -9,7 +9,17 @@ __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' },
+  },
+  unit_obj       => {
+    type         => 'one to one',
+    class        => 'SL::DB::Unit',
+    column_map   => { unit => 'name' },
+  },
 );
 
 # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.