]> wagnertech.de Git - kivitendo-erp.git/commitdiff
Verknüpfungen zum Unit-Model
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 9 Nov 2010 15:28:29 +0000 (16:28 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 12 Jan 2011 15:17:18 +0000 (16:17 +0100)
SL/DB/InvoiceItem.pm
SL/DB/OrderItem.pm

index 04b28a1952fe7eca064aa904f103a46d5478916c..1407c33343ba6726c5fe5f689c4f91f9b443a3c8 100644 (file)
@@ -15,6 +15,11 @@ __PACKAGE__->meta->add_relationship(
     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.
index 9ee5743efccbf2284089c3d8616dd8d51b81afd4..1e17d364c27c1bd1c257c800c8e5725e8478d15a 100644 (file)
@@ -15,6 +15,11 @@ __PACKAGE__->meta->add_relationship(
     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.