Verknüpfungen zum Unit-Model
[kivitendo-erp.git] / SL / DB / InvoiceItem.pm
index 04b28a1..1407c33 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.